stoa-mcp 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +5 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -618,7 +618,11 @@ program
|
|
|
618
618
|
writeln(chalk.green(" context.md — brand voice, dependencies, conventions"));
|
|
619
619
|
writeln(chalk.green(" lessons.md — project memory (grows automatically)"));
|
|
620
620
|
writeln();
|
|
621
|
-
writeln(
|
|
621
|
+
writeln(`Run ${chalk.cyan('stoa refine "your idea"')} to get started`);
|
|
622
|
+
writeln();
|
|
623
|
+
writeln(chalk.dim("To customize first:"));
|
|
624
|
+
writeln(chalk.dim(` stoa moodboard edit — design system`));
|
|
625
|
+
writeln(chalk.dim(` stoa edit context — dependencies & conventions`));
|
|
622
626
|
});
|
|
623
627
|
// ── stoa guardrails ──────────────────────────────────────────────────
|
|
624
628
|
const guardrailsCmd = program
|
package/package.json
CHANGED