@defai.digital/automatosx 5.2.0 → 5.2.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.
@@ -10,12 +10,11 @@ description: "Expert in product strategy, user research, and feature prioritizat
10
10
  provider: gemini-cli
11
11
  fallbackProvider: claude-code
12
12
 
13
- # Abilities (v5.0.12: Strategic planning abilities, NO implementation)
13
+ # Abilities (v5.0.12: Product strategy and user-focused abilities)
14
14
  abilities:
15
- - problem-solving # Problem framing and analysis
15
+ - problem-solving # User problem analysis
16
16
  - task-planning # Feature planning and prioritization
17
17
  - technical-writing # Product specs and requirements
18
- - content-creation # Product documentation
19
18
 
20
19
  # v5.0.12: Smart ability loading based on task keywords
21
20
  abilitySelection:
@@ -32,6 +31,9 @@ abilitySelection:
32
31
  requirements: [technical-writing]
33
32
  spec: [technical-writing]
34
33
  prioritization: [problem-solving, task-planning]
34
+ user: [problem-solving]
35
+ customer: [problem-solving]
36
+ research: [problem-solving]
35
37
 
36
38
  # v5.0.11: Removed temperature/maxTokens - let provider CLIs use optimized defaults
37
39
  # v5.0.12: Coordinators delegate strategic work (maxDelegationDepth: 1)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defai.digital/automatosx",
3
- "version": "5.2.0",
3
+ "version": "5.2.2",
4
4
  "description": "AI Agent Orchestration Platform",
5
5
  "type": "module",
6
6
  "bin": {
@@ -23,13 +23,15 @@
23
23
  "prepublishOnly": "npm run typecheck && npm run test:all && npm run build",
24
24
  "prepack": "npm run build",
25
25
  "postpack": "echo '✅ Package created successfully'",
26
- "version": "node scripts/sync-version.js && git add version.json",
26
+ "version": "node tools/sync-version.js && git add version.json",
27
27
  "version:patch": "npm version patch -m 'chore: bump version to %s'",
28
28
  "version:minor": "npm version minor -m 'chore: bump version to %s'",
29
29
  "version:major": "npm version major -m 'chore: bump version to %s'",
30
30
  "version:beta": "npm version prerelease --preid=beta -m 'chore: bump version to %s'",
31
- "sync:version": "node scripts/sync-version.js",
32
- "release:check": "node scripts/check-release.js",
31
+ "sync:version": "node tools/sync-version.js",
32
+ "sync:all-versions": "node tools/sync-all-versions.js",
33
+ "prerelease": "npm run sync:all-versions && npm run typecheck && npm run test:all",
34
+ "release:check": "node tools/check-release.js",
33
35
  "prototype:path": "tsx tmp/phase0-prototypes/03-path-resolution-poc.ts",
34
36
  "prototype:sqlite": "tsx tmp/phase0-prototypes/01-sqlite-vec-poc.ts",
35
37
  "prototype:ts": "tsx tmp/phase0-prototypes/02-typescript-migration-poc.ts",
package/version.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "5.2.0",
3
- "releaseDate": "2025-10-12",
2
+ "version": "5.2.2",
3
+ "releaseDate": "2025-10-13",
4
4
  "codename": "Code Quality Improvements",
5
5
  "phase": "Phase 2.1 Complete"
6
6
  }