@axiomatic-labs/cli 1.3.1 → 1.3.3
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 +8 -6
- package/lib/init.js +3 -3
- package/lib/manifest.js +1 -1
- package/package.json +1 -1
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** —
|
|
10
|
-
- **
|
|
11
|
-
- **21 automation hooks** — Quality gates, linting,
|
|
12
|
-
- **
|
|
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: /
|
|
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.
|
|
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
|
|
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
|
|
106
|
-
console.log(` ${ui.DIM}skills,
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiomatic-labs/cli",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
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"
|