@aiorg/cli 1.6.2 → 1.6.4

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 +31 -16
  2. package/package.json +28 -15
package/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # @aiorg/cli
2
2
 
3
- Official CLI for downloading and managing [aiorg](https://aiorg.dev) kits - Claude Code starter kits for founders.
3
+ [![npm](https://img.shields.io/npm/v/@aiorg/cli)](https://www.npmjs.com/package/@aiorg/cli)
4
+ [![License: MIT](https://img.shields.io/badge/license-MIT-green)](LICENSE)
5
+ [![Claude Code](https://img.shields.io/badge/built%20for-Claude%20Code-blueviolet)](https://docs.anthropic.com/en/docs/claude-code)
6
+
7
+ Install and manage autonomous [AI teams](https://aiorg.dev) for Claude Code. Each team is a specialist that understands its domain — not a chatbot, an autonomous teammate.
4
8
 
5
9
  ## Installation
6
10
 
@@ -24,15 +28,15 @@ aiorg login
24
28
  # → ✓ Logged in as user@email.com
25
29
  ```
26
30
 
27
- ### `aiorg init <kit> [path]`
31
+ ### `aiorg init <team> [path]`
28
32
 
29
- Download and extract a kit to a folder. Free kits work without login.
33
+ Download and set up an AI team. Free teams work without login.
30
34
 
31
35
  ```bash
32
- # Free kits - no login needed
36
+ # Free teams - no login needed
33
37
  aiorg init idea-os ~/Projects/my-idea
34
38
 
35
- # Paid kits - requires login first
39
+ # Paid teams - requires login first
36
40
  aiorg init marketing-os ~/Projects/my-marketing
37
41
  aiorg init saas-dev-team ~/Projects/my-saas
38
42
  ```
@@ -42,7 +46,7 @@ Options:
42
46
 
43
47
  ### `aiorg upgrade`
44
48
 
45
- Upgrade a kit in the current directory to the latest version.
49
+ Upgrade an AI team in the current directory to the latest version.
46
50
 
47
51
  ```bash
48
52
  cd ~/Projects/my-marketing
@@ -57,7 +61,7 @@ Options:
57
61
 
58
62
  ### `aiorg version`
59
63
 
60
- Show CLI and kit versions.
64
+ Show CLI and team versions.
61
65
 
62
66
  ```bash
63
67
  aiorg version
@@ -102,29 +106,40 @@ When you run `aiorg upgrade`, the CLI:
102
106
 
103
107
  1. Checks for new versions via the API
104
108
  2. Downloads the new version ZIP
105
- 3. Applies updates based on `fileCategories` in the kit's `version.json`:
109
+ 3. Applies updates based on `fileCategories` in the team's `version.json`:
106
110
  - `alwaysReplace`: Files that get overwritten (CLI code, commands)
107
111
  - `neverTouch`: Files that are preserved (your config, data, content)
108
112
  4. Creates a git backup commit (optional)
109
113
 
110
114
  Your customizations and data are preserved during upgrades.
111
115
 
112
- ## Available Kits
116
+ ## Available Teams
113
117
 
114
- | Kit | Type | Description |
115
- |-----|------|-------------|
116
- | `idea-os` | Free | AI-powered business idea validation |
117
- | `marketing-os` | Paid | AI-powered marketing automation |
118
- | `saas-dev-team` | Paid | Full-stack SaaS template |
119
- | `landing-page` | Paid | High-converting landing page |
118
+ | Team | Type | What it replaces |
119
+ |------|------|-----------------|
120
+ | [`idea-os`](https://aiorg.dev/kits/idea-os) | Free | Business analyst. Idea validation, competitor research, PMF scoring. |
121
+ | [`landing-page`](https://aiorg.dev/kits/landing-page) | Free | GEO specialist. Landing pages optimized for Google and AI chatbots. |
122
+ | [`saas-dev-team`](https://aiorg.dev/kits/saas-starter) | Paid | Your first engineer. Auth, billing, dashboard — production-ready. |
123
+ | [`marketing-os`](https://aiorg.dev/kits/marketing-os) | Paid | Head of Marketing. SEO, content, outreach — fully autonomous. |
124
+ | [`product-os`](https://aiorg.dev/kits/product-os) | Paid | Product Manager. Roadmaps, specs, user research. |
125
+ | [`qa-team`](https://aiorg.dev/kits/qa-team) | Paid | QA Engineer. Testing, coverage, bug detection. |
126
+ | [`support-team`](https://aiorg.dev/kits/support-team) | Paid | Support Lead. Customer issues, docs, escalation. |
127
+ | [`investor-os`](https://aiorg.dev/kits/investor-os) | Paid | CFO for fundraising. Pitch decks, financial models, due diligence. |
120
128
 
121
- Visit [aiorg.dev](https://aiorg.dev) to purchase paid kits.
129
+ Visit [aiorg.dev](https://aiorg.dev) to see all teams.
122
130
 
123
131
  ## Requirements
124
132
 
125
133
  - Node.js 18+
126
134
  - npm, pnpm, or yarn
127
135
 
136
+ ## Links
137
+
138
+ - **Website:** [aiorg.dev](https://aiorg.dev)
139
+ - **Documentation:** [aiorg.dev/docs](https://aiorg.dev/docs)
140
+ - **All teams:** [aiorg.dev/#kits](https://aiorg.dev/#kits)
141
+ - **Issues:** [github.com/aiorgdev/cli/issues](https://github.com/aiorgdev/cli/issues)
142
+
128
143
  ## License
129
144
 
130
145
  MIT
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@aiorg/cli",
3
- "version": "1.6.2",
4
- "description": "CLI for downloading and upgrading aiorg kits",
3
+ "version": "1.6.4",
4
+ "description": "Install and manage autonomous AI teams for Claude Code. Each team is a specialist — marketing, dev, QA, product, support — that executes, not just advises.",
5
+ "homepage": "https://aiorg.dev",
5
6
  "type": "module",
6
7
  "publishConfig": {
7
8
  "access": "public"
@@ -12,26 +13,30 @@
12
13
  "files": [
13
14
  "dist"
14
15
  ],
15
- "scripts": {
16
- "build": "tsup",
17
- "dev": "tsup --watch",
18
- "typecheck": "tsc --noEmit",
19
- "test": "vitest run",
20
- "test:watch": "vitest",
21
- "test:contract": "RUN_INTEGRATION=true vitest run src/__tests__/api-contract.test.ts",
22
- "prepublishOnly": "pnpm build && pnpm test:contract"
23
- },
24
16
  "keywords": [
25
17
  "aiorg",
26
18
  "cli",
27
19
  "claude",
28
- "starter-kit"
20
+ "claude-code",
21
+ "ai-teams",
22
+ "autonomous-ai",
23
+ "saas",
24
+ "ai",
25
+ "founder-tools",
26
+ "boilerplate",
27
+ "developer-tools"
29
28
  ],
30
- "author": "aiorg.dev",
29
+ "author": {
30
+ "name": "AI Org",
31
+ "url": "https://aiorg.dev"
32
+ },
31
33
  "license": "MIT",
32
34
  "repository": {
33
35
  "type": "git",
34
- "url": "https://github.com/aiorgdev/cli"
36
+ "url": "git+https://github.com/aiorgdev/cli.git"
37
+ },
38
+ "bugs": {
39
+ "url": "https://github.com/aiorgdev/cli/issues"
35
40
  },
36
41
  "engines": {
37
42
  "node": ">=18"
@@ -57,5 +62,13 @@
57
62
  "tsup": "^8.3.5",
58
63
  "typescript": "^5.7.2",
59
64
  "vitest": "^2.1.8"
65
+ },
66
+ "scripts": {
67
+ "build": "tsup",
68
+ "dev": "tsup --watch",
69
+ "typecheck": "tsc --noEmit",
70
+ "test": "vitest run",
71
+ "test:watch": "vitest",
72
+ "test:contract": "RUN_INTEGRATION=true vitest run src/__tests__/api-contract.test.ts"
60
73
  }
61
- }
74
+ }