@arthai/agents 1.0.11 → 1.0.12

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 (36) hide show
  1. package/VERSION +1 -1
  2. package/dist/plugins/canvas/.claude-plugin/plugin.json +1 -1
  3. package/dist/plugins/canvas/VERSION +1 -1
  4. package/dist/plugins/canvas/hooks/project-setup.sh +9 -9
  5. package/dist/plugins/compass/.claude-plugin/plugin.json +1 -1
  6. package/dist/plugins/compass/VERSION +1 -1
  7. package/dist/plugins/compass/hooks/project-setup.sh +9 -9
  8. package/dist/plugins/counsel/.claude-plugin/plugin.json +1 -1
  9. package/dist/plugins/counsel/VERSION +1 -1
  10. package/dist/plugins/counsel/hooks/project-setup.sh +9 -9
  11. package/dist/plugins/cruise/.claude-plugin/plugin.json +1 -1
  12. package/dist/plugins/cruise/VERSION +1 -1
  13. package/dist/plugins/cruise/hooks/project-setup.sh +9 -9
  14. package/dist/plugins/forge/.claude-plugin/plugin.json +1 -1
  15. package/dist/plugins/forge/VERSION +1 -1
  16. package/dist/plugins/forge/hooks/project-setup.sh +9 -9
  17. package/dist/plugins/prime/.claude-plugin/plugin.json +1 -1
  18. package/dist/plugins/prime/VERSION +1 -1
  19. package/dist/plugins/prime/hooks/project-setup.sh +9 -9
  20. package/dist/plugins/prism/.claude-plugin/plugin.json +1 -1
  21. package/dist/plugins/prism/VERSION +1 -1
  22. package/dist/plugins/prism/hooks/project-setup.sh +9 -9
  23. package/dist/plugins/scalpel/.claude-plugin/plugin.json +1 -1
  24. package/dist/plugins/scalpel/VERSION +1 -1
  25. package/dist/plugins/scalpel/hooks/project-setup.sh +9 -9
  26. package/dist/plugins/sentinel/.claude-plugin/plugin.json +1 -1
  27. package/dist/plugins/sentinel/VERSION +1 -1
  28. package/dist/plugins/sentinel/hooks/project-setup.sh +9 -9
  29. package/dist/plugins/shield/.claude-plugin/plugin.json +1 -1
  30. package/dist/plugins/shield/VERSION +1 -1
  31. package/dist/plugins/shield/hooks/project-setup.sh +9 -9
  32. package/dist/plugins/spark/.claude-plugin/plugin.json +1 -1
  33. package/dist/plugins/spark/VERSION +1 -1
  34. package/dist/plugins/spark/hooks/project-setup.sh +9 -9
  35. package/hooks/project-setup.sh +9 -9
  36. package/package.json +1 -1
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "canvas",
3
3
  "description": "Design-driven development — adversarial design critique + frontend",
4
- "version": "1.0.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -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.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "counsel",
3
3
  "description": "AI consulting toolkit — client discovery, proposals, deliverables",
4
- "version": "1.0.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -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.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "forge",
3
3
  "description": "Full development workflow — plan, build, test, ship",
4
- "version": "1.0.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -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.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -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.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -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.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sentinel",
3
3
  "description": "Operations and reliability — SRE, incidents, deploy monitoring",
4
- "version": "1.0.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -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.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "spark",
3
3
  "description": "Project setup and onboarding — calibrate, scan, bootstrap",
4
- "version": "1.0.11",
4
+ "version": "1.0.12",
5
5
  "author": {
6
6
  "name": "Arth AI"
7
7
  }
@@ -1 +1 @@
1
- 1.0.11
1
+ 1.0.12
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
@@ -62,16 +62,16 @@ LICENSE_KEY="${ARTHAI_LICENSE_KEY:-}"
62
62
  [ -z "$LICENSE_KEY" ] && [ -f "$REAL_HOME/.arthai/license" ] && LICENSE_KEY=$(cat "$REAL_HOME/.arthai/license" 2>/dev/null | tr -d '[:space:]')
63
63
 
64
64
  if [ -z "$LICENSE_KEY" ]; then
65
- echo "LICENSE REQUIRED — No license key found for marketplace plugin."
66
- echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX"
67
- echo "Get a key: productive@getarth.ai"
68
- exit 0
65
+ echo "LICENSE REQUIRED — No license key found for marketplace plugin." >&2
66
+ echo "Run: npx @arthai/agents activate ARTH-XXXX-XXXX-XXXX-XXXX" >&2
67
+ echo "Get a key: productive@getarth.ai" >&2
68
+ exit 2
69
69
  fi
70
70
 
71
71
  # Validate format
72
72
  if ! echo "$LICENSE_KEY" | grep -qE "$KEY_FORMAT"; then
73
- echo "LICENSE INVALID — Key format incorrect."
74
- exit 0
73
+ echo "LICENSE INVALID — Key format incorrect." >&2
74
+ exit 2
75
75
  fi
76
76
 
77
77
  # Check cache (24h TTL)
@@ -99,9 +99,9 @@ if ! $LICENSE_VALID; then
99
99
  echo "$NOW" > "$LICENSE_CACHE"
100
100
  else
101
101
  # Definitive invalid — no fallback
102
- echo "LICENSE INVALID — Key not recognized."
103
- echo "Check your key or get one at productive@getarth.ai"
104
- exit 0
102
+ echo "LICENSE INVALID — Key not recognized." >&2
103
+ echo "Check your key or get one at productive@getarth.ai" >&2
104
+ exit 2
105
105
  fi
106
106
  else
107
107
  # Network error — allow gracefully (don't block on Worker outage)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arthai/agents",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "AI-powered development toolkit for Claude Code — agents, skills, and hooks",
5
5
  "bin": {
6
6
  "arthai": "bin/cli.js"