@fro.bot/systematic 3.15.1 → 3.16.0
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/dist/cli.js +205 -36
- package/dist/{index-7cyxcwf5.js → index-ae6mhwth.js} +688 -160
- package/dist/index.js +42 -29
- package/dist/lib/agent-resolver.d.ts +7 -1
- package/dist/lib/capability-snapshot.d.ts +1 -1
- package/dist/lib/config-schema.d.ts +63 -1
- package/dist/lib/config.d.ts +59 -1
- package/dist/lib/pi-delegate-session.d.ts +2 -0
- package/dist/lib/pi-delegate-tool.d.ts +33 -1
- package/dist/lib/routing-resolver.d.ts +151 -0
- package/dist/pi.js +7496 -252
- package/dist/schemas/systematic-config.schema.json +1027 -185
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fro.bot/systematic",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.0",
|
|
4
4
|
"description": "Compound-engineering loops for OpenCode, Pi, and Claude Code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://fro.bot/systematic",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
36
|
"clean": "rimraf dist",
|
|
37
|
-
"build": "bun run clean && bun build src/index.ts src/cli.ts --outdir dist --target bun --splitting --external @opencode-ai/plugin --external js-yaml && bun build src/pi.ts --outdir dist --target node --external @earendil-works/pi-coding-agent --external typebox && tsc --emitDeclarationOnly",
|
|
37
|
+
"build": "bun run clean && bun build src/index.ts src/cli.ts --outdir dist --target bun --splitting --external @opencode-ai/plugin --external js-yaml && bun build src/pi.ts --outdir dist --target node --external @earendil-works/pi-coding-agent --external typebox --external jsonc-parser && tsc --emitDeclarationOnly",
|
|
38
38
|
"dev": "bun --watch src/index.ts",
|
|
39
39
|
"test": "bun test tests/unit",
|
|
40
40
|
"test:integration": "bun test tests/integration",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"@tintinweb/pi-subagents": "0.14.3",
|
|
102
102
|
"@types/bun": "latest",
|
|
103
103
|
"@types/js-yaml": "4.0.9",
|
|
104
|
-
"@types/node": "26.4.
|
|
104
|
+
"@types/node": "26.4.1",
|
|
105
105
|
"agent-browser": "0.34.0",
|
|
106
106
|
"ajv": "8.20.0",
|
|
107
107
|
"ajv-formats": "3.0.1",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"rimraf": "6.1.3",
|
|
111
111
|
"semantic-release": "25.0.9",
|
|
112
112
|
"semantic-release-export-data": "1.2.0",
|
|
113
|
-
"typebox": "1.3.
|
|
113
|
+
"typebox": "1.3.25",
|
|
114
114
|
"typescript": "7.0.2"
|
|
115
115
|
},
|
|
116
116
|
"dependencies": {
|