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
+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.")}`,
);