substrate-ai 0.9.0 → 0.11.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/adapter-registry-DXLMTmfD.js +0 -0
- package/dist/adapter-registry-neBZrkr3.js +4 -0
- package/dist/cli/index.js +5594 -5951
- package/dist/decisions-C0pz9Clx.js +0 -0
- package/dist/{decisions-BDLp3tJB.js → decisions-DQZW0h9X.js} +2 -1
- package/dist/dist-eNB_v7Iy.js +10205 -0
- package/dist/errors-BvyMlvCX.js +74 -0
- package/dist/experimenter-Dos3NsCg.js +3 -0
- package/dist/health-BvYILeQQ.js +6 -0
- package/dist/{health-C-VRJruD.js → health-CiDi90gC.js} +57 -1850
- package/dist/{helpers-CpMs8VZX.js → helpers-DTp3VJ2-.js} +31 -121
- package/dist/index.d.ts +709 -266
- package/dist/index.js +5 -3
- package/dist/{logger-D2fS2ccL.js → logger-KeHncl-f.js} +2 -42
- package/dist/routing-CcBOCuC9.js +0 -0
- package/dist/{routing-CD8bIci_.js → routing-HaYsjEIS.js} +2 -2
- package/dist/{run-ClxNDHbr.js → run-CAUhTR7Y.js} +594 -4249
- package/dist/run-DPZOQOvB.js +9 -0
- package/dist/{upgrade-B1S61VXJ.js → upgrade-DFGrqjGI.js} +3 -3
- package/dist/{upgrade-BK0HrKA6.js → upgrade-DYdYuuJK.js} +3 -3
- package/dist/version-manager-impl-BmOWu8ml.js +0 -0
- package/dist/version-manager-impl-CKv6I1S0.js +4 -0
- package/package.json +5 -2
- package/dist/adapter-registry-D2zdMwVu.js +0 -840
- package/dist/adapter-registry-WAyFydN5.js +0 -4
- package/dist/config-migrator-CtGelIsG.js +0 -250
- package/dist/decisions-DhAA2HG2.js +0 -397
- package/dist/experimenter-D_N_7ZF3.js +0 -503
- package/dist/git-utils-DxPx6erV.js +0 -365
- package/dist/health-DMbNP9bw.js +0 -5
- package/dist/operational-BdcdmDqS.js +0 -374
- package/dist/routing-BVrxrM6v.js +0 -832
- package/dist/run-MAQ3Wuju.js +0 -10
- package/dist/version-manager-impl-BIxOe7gZ.js +0 -372
- package/dist/version-manager-impl-RrWs-CI6.js +0 -4
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import "./health-CiDi90gC.js";
|
|
2
|
+
import "./logger-KeHncl-f.js";
|
|
3
|
+
import "./helpers-DTp3VJ2-.js";
|
|
4
|
+
import "./dist-eNB_v7Iy.js";
|
|
5
|
+
import { registerRunCommand, runRunAction } from "./run-CAUhTR7Y.js";
|
|
6
|
+
import "./routing-CcBOCuC9.js";
|
|
7
|
+
import "./decisions-C0pz9Clx.js";
|
|
8
|
+
|
|
9
|
+
export { runRunAction };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { createVersionManager } from "./
|
|
2
|
-
import { execSync, spawn } from "child_process";
|
|
1
|
+
import { createVersionManager } from "./dist-eNB_v7Iy.js";
|
|
3
2
|
import * as readline from "readline";
|
|
3
|
+
import { execSync, spawn } from "child_process";
|
|
4
4
|
|
|
5
5
|
//#region src/cli/commands/upgrade.ts
|
|
6
6
|
/**
|
|
@@ -123,4 +123,4 @@ function registerUpgradeCommand(program) {
|
|
|
123
123
|
|
|
124
124
|
//#endregion
|
|
125
125
|
export { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand };
|
|
126
|
-
//# sourceMappingURL=upgrade-
|
|
126
|
+
//# sourceMappingURL=upgrade-DFGrqjGI.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "./
|
|
2
|
-
import "./version-manager-impl-
|
|
3
|
-
import { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand } from "./upgrade-
|
|
1
|
+
import "./dist-eNB_v7Iy.js";
|
|
2
|
+
import "./version-manager-impl-BmOWu8ml.js";
|
|
3
|
+
import { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand } from "./upgrade-DFGrqjGI.js";
|
|
4
4
|
|
|
5
5
|
export { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand };
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "substrate-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Substrate — multi-agent orchestration daemon for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"lint:fix": "eslint src test --fix",
|
|
62
62
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
63
63
|
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
64
|
-
"typecheck": "tsc --noEmit
|
|
64
|
+
"typecheck": "tsc --noEmit",
|
|
65
65
|
"typecheck:gate": "tsc --noEmit -p tsconfig.typecheck.json",
|
|
66
66
|
"clean": "rm -rf dist",
|
|
67
67
|
"substrate:dev": "node dist/cli/index.js"
|
|
@@ -83,6 +83,8 @@
|
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@eslint/js": "^9.17.0",
|
|
86
|
+
"@ts-graphviz/ast": "^3.0.6",
|
|
87
|
+
"@ts-graphviz/common": "^3.0.5",
|
|
86
88
|
"@types/js-yaml": "^4.0.9",
|
|
87
89
|
"@types/node": "^22.10.0",
|
|
88
90
|
"@types/semver": "^7.5.8",
|
|
@@ -94,6 +96,7 @@
|
|
|
94
96
|
"eslint": "^9.17.0",
|
|
95
97
|
"pino-pretty": "^13.0.0",
|
|
96
98
|
"prettier": "^3.4.2",
|
|
99
|
+
"ts-graphviz": "^3.0.7",
|
|
97
100
|
"tsdown": "^0.9.0",
|
|
98
101
|
"tsx": "^4.19.2",
|
|
99
102
|
"typescript": "^5.9.0",
|