@axiomatic-labs/cli 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +47 -0
  2. 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/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.2",
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
  }