stoa-mcp 0.1.3 → 0.1.5

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 CHANGED
@@ -618,7 +618,8 @@ 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("Edit moodboard/notes.md and context.md, then run 'stoa refine \"your idea\"'");
621
+ writeln(`Run ${chalk.cyan("stoa refine \"your idea\"")} to get started`);
622
+ writeln(chalk.dim("Optional: edit moodboard/notes.md and context.md to customize your design system"));
622
623
  });
623
624
  // ── stoa guardrails ──────────────────────────────────────────────────
624
625
  const guardrailsCmd = program
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  /**
2
3
  * Stoa MCP Server entry point.
3
4
  * Registers refine_task, score_spec tools, guardrails resource, and refine prompt.
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  /**
2
3
  * Stoa MCP Server entry point.
3
4
  * Registers refine_task, score_spec tools, guardrails resource, and refine prompt.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stoa-mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "The Specification Compiler for AI Agents. Transform vague tasks into executable specs with blind test scenarios.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",