opencode-swarm 7.92.0 → 7.93.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/{guardrail-explain-ygfy1qg9.js → guardrail-explain-656752j3.js} +2 -2
- package/dist/cli/{index-dy1qpyh3.js → index-mf31xkvd.js} +913 -573
- package/dist/cli/{index-zzza86z4.js → index-rbx55am1.js} +1 -1
- package/dist/cli/{index-ary5jkky.js → index-rh24fcmy.js} +2 -2
- package/dist/cli/index.js +1 -1
- package/dist/commands/close.d.ts +3 -0
- package/dist/index.js +2135 -1791
- package/dist/services/session-reflection.d.ts +86 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
handleGuardrailExplain
|
|
4
|
-
} from "./index-
|
|
4
|
+
} from "./index-rbx55am1.js";
|
|
5
5
|
import {
|
|
6
6
|
handleGuardrailLog
|
|
7
7
|
} from "./index-yykcmn6m.js";
|
|
@@ -78,7 +78,7 @@ import {
|
|
|
78
78
|
handleWriteRetroCommand,
|
|
79
79
|
normalizeSwarmCommandInput,
|
|
80
80
|
resolveCommand
|
|
81
|
-
} from "./index-
|
|
81
|
+
} from "./index-mf31xkvd.js";
|
|
82
82
|
import"./index-ne4g3mk1.js";
|
|
83
83
|
import"./index-1x2608ga.js";
|
|
84
84
|
import"./index-5hrexm02.js";
|
package/dist/cli/index.js
CHANGED
package/dist/commands/close.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { runCuratorPostMortem } from '../hooks/curator-postmortem';
|
|
|
7
7
|
import { checkHivePromotions } from '../hooks/hive-promoter';
|
|
8
8
|
import { curateAndStoreSwarm } from '../hooks/knowledge-curator';
|
|
9
9
|
import { closePlanTerminalState } from '../plan/manager';
|
|
10
|
+
import { type SessionReflectionResult } from '../services/session-reflection';
|
|
10
11
|
import { resetSwarmStatePreservingSingletons } from '../state';
|
|
11
12
|
interface PlanPhase {
|
|
12
13
|
id: number;
|
|
@@ -66,6 +67,7 @@ export interface CloseStageContext {
|
|
|
66
67
|
knowledgeSkillHint: string;
|
|
67
68
|
skillReviewSummary: string;
|
|
68
69
|
postMortemSummary: string;
|
|
70
|
+
sessionReflection: SessionReflectionResult | undefined;
|
|
69
71
|
hivePromoted: number;
|
|
70
72
|
sessionKnowledgeCreated: number;
|
|
71
73
|
fallbackKnowledgeCreated: number;
|
|
@@ -175,6 +177,7 @@ export declare const _internals: {
|
|
|
175
177
|
ACTIVE_STATE_DIRS_TO_CLEAN: string[];
|
|
176
178
|
countSessionKnowledgeEntries: typeof countSessionKnowledgeEntries;
|
|
177
179
|
CLOSE_SKILL_REVIEW_TIMEOUT_MS: number;
|
|
180
|
+
CLOSE_REFLECTION_TIMEOUT_MS: number;
|
|
178
181
|
guaranteeAllPlansComplete: typeof guaranteeAllPlansComplete;
|
|
179
182
|
getGitRepositoryStatus: typeof getGitRepositoryStatus;
|
|
180
183
|
resetToMainAfterMerge: typeof resetToMainAfterMerge;
|