@defai.digital/automatosx 5.3.4 → 5.3.7
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 +237 -0
- package/README.md +45 -7
- package/dist/index.js +98 -6
- package/dist/index.js.map +1 -1
- package/dist/version.json +2 -2
- package/examples/AGENTS_INFO.md +364 -377
- package/package.json +2 -5
- package/version.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defai.digital/automatosx",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.7",
|
|
4
4
|
"description": "AI Agent Orchestration Platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -32,10 +32,7 @@
|
|
|
32
32
|
"sync:all-versions": "node tools/sync-all-versions.js",
|
|
33
33
|
"prerelease": "npm run sync:all-versions && npm run typecheck && npm run test:all",
|
|
34
34
|
"release:check": "node tools/check-release.js",
|
|
35
|
-
"
|
|
36
|
-
"prototype:sqlite": "tsx tmp/phase0-prototypes/01-sqlite-vec-poc.ts",
|
|
37
|
-
"prototype:ts": "tsx tmp/phase0-prototypes/02-typescript-migration-poc.ts",
|
|
38
|
-
"prototype:provider": "tsx tmp/phase0-prototypes/04-provider-abstraction-poc.ts"
|
|
35
|
+
"tools:check": "bash -c 'echo \"🔍 Checking shell scripts syntax...\"; for f in tools/*.sh; do echo \" Checking $f...\"; bash -n \"$f\" && echo \" ✓ $f OK\" || echo \" ✗ $f FAILED\"; done; echo \"✅ All tools checked\"'"
|
|
39
36
|
},
|
|
40
37
|
"devDependencies": {
|
|
41
38
|
"@types/better-sqlite3": "^7.6.13",
|
package/version.json
CHANGED