opencode-swarm 7.29.4 → 7.31.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/agents/architect.d.ts +1 -1
- package/dist/cli/index.js +471 -490
- package/dist/config/constants.d.ts +2 -0
- package/dist/config/index.d.ts +2 -2
- package/dist/config/schema.d.ts +35 -0
- package/dist/hooks/knowledge-store.d.ts +12 -0
- package/dist/index.js +2240 -1056
- package/dist/memory/config.d.ts +22 -0
- package/dist/memory/errors.d.ts +7 -0
- package/dist/memory/gateway.d.ts +51 -0
- package/dist/memory/index.d.ts +11 -0
- package/dist/memory/local-jsonl-provider.d.ts +26 -0
- package/dist/memory/prompt-block.d.ts +13 -0
- package/dist/memory/provider.d.ts +17 -0
- package/dist/memory/redaction.d.ts +7 -0
- package/dist/memory/schema.d.ts +256 -0
- package/dist/memory/scoring.d.ts +5 -0
- package/dist/memory/types.d.ts +96 -0
- package/dist/tools/index.d.ts +3 -1
- package/dist/tools/swarm-command.d.ts +1 -0
- package/dist/tools/swarm-memory-propose.d.ts +8 -0
- package/dist/tools/swarm-memory-recall.d.ts +8 -0
- package/dist/tools/tool-names.d.ts +1 -1
- package/package.json +1 -1
|
@@ -55,4 +55,4 @@ export declare function buildCouncilWorkflow(council?: CouncilWorkflowConfig): s
|
|
|
55
55
|
* BRAINSTORM, and PLAN inline paths stay in lockstep.
|
|
56
56
|
*/
|
|
57
57
|
export declare function buildQaGateSelectionDialogue(modeLabel: 'BRAINSTORM' | 'SPECIFY' | 'PLAN'): string;
|
|
58
|
-
export declare function createArchitectAgent(model: string, customPrompt?: string, customAppendPrompt?: string, adversarialTesting?: AdversarialTestingConfig, council?: CouncilWorkflowConfig, uiReview?: UIReviewConfig): AgentDefinition;
|
|
58
|
+
export declare function createArchitectAgent(model: string, customPrompt?: string, customAppendPrompt?: string, adversarialTesting?: AdversarialTestingConfig, council?: CouncilWorkflowConfig, uiReview?: UIReviewConfig, memoryEnabled?: boolean): AgentDefinition;
|