@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.
- package/CHANGELOG.md +213 -1
- package/README.md +1 -1
- package/dist/index.js +30 -27
- package/dist/index.js.map +1 -1
- package/dist/version.json +2 -2
- package/examples/AGENTS_INFO.md +30 -14
- package/examples/abilities/coverage/base.css +224 -0
- package/examples/abilities/coverage/block-navigation.js +87 -0
- package/examples/abilities/coverage/coverage-final.json +1 -0
- package/examples/abilities/coverage/favicon.png +0 -0
- package/examples/abilities/coverage/index.html +101 -0
- package/examples/abilities/coverage/prettify.css +1 -0
- package/examples/abilities/coverage/prettify.js +2 -0
- package/examples/abilities/coverage/sort-arrow-sprite.png +0 -0
- package/examples/abilities/coverage/sorter.js +210 -0
- package/examples/agents/ceo.yaml +10 -8
- package/examples/agents/cto.yaml +11 -7
- package/examples/agents/data-scientist.yaml +83 -0
- package/examples/agents/data.yaml +23 -24
- package/examples/agents/design.yaml +13 -13
- package/examples/agents/fullstack.yaml +84 -0
- package/examples/agents/mobile.yaml +87 -0
- package/examples/agents/product.yaml +5 -3
- package/package.json +6 -4
- package/version.json +2 -2
|
@@ -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:
|
|
13
|
+
# Abilities (v5.0.12: Product strategy and user-focused abilities)
|
|
14
14
|
abilities:
|
|
15
|
-
- problem-solving #
|
|
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.
|
|
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
|
|
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
|
|
32
|
-
"
|
|
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