opencode-swarm 6.71.1 → 6.72.1
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/agents/architect.d.ts +11 -0
- package/dist/cli/index.js +238 -227
- package/dist/config/schema.d.ts +6 -0
- package/dist/hooks/knowledge-store.d.ts +10 -1
- package/dist/hooks/knowledge-types.d.ts +9 -1
- package/dist/index.js +671 -373
- package/dist/state.d.ts +27 -1
- package/dist/tools/convene-council.d.ts +1 -1
- package/package.json +1 -1
|
@@ -25,4 +25,15 @@ export interface CouncilWorkflowConfig {
|
|
|
25
25
|
* council feature is off or the config key is absent.
|
|
26
26
|
*/
|
|
27
27
|
export declare function buildCouncilWorkflow(council?: CouncilWorkflowConfig): string;
|
|
28
|
+
/**
|
|
29
|
+
* Build the user-facing QA gate selection dialogue, used by MODE: SPECIFY
|
|
30
|
+
* (step 5b), MODE: BRAINSTORM (Phase 6), and MODE: PLAN (post-`save_plan`
|
|
31
|
+
* inline path). The dialogue is dialogue-only — persistence happens during
|
|
32
|
+
* MODE: PLAN after `save_plan` creates `plan.json`.
|
|
33
|
+
*
|
|
34
|
+
* The lead-in sentence varies per mode, but the body (seven gates with
|
|
35
|
+
* defaults, one-shot accept-or-customize prompt) is shared so SPECIFY,
|
|
36
|
+
* BRAINSTORM, and PLAN inline paths stay in lockstep.
|
|
37
|
+
*/
|
|
38
|
+
export declare function buildQaGateSelectionDialogue(modeLabel: 'BRAINSTORM' | 'SPECIFY' | 'PLAN'): string;
|
|
28
39
|
export declare function createArchitectAgent(model: string, customPrompt?: string, customAppendPrompt?: string, adversarialTesting?: AdversarialTestingConfig, council?: CouncilWorkflowConfig): AgentDefinition;
|