opencode-swarm 6.53.2 → 6.53.5
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/index.js +386 -50
- package/dist/commands/close.d.ts +6 -2
- package/dist/commands/full-auto-config-guard.test.d.ts +7 -0
- package/dist/commands/full-auto-discoverability.test.d.ts +8 -0
- package/dist/commands/registry.d.ts +10 -0
- package/dist/hooks/full-auto-intercept.d.ts +1 -1
- package/dist/index.js +474 -73
- package/dist/services/handoff-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tests for Full-Auto command discoverability fixes.
|
|
3
|
+
*
|
|
4
|
+
* Verifies that TUI shortcuts, error messages, and registry entries
|
|
5
|
+
* all use the dashed form (/swarm-full-auto) while maintaining backward
|
|
6
|
+
* compatibility with the spaced form (/swarm full-auto).
|
|
7
|
+
*/
|
|
8
|
+
export {};
|
|
@@ -39,6 +39,11 @@ export declare const COMMAND_REGISTRY: {
|
|
|
39
39
|
readonly description: "Run config doctor checks";
|
|
40
40
|
readonly subcommandOf: "config";
|
|
41
41
|
};
|
|
42
|
+
readonly 'config-doctor': {
|
|
43
|
+
readonly handler: (ctx: CommandContext) => Promise<string>;
|
|
44
|
+
readonly description: "Run config doctor checks";
|
|
45
|
+
readonly subcommandOf: "config";
|
|
46
|
+
};
|
|
42
47
|
readonly 'doctor tools': {
|
|
43
48
|
readonly handler: (ctx: CommandContext) => Promise<string>;
|
|
44
49
|
readonly description: "Run tool registration coherence check";
|
|
@@ -72,6 +77,11 @@ export declare const COMMAND_REGISTRY: {
|
|
|
72
77
|
readonly description: "Generate evidence summary with completion ratio and blockers";
|
|
73
78
|
readonly subcommandOf: "evidence";
|
|
74
79
|
};
|
|
80
|
+
readonly 'evidence-summary': {
|
|
81
|
+
readonly handler: (ctx: CommandContext) => Promise<string>;
|
|
82
|
+
readonly description: "Generate evidence summary with completion ratio and blockers";
|
|
83
|
+
readonly subcommandOf: "evidence";
|
|
84
|
+
};
|
|
75
85
|
readonly archive: {
|
|
76
86
|
readonly handler: (ctx: CommandContext) => Promise<string>;
|
|
77
87
|
readonly description: "Archive old evidence bundles [--dry-run]";
|
|
@@ -51,7 +51,7 @@ export declare function parseCriticResponse(rawResponse: string): CriticDispatch
|
|
|
51
51
|
* - ESCALATE_TO_HUMAN: triggers escalation (handled separately)
|
|
52
52
|
* - APPROVED / NEEDS_REVISION / REJECTED / BLOCKED / REPHRASE: injects verdict message
|
|
53
53
|
*/
|
|
54
|
-
export declare function injectVerdictIntoMessages(messages: MessageWithParts[], architectIndex: number, criticResult: CriticDispatchResult,
|
|
54
|
+
export declare function injectVerdictIntoMessages(messages: MessageWithParts[], architectIndex: number, criticResult: CriticDispatchResult, escalationType: 'phase_completion' | 'question', oversightAgentName: string): void;
|
|
55
55
|
/**
|
|
56
56
|
* Handles critic dispatch and writes the auto_oversight event after the critic responds.
|
|
57
57
|
*
|