@arthai/agents 1.0.8 → 1.0.9

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
@@ -5,18 +5,22 @@ AI development toolkit for Claude Code — agents, skills, and hooks organized i
5
5
  ## Quick Start
6
6
 
7
7
  ```bash
8
- # 1. Activate your license (one time)
8
+ # 1. Get a license key (email productive@getarth.ai)
9
+
10
+ # 2. Activate your license (one time)
9
11
  npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX
10
12
 
11
- # 2. Install a bundle into your project
13
+ # 3. Install a bundle into your project
12
14
  npx @arthai/agents install forge .
13
15
 
14
- # 3. Open Claude Code — skills are ready
16
+ # 4. Open Claude Code — skills are ready
15
17
  /calibrate # auto-configure for your codebase
16
18
  /planning my-feature # start building
17
19
  ```
18
20
 
19
- Don't have a key? Contact us at arthai.dev/pricing
21
+ Don't have a key? Email **productive@getarth.ai** to get one.
22
+
23
+ Already have the toolkit cloned at `~/.claude-agents/`? You don't need to activate — your existing key works automatically.
20
24
 
21
25
  ## Explore Before Installing
22
26
 
@@ -185,11 +189,35 @@ npx @arthai/agents@latest install forge .
185
189
  # Remove a specific bundle
186
190
  npx @arthai/agents uninstall forge .
187
191
 
188
- # Remove everything
189
- rm -rf .claude/skills .claude/agents .claude/hooks
192
+ # Remove all bundles at once
193
+ npx @arthai/agents uninstall prime .
190
194
  ```
191
195
 
192
- Note: hooks merged into `.claude/settings.json` need to be removed manually. Open the file and delete entries referencing `.claude/hooks/`.
196
+ This removes skills and agents (63 files for prime). To fully clean up including hooks:
197
+
198
+ ```bash
199
+ # 1. Remove hook scripts
200
+ rm -rf .claude/hooks
201
+
202
+ # 2. Remove hook entries from settings.json
203
+ python3 -c "
204
+ import json
205
+ with open('.claude/settings.json') as f: s = json.load(f)
206
+ s.pop('hooks', None)
207
+ with open('.claude/settings.json', 'w') as f: json.dump(s, f, indent=2)
208
+ "
209
+ ```
210
+
211
+ **What uninstall removes vs keeps:**
212
+
213
+ | Removed | Kept (never deleted) |
214
+ |---------|------|
215
+ | `.claude/skills/` | `CLAUDE.md` (your project context) |
216
+ | `.claude/agents/` | `.claude/project-profile.md` (calibration data) |
217
+ | | `.claude/knowledge/` (project knowledge base) |
218
+ | | `.claude/settings.json` (hook entries — clean manually) |
219
+ | | `.claude/hooks/` (script files — `rm -rf` manually) |
220
+ | | `~/.arthai/license` (license key — per-machine) |
193
221
 
194
222
  ## License Activation
195
223
 
@@ -245,4 +273,4 @@ npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX
245
273
 
246
274
  - [Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code)
247
275
  - Node.js 18+
248
- - License key (get one at arthai.dev/pricing)
276
+ - License key (get one at productive@getarth.ai)
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
package/bin/cli.js CHANGED
@@ -107,7 +107,7 @@ function handleInstall(rawArgs) {
107
107
  const licenseKey = readLicenseKey(rawArgs);
108
108
  if (!licenseKey) {
109
109
  console.error('License required. Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX');
110
- console.error('Get a license at arthai.dev/pricing');
110
+ console.error('Get a license at productive@getarth.ai');
111
111
  process.exit(1);
112
112
  }
113
113
  const licenseResult = validateWithWorker(licenseKey);
@@ -116,7 +116,7 @@ function handleInstall(rawArgs) {
116
116
  console.error('License server unavailable. Cannot install without a validated license.');
117
117
  console.error('Check your internet connection and try again.');
118
118
  } else {
119
- console.error('Invalid license key. Check your key or get one at arthai.dev/pricing');
119
+ console.error('Invalid license key. Check your key or get one at productive@getarth.ai');
120
120
  }
121
121
  process.exit(1);
122
122
  }
@@ -273,7 +273,7 @@ function handleActivate(key) {
273
273
  if (!result.valid) {
274
274
  const reason = result.reason === 'revoked'
275
275
  ? 'This license key has been revoked.'
276
- : 'Invalid license key. Check your key or get one at arthai.dev/pricing';
276
+ : 'Invalid license key. Check your key or get one at productive@getarth.ai';
277
277
  console.error(`Activation failed: ${reason}`);
278
278
  process.exit(1);
279
279
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "canvas",
3
3
  "description": "Design-driven development — adversarial design critique + frontend",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "compass",
3
3
  "description": "Product strategy — PM, GTM, user research, content strategy",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "counsel",
3
3
  "description": "AI consulting toolkit — client discovery, proposals, deliverables",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cruise",
3
3
  "description": "Autopilot mode — autonomous task execution (requires forge+scalpel+sentinel)",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "forge",
3
3
  "description": "Full development workflow — plan, build, test, ship",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prime",
3
3
  "description": "Everything — all agents, skills, and hooks in one plugin",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -306,7 +306,7 @@ if ! $LICENSE_VALID; then
306
306
  fi
307
307
 
308
308
  echo "Invalid license key. Toolkit has been disabled for this project."
309
- echo " Check your key or get one at arthai.dev/pricing"
309
+ echo " Check your key or get one at productive@getarth.ai"
310
310
  exit 0
311
311
  fi
312
312
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prism",
3
3
  "description": "Deep QA — multi-agent testing, baseline tracking, incident analysis",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "scalpel",
3
3
  "description": "Surgical bug fixing — targeted fixes, CI repair, issue triage",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sentinel",
3
3
  "description": "Operations and reliability — SRE, incidents, deploy monitoring",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shield",
3
3
  "description": "Safety guardrails — bash guards, edit protection, session bootstrap",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "spark",
3
3
  "description": "Project setup and onboarding — calibrate, scan, bootstrap",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -306,7 +306,7 @@ if ! $LICENSE_VALID; then
306
306
  fi
307
307
 
308
308
  echo "Invalid license key. Toolkit has been disabled for this project."
309
- echo " Check your key or get one at arthai.dev/pricing"
309
+ echo " Check your key or get one at productive@getarth.ai"
310
310
  exit 0
311
311
  fi
312
312
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arthai/agents",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "AI-powered development toolkit for Claude Code — agents, skills, and hooks",
5
5
  "bin": {
6
6
  "arthai": "bin/cli.js"
@@ -128,7 +128,7 @@ Returns:
128
128
  NEW USER ONBOARDING:
129
129
  1. User finds toolkit (npm, marketplace, docs)
130
130
  2. User tries: npx @arthai/agents install forge .
131
- → "License required. Get a key at arthai.dev/pricing"
131
+ → "License required. Get a key at productive@getarth.ai"
132
132
  3. User contacts you
133
133
  4. You run: /license issue customer-name
134
134
  5. You send them the key