@arthai/agents 1.0.2 → 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.
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.3
package/bin/cli.js CHANGED
@@ -268,6 +268,17 @@ function copyPlugin(sourceDir, targetPluginsDir, name) {
268
268
 
269
269
  // Recursive copy
270
270
  copyDirRecursive(sourceDir, dest);
271
+
272
+ // Register plugin in .claude/settings.local.json so Claude Code discovers it
273
+ const projectDir = path.resolve(targetPluginsDir, '..'); // .claude/
274
+ const settingsPath = path.join(projectDir, 'settings.local.json');
275
+ let settings = {};
276
+ if (fs.existsSync(settingsPath)) {
277
+ try { settings = JSON.parse(fs.readFileSync(settingsPath, 'utf8')); } catch (e) { settings = {}; }
278
+ }
279
+ if (!settings.enabledPlugins) settings.enabledPlugins = {};
280
+ settings.enabledPlugins[`${name}@local`] = true;
281
+ fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\n');
271
282
  }
272
283
 
273
284
  function copyDirRecursive(src, dest) {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "canvas",
3
3
  "description": "Design-driven development — adversarial design critique + frontend",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -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.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "counsel",
3
3
  "description": "AI consulting toolkit — client discovery, proposals, deliverables",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -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.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "forge",
3
3
  "description": "Full development workflow — plan, build, test, ship",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -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.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -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.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -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.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sentinel",
3
3
  "description": "Operations and reliability — SRE, incidents, deploy monitoring",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -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.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "spark",
3
3
  "description": "Project setup and onboarding — calibrate, scan, bootstrap",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arthai/agents",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "AI-powered development toolkit for Claude Code — agents, skills, and hooks",
5
5
  "bin": {
6
6
  "arthai": "bin/cli.js"