@axiomatic-labs/cli 1.0.1 → 1.0.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.
Files changed (3) hide show
  1. package/README.md +47 -0
  2. package/lib/init.js +35 -2
  3. package/package.json +22 -3
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # Axiomatic
2
+
3
+ **Ship production apps with Claude Code — not prototypes.**
4
+
5
+ Axiomatic is a development toolkit that turns Claude Code into a senior engineering team. It installs skills, agents, hooks, and quality gates that enforce real-world standards on every task.
6
+
7
+ ## What you get
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.
13
+
14
+ ## Quick start
15
+
16
+ ```bash
17
+ npx @axiomatic-labs/cli init
18
+ claude
19
+ # then type: /build <what you want to create>
20
+ ```
21
+
22
+ ## Commands
23
+
24
+ ```bash
25
+ axiomatic init # Install Axiomatic in your project
26
+ axiomatic update # Update to the latest version
27
+ axiomatic version # Check installed and latest versions
28
+ ```
29
+
30
+ ## How it works
31
+
32
+ 1. `axiomatic init` downloads the latest template files into your project
33
+ 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
+
36
+ Updates are non-destructive. `axiomatic update` replaces only template files — your generated skills, custom agents, and project-specific configurations stay untouched.
37
+
38
+ ## Requirements
39
+
40
+ - [Claude Code](https://claude.ai/claude-code) (Anthropic CLI)
41
+ - [GitHub CLI](https://cli.github.com/) (`gh`) or a `GITHUB_TOKEN` with repo access
42
+ - Node.js 18+
43
+
44
+ ## Links
45
+
46
+ - [Website](https://axiomatic.dev)
47
+ - [GitHub](https://github.com/axiomatic-labs/axiomatic-cli)
package/lib/init.js CHANGED
@@ -68,8 +68,41 @@ async function run() {
68
68
  ui.success(`${hookCount} hooks installed`);
69
69
 
70
70
  ui.done(`Axiomatic ${version} installed.`);
71
- ui.info('Next: claude');
72
- ui.info('Then: /build <what you want to create>');
71
+
72
+ // Detect if this is an existing project or empty directory
73
+ const hasPackageJson = fs.existsSync(path.join(process.cwd(), 'package.json'));
74
+ const hasPyproject = fs.existsSync(path.join(process.cwd(), 'pyproject.toml'));
75
+ const hasGemfile = fs.existsSync(path.join(process.cwd(), 'Gemfile'));
76
+ const hasGoMod = fs.existsSync(path.join(process.cwd(), 'go.mod'));
77
+ const isExistingProject = hasPackageJson || hasPyproject || hasGemfile || hasGoMod;
78
+
79
+ console.log(` ${ui.BOLD}Getting started:${ui.RESET}`);
80
+ console.log('');
81
+ console.log(` 1. Run ${ui.CYAN}claude${ui.RESET} to start Claude Code`);
82
+
83
+ if (isExistingProject) {
84
+ console.log(` 2. Type ${ui.CYAN}setup${ui.RESET} to detect your stack and generate project-specific skills`);
85
+ console.log(` 3. Tell Claude what you want — it handles the rest`);
86
+ console.log('');
87
+ console.log(` ${ui.BOLD}Commands:${ui.RESET}`);
88
+ console.log(` ${ui.CYAN}setup${ui.RESET} ${ui.DIM}Detect stack, generate skills and agents for your project${ui.RESET}`);
89
+ console.log(` ${ui.CYAN}review${ui.RESET} ${ui.DIM}Review current changes for quality, security & accessibility${ui.RESET}`);
90
+ console.log('');
91
+ console.log(` ${ui.DIM}To build, just describe what you want:${ui.RESET}`);
92
+ console.log(` ${ui.DIM}"add a user authentication system"${ui.RESET}`);
93
+ console.log(` ${ui.DIM}"refactor the payment module"${ui.RESET}`);
94
+ } else {
95
+ console.log(` 2. Describe what you want to build:`);
96
+ console.log('');
97
+ console.log(` ${ui.DIM}"create a SaaS landing page"${ui.RESET}`);
98
+ console.log(` ${ui.DIM}"build a task management app with Next.js"${ui.RESET}`);
99
+ console.log('');
100
+ console.log(` ${ui.DIM}Axiomatic will scaffold your stack, generate project-specific${ui.RESET}`);
101
+ console.log(` ${ui.DIM}skills, plan the architecture, and build it — all automatically.${ui.RESET}`);
102
+ }
103
+
104
+ console.log('');
105
+ console.log(` ${ui.DIM}Docs: https://axiomatic.dev${ui.RESET}`);
73
106
  console.log('');
74
107
  }
75
108
 
package/package.json CHANGED
@@ -1,13 +1,31 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/cli",
3
- "version": "1.0.1",
4
- "description": "CLI for installing and updating Axiomatic project templates",
3
+ "version": "1.0.3",
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"
7
7
  },
8
8
  "files": [
9
9
  "bin/",
10
- "lib/"
10
+ "lib/",
11
+ "README.md"
12
+ ],
13
+ "keywords": [
14
+ "claude",
15
+ "claude-code",
16
+ "ai",
17
+ "ai-agents",
18
+ "ai-coding",
19
+ "developer-tools",
20
+ "cli",
21
+ "scaffolding",
22
+ "code-quality",
23
+ "automation",
24
+ "skills",
25
+ "agents",
26
+ "anthropic",
27
+ "llm",
28
+ "devtools"
11
29
  ],
12
30
  "engines": {
13
31
  "node": ">=18"
@@ -16,6 +34,7 @@
16
34
  "type": "git",
17
35
  "url": "https://github.com/axiomatic-labs/axiomatic-cli.git"
18
36
  },
37
+ "homepage": "https://axiomatic.dev",
19
38
  "license": "UNLICENSED",
20
39
  "private": false
21
40
  }