Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/sdk/echo-start/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "echo-start",
"version": "0.1.8",
"version": "0.1.9",
"description": "Create Echo applications from templates",
"type": "module",
"main": "dist/index.js",
Expand Down
14 changes: 9 additions & 5 deletions packages/sdk/echo-start/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
#!/usr/bin/env node

import {
cancel,
intro,
isCancel,
log,
outro,
select,
text,
spinner,
log,
isCancel,
cancel,
text,
} from '@clack/prompts';
import chalk from 'chalk';
import { spawn } from 'child_process';
import { Command } from 'commander';
import degit from 'degit';
import { existsSync, readdirSync, readFileSync, writeFileSync } from 'fs';
import path from 'path';
import { spawn } from 'child_process';

const program = new Command();

Expand Down Expand Up @@ -68,6 +68,10 @@ const DEFAULT_TEMPLATES = {
description:
'Vite React application with Echo and the Vercel AI SDK for image generation',
},
'echo-cli': {
title: 'Echo CLI',
description: 'Command-line tool for AI chat powered by Echo',
},
authjs: {
title: 'Auth.js (NextAuth)',
description:
Expand Down