@axiomatic-labs/cli 1.3.0 → 1.3.2

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/README.md CHANGED
@@ -6,17 +6,18 @@ Axiomatic is a development toolkit that turns Claude Code into a senior engineer
6
6
 
7
7
  ## What you get
8
8
 
9
- - **11 specialized skills** — Build pipeline, design system, brand strategy, competitive analysis, CRO, content strategy, and more. Each skill encodes expert-level methodology that Claude follows step by step.
10
- - **11 AI agents** — Dedicated agents for design, architecture, code review, and implementation. They work in parallel, each with domain expertise.
11
- - **21 automation hooks** — Quality gates, linting, build tracking, browser testing, and dev server management. They fire automatically — no manual checks needed.
12
- - **One command to build anything** — Type `/build` and describe what you want. Axiomatic plans the architecture, selects the right skills, creates tasks, and executes them with built-in quality checks at every step.
9
+ - **11 specialized skills** — Design pipeline, brand strategy, competitive analysis, CRO, content strategy, and more. Each skill encodes expert-level methodology that Claude follows step by step.
10
+ - **12 AI agents** — Dedicated agents for design, architecture, code review, and implementation. They work in parallel, each with domain expertise.
11
+ - **21 automation hooks** — Quality gates, linting, task tracking, browser testing, and dev server management. They fire automatically — no manual checks needed.
12
+ - **Quality gates on every task** — Reviewer and fix agents enforce your project's skills automatically. No shortcuts, no skipped checks.
13
13
 
14
14
  ## Quick start
15
15
 
16
16
  ```bash
17
17
  npx @axiomatic-labs/cli init
18
18
  claude
19
- # then type: /build <what you want to create>
19
+ # then type: /setup
20
+ # or just describe what you want to create
20
21
  ```
21
22
 
22
23
  ## Commands
@@ -31,7 +32,8 @@ axiomatic version # Check installed and latest versions
31
32
 
32
33
  1. `axiomatic init` downloads the latest template files into your project
33
34
  2. You run `claude` to start Claude Code — Axiomatic's skills and agents activate automatically
34
- 3. Type `/build` with a description Axiomatic analyzes your request, selects skills, creates an execution plan, and builds it with quality gates enforced at every step
35
+ 3. Run `/setup` to detect your stack and generate project-specific skills and agents
36
+ 4. Describe what you want — Axiomatic creates tasks, delegates to implement agents, and runs quality gates on every completed task
35
37
 
36
38
  Updates are non-destructive. `axiomatic update` replaces only template files — your generated skills, custom agents, and project-specific configurations stay untouched.
37
39
 
package/lib/init.js CHANGED
@@ -97,13 +97,13 @@ async function run() {
97
97
  console.log(` 1. Run ${ui.CYAN}claude${ui.RESET} to start Claude Code`);
98
98
 
99
99
  if (isGreenfield) {
100
- console.log(` 2. Describe what you want to build:`);
100
+ console.log(` 2. Describe what you want to create:`);
101
101
  console.log('');
102
102
  console.log(` ${ui.DIM}"create a SaaS landing page"${ui.RESET}`);
103
103
  console.log(` ${ui.DIM}"build a task management app with Next.js"${ui.RESET}`);
104
104
  console.log('');
105
- console.log(` ${ui.DIM}Axiomatic will scaffold your stack, generate project-specific${ui.RESET}`);
106
- console.log(` ${ui.DIM}skills, plan the architecture, and build it — all automatically.${ui.RESET}`);
105
+ console.log(` ${ui.DIM}Axiomatic will scaffold your stack, run /setup to generate${ui.RESET}`);
106
+ console.log(` ${ui.DIM}project-specific skills, and build it — all automatically.${ui.RESET}`);
107
107
  } else if (isMultiStack) {
108
108
  console.log(` 2. Type ${ui.CYAN}/setup${ui.RESET} to detect your stacks and generate project-specific skills`);
109
109
  console.log('');
package/lib/manifest.js CHANGED
@@ -2,7 +2,7 @@
2
2
  // Only these files are managed by init/update. Everything else is user-generated.
3
3
 
4
4
  const TEMPLATE_SKILLS = [
5
- 'build',
5
+ 'design',
6
6
  'review',
7
7
  'setup',
8
8
  'brand-strategy',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/cli",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
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"