diff --git a/packages/cli/src/commands/dev.ts b/packages/cli/src/commands/dev.ts index 1982b2acf..02c95f117 100644 --- a/packages/cli/src/commands/dev.ts +++ b/packages/cli/src/commands/dev.ts @@ -306,9 +306,7 @@ async function runEmbeddedMode(dir: string, startPort: number): Promise { console.log(` ${c.dim("Project")} ${c.accent(projectName)}`); console.log(` ${c.dim("Studio")} ${c.accent(url)}`); console.log(); - console.log( - ` ${c.dim("Edit compositions with your AI agent — it has HyperFrames skills installed.")}`, - ); + console.log(` ${c.dim("Edit with your AI agent — it has HyperFrames skills installed.")}`); console.log(` ${c.dim("Changes reload automatically in the studio.")}`); console.log(); console.log(` ${c.dim("Press Ctrl+C to stop")}`); diff --git a/packages/cli/src/commands/init.ts b/packages/cli/src/commands/init.ts index 41c11000d..c34e1a392 100644 --- a/packages/cli/src/commands/init.ts +++ b/packages/cli/src/commands/init.ts @@ -648,7 +648,7 @@ Examples: console.log(); console.log("Get started:"); console.log(); - console.log(` ${c.accent("1.")} Open this project in your AI coding agent:`); + console.log(` ${c.accent("1.")} Open this project with your AI coding agent:`); console.log( ` ${c.accent(`cd ${name}`)} then start ${c.accent("Claude Code")}, ${c.accent("Cursor")}, or your preferred agent`, ); @@ -860,7 +860,7 @@ Examples: clack.note(files.map((f) => c.accent(f)).join("\n"), c.success(`Created ${name}/`)); clack.log.message( - `${c.dim("Tip:")} Open this project in ${c.accent("Claude Code")}, ${c.accent("Cursor")}, or your preferred AI agent.\n` + + `${c.dim("Tip:")} Open this project with ${c.accent("Claude Code")}, ${c.accent("Cursor")}, or your preferred AI agent.\n` + `${c.dim(" AI skills are installed — your agent knows how to create and edit compositions.")}`, );