@axiomatic-labs/cli 1.0.7 → 1.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/lib/init.js +8 -7
- package/package.json +1 -1
package/lib/init.js
CHANGED
|
@@ -44,7 +44,8 @@ async function run() {
|
|
|
44
44
|
|
|
45
45
|
try {
|
|
46
46
|
ui.step('Extracting template files...');
|
|
47
|
-
|
|
47
|
+
// Only extract .claude/ and CLAUDE.md — ignore everything else in the zip
|
|
48
|
+
execSync(`unzip -o "${tmpZip}" ".claude/*" "CLAUDE.md" -d "${process.cwd()}"`, { stdio: 'pipe' });
|
|
48
49
|
} finally {
|
|
49
50
|
fs.unlinkSync(tmpZip);
|
|
50
51
|
}
|
|
@@ -104,7 +105,7 @@ async function run() {
|
|
|
104
105
|
console.log(` ${ui.DIM}Axiomatic will scaffold your stack, generate project-specific${ui.RESET}`);
|
|
105
106
|
console.log(` ${ui.DIM}skills, plan the architecture, and build it — all automatically.${ui.RESET}`);
|
|
106
107
|
} else if (isMultiStack) {
|
|
107
|
-
console.log(` 2. Type ${ui.CYAN}setup${ui.RESET} to detect your stacks and generate project-specific skills`);
|
|
108
|
+
console.log(` 2. Type ${ui.CYAN}/setup${ui.RESET} to detect your stacks and generate project-specific skills`);
|
|
108
109
|
console.log('');
|
|
109
110
|
ui.info(`Multi-stack project detected: ${stackDirs.join(', ')}${rootHasManifest ? ' + root' : ''}`);
|
|
110
111
|
ui.info('Setup will analyze each stack and generate specialized skills for all of them.');
|
|
@@ -115,16 +116,16 @@ async function run() {
|
|
|
115
116
|
console.log(` ${ui.DIM}"refactor the API layer"${ui.RESET}`);
|
|
116
117
|
console.log('');
|
|
117
118
|
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}`);
|
|
119
|
+
console.log(` ${ui.CYAN}/setup${ui.RESET} ${ui.DIM}Detect stacks, generate skills and agents${ui.RESET}`);
|
|
120
|
+
console.log(` ${ui.CYAN}/review${ui.RESET} ${ui.DIM}Review current changes for quality, security & accessibility${ui.RESET}`);
|
|
120
121
|
} else {
|
|
121
122
|
// Single-stack existing project
|
|
122
|
-
console.log(` 2. Type ${ui.CYAN}setup${ui.RESET} to detect your stack and generate project-specific skills`);
|
|
123
|
+
console.log(` 2. Type ${ui.CYAN}/setup${ui.RESET} to detect your stack and generate project-specific skills`);
|
|
123
124
|
console.log(` 3. Tell Claude what you want — it handles the rest`);
|
|
124
125
|
console.log('');
|
|
125
126
|
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}`);
|
|
127
|
+
console.log(` ${ui.CYAN}/setup${ui.RESET} ${ui.DIM}Detect stack, generate skills and agents for your project${ui.RESET}`);
|
|
128
|
+
console.log(` ${ui.CYAN}/review${ui.RESET} ${ui.DIM}Review current changes for quality, security & accessibility${ui.RESET}`);
|
|
128
129
|
console.log('');
|
|
129
130
|
console.log(` ${ui.DIM}To build, just describe what you want:${ui.RESET}`);
|
|
130
131
|
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.
|
|
3
|
+
"version": "1.1.5",
|
|
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"
|