fix(cli): use "with" instead of "in" for agent references

This commit is contained in:
James
2026-03-27 22:45:45 +00:00
parent f96d357c9a
commit cb74ba7e71
2 changed files with 3 additions and 5 deletions
+1 -3
View File
@@ -306,9 +306,7 @@ async function runEmbeddedMode(dir: string, startPort: number): Promise<void> {
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")}`);
+2 -2
View File
@@ -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.")}`,
);