@axiomatic-labs/cli 1.0.6 → 1.0.8

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.
Files changed (2) hide show
  1. package/lib/init.js +6 -6
  2. package/package.json +1 -1
package/lib/init.js CHANGED
@@ -104,7 +104,7 @@ async function run() {
104
104
  console.log(` ${ui.DIM}Axiomatic will scaffold your stack, generate project-specific${ui.RESET}`);
105
105
  console.log(` ${ui.DIM}skills, plan the architecture, and build it — all automatically.${ui.RESET}`);
106
106
  } else if (isMultiStack) {
107
- console.log(` 2. Type ${ui.CYAN}setup${ui.RESET} to detect your stacks and generate project-specific skills`);
107
+ console.log(` 2. Type ${ui.CYAN}/setup${ui.RESET} to detect your stacks and generate project-specific skills`);
108
108
  console.log('');
109
109
  ui.info(`Multi-stack project detected: ${stackDirs.join(', ')}${rootHasManifest ? ' + root' : ''}`);
110
110
  ui.info('Setup will analyze each stack and generate specialized skills for all of them.');
@@ -115,16 +115,16 @@ async function run() {
115
115
  console.log(` ${ui.DIM}"refactor the API layer"${ui.RESET}`);
116
116
  console.log('');
117
117
  console.log(` ${ui.BOLD}Commands:${ui.RESET}`);
118
- console.log(` ${ui.CYAN}setup${ui.RESET} ${ui.DIM}Detect stacks, generate skills and agents${ui.RESET}`);
119
- console.log(` ${ui.CYAN}review${ui.RESET} ${ui.DIM}Review current changes for quality, security & accessibility${ui.RESET}`);
118
+ console.log(` ${ui.CYAN}/setup${ui.RESET} ${ui.DIM}Detect stacks, generate skills and agents${ui.RESET}`);
119
+ console.log(` ${ui.CYAN}/review${ui.RESET} ${ui.DIM}Review current changes for quality, security & accessibility${ui.RESET}`);
120
120
  } else {
121
121
  // Single-stack existing project
122
- console.log(` 2. Type ${ui.CYAN}setup${ui.RESET} to detect your stack and generate project-specific skills`);
122
+ console.log(` 2. Type ${ui.CYAN}/setup${ui.RESET} to detect your stack and generate project-specific skills`);
123
123
  console.log(` 3. Tell Claude what you want — it handles the rest`);
124
124
  console.log('');
125
125
  console.log(` ${ui.BOLD}Commands:${ui.RESET}`);
126
- console.log(` ${ui.CYAN}setup${ui.RESET} ${ui.DIM}Detect stack, generate skills and agents for your project${ui.RESET}`);
127
- console.log(` ${ui.CYAN}review${ui.RESET} ${ui.DIM}Review current changes for quality, security & accessibility${ui.RESET}`);
126
+ console.log(` ${ui.CYAN}/setup${ui.RESET} ${ui.DIM}Detect stack, generate skills and agents for your project${ui.RESET}`);
127
+ console.log(` ${ui.CYAN}/review${ui.RESET} ${ui.DIM}Review current changes for quality, security & accessibility${ui.RESET}`);
128
128
  console.log('');
129
129
  console.log(` ${ui.DIM}To build, just describe what you want:${ui.RESET}`);
130
130
  console.log(` ${ui.DIM}"add a user authentication system"${ui.RESET}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/cli",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "AI-powered development toolkit for Claude Code. Skills, agents, hooks, and quality gates that ship production apps — not prototypes.",
5
5
  "bin": {
6
6
  "axiomatic": "./bin/cli.js"