@kernlang/agon 0.1.3 → 0.1.4
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/{chunk-H7KZ34VX.js → chunk-4LVYSUMN.js} +6 -4
- package/dist/{chunk-H7KZ34VX.js.map → chunk-4LVYSUMN.js.map} +1 -1
- package/dist/chunk-6ANHPXGZ.js +102 -0
- package/dist/chunk-6ANHPXGZ.js.map +1 -0
- package/dist/chunk-ATUT2BUQ.js +2907 -0
- package/dist/chunk-ATUT2BUQ.js.map +1 -0
- package/dist/{chunk-PFHGKBQT.js → chunk-C22VTCS6.js} +67 -10
- package/dist/chunk-C22VTCS6.js.map +1 -0
- package/dist/{chunk-XOJPAFCJ.js → chunk-FCCH7IPJ.js} +260 -543
- package/dist/chunk-FCCH7IPJ.js.map +1 -0
- package/dist/{chunk-52VTWOLH.js → chunk-O6YP55RV.js} +10 -99
- package/dist/chunk-O6YP55RV.js.map +1 -0
- package/dist/chunk-WE32YJKT.js +489 -0
- package/dist/chunk-WE32YJKT.js.map +1 -0
- package/dist/{forge-6NV4WCMB.js → forge-ES4RN7YM.js} +5 -4
- package/dist/index.js +1531 -3441
- package/dist/index.js.map +1 -1
- package/dist/{plan-mode-OSU42TOI.js → plan-mode-4XRC2ZC7.js} +6 -4
- package/dist/{src-4VOZ6GIN.js → src-WJGIOESS.js} +6 -2
- package/dist/update-HHN4PJQI.js +30 -0
- package/dist/update-HHN4PJQI.js.map +1 -0
- package/package.json +2 -2
- package/dist/chunk-52VTWOLH.js.map +0 -1
- package/dist/chunk-PFHGKBQT.js.map +0 -1
- package/dist/chunk-XOJPAFCJ.js.map +0 -1
- /package/dist/{forge-6NV4WCMB.js.map → forge-ES4RN7YM.js.map} +0 -0
- /package/dist/{plan-mode-OSU42TOI.js.map → plan-mode-4XRC2ZC7.js.map} +0 -0
- /package/dist/{src-4VOZ6GIN.js.map → src-WJGIOESS.js.map} +0 -0
|
@@ -3,13 +3,15 @@ import {
|
|
|
3
3
|
buildStepExecutors,
|
|
4
4
|
handleExitPlanMode,
|
|
5
5
|
handleProposePlan
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-O6YP55RV.js";
|
|
7
|
+
import "./chunk-6ANHPXGZ.js";
|
|
8
|
+
import "./chunk-FCCH7IPJ.js";
|
|
9
|
+
import "./chunk-WE32YJKT.js";
|
|
10
|
+
import "./chunk-C22VTCS6.js";
|
|
9
11
|
import "./chunk-5QMVQPHY.js";
|
|
10
12
|
export {
|
|
11
13
|
buildStepExecutors,
|
|
12
14
|
handleExitPlanMode,
|
|
13
15
|
handleProposePlan
|
|
14
16
|
};
|
|
15
|
-
//# sourceMappingURL=plan-mode-
|
|
17
|
+
//# sourceMappingURL=plan-mode-4XRC2ZC7.js.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
AGON_HOME,
|
|
4
|
+
AGON_MODE_NAMES,
|
|
4
5
|
AgentSession,
|
|
5
6
|
AgentTeam,
|
|
6
7
|
AgonError,
|
|
@@ -225,6 +226,7 @@ import {
|
|
|
225
226
|
gitDiffStat,
|
|
226
227
|
gitStatusShort,
|
|
227
228
|
gitTruncatedDiff,
|
|
229
|
+
hasProjectBrief,
|
|
228
230
|
headChanged,
|
|
229
231
|
headSha,
|
|
230
232
|
hooksFailed,
|
|
@@ -408,7 +410,7 @@ import {
|
|
|
408
410
|
worktreeRemoveBestEffort,
|
|
409
411
|
writeProvenanceReport,
|
|
410
412
|
writeRunStatus
|
|
411
|
-
} from "./chunk-
|
|
413
|
+
} from "./chunk-C22VTCS6.js";
|
|
412
414
|
import {
|
|
413
415
|
apiDispatch,
|
|
414
416
|
apiStreamDispatch,
|
|
@@ -416,6 +418,7 @@ import {
|
|
|
416
418
|
} from "./chunk-5QMVQPHY.js";
|
|
417
419
|
export {
|
|
418
420
|
AGON_HOME,
|
|
421
|
+
AGON_MODE_NAMES,
|
|
419
422
|
AgentSession,
|
|
420
423
|
AgentTeam,
|
|
421
424
|
AgonError,
|
|
@@ -643,6 +646,7 @@ export {
|
|
|
643
646
|
gitDiffStat,
|
|
644
647
|
gitStatusShort,
|
|
645
648
|
gitTruncatedDiff,
|
|
649
|
+
hasProjectBrief,
|
|
646
650
|
headChanged,
|
|
647
651
|
headSha,
|
|
648
652
|
hooksFailed,
|
|
@@ -827,4 +831,4 @@ export {
|
|
|
827
831
|
writeProvenanceReport,
|
|
828
832
|
writeRunStatus
|
|
829
833
|
};
|
|
830
|
-
//# sourceMappingURL=src-
|
|
834
|
+
//# sourceMappingURL=src-WJGIOESS.js.map
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
DEFAULT_PACKAGE,
|
|
4
|
+
DEFAULT_TIMEOUT_MS,
|
|
5
|
+
DEFAULT_UPDATE_PACKAGE,
|
|
6
|
+
RESTART_DELAY_MS,
|
|
7
|
+
announcePhase,
|
|
8
|
+
buildNpmArgs,
|
|
9
|
+
runNpmInstall,
|
|
10
|
+
runUpdate,
|
|
11
|
+
suggestPermissionFix,
|
|
12
|
+
updateCommand
|
|
13
|
+
} from "./chunk-ATUT2BUQ.js";
|
|
14
|
+
import "./chunk-6ANHPXGZ.js";
|
|
15
|
+
import "./chunk-WE32YJKT.js";
|
|
16
|
+
import "./chunk-C22VTCS6.js";
|
|
17
|
+
import "./chunk-5QMVQPHY.js";
|
|
18
|
+
export {
|
|
19
|
+
DEFAULT_PACKAGE,
|
|
20
|
+
DEFAULT_TIMEOUT_MS,
|
|
21
|
+
DEFAULT_UPDATE_PACKAGE,
|
|
22
|
+
RESTART_DELAY_MS,
|
|
23
|
+
announcePhase,
|
|
24
|
+
buildNpmArgs,
|
|
25
|
+
runNpmInstall,
|
|
26
|
+
runUpdate,
|
|
27
|
+
suggestPermissionFix,
|
|
28
|
+
updateCommand
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=update-HHN4PJQI.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kernlang/agon",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The competitive multi-AI orchestration CLI. Engines compete in isolated git worktrees on the same task, the best test-passing solution is applied, and Glicko-2 ratings track each model over time. Modes: forge, brainstorm, synthesis, tribunal, council, campfire, think, nero, goal, conquer.",
|
|
6
6
|
"keywords": [
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@kernlang/agon-engines": "^0.1.1",
|
|
58
|
-
"@kernlang/agon-dedup": "^0.1.
|
|
58
|
+
"@kernlang/agon-dedup": "^0.1.4",
|
|
59
59
|
"@ai-sdk/anthropic": "^3.0.67",
|
|
60
60
|
"@ai-sdk/openai-compatible": "^2.0.40",
|
|
61
61
|
"@kernlang/protocol": "~3.5.7",
|