opencode-swarm 6.22.6 → 6.22.8
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/README.md +2 -0
- package/dist/agents/architect.d.ts +5 -1
- package/dist/cli/index.js +13358 -13339
- package/dist/commands/curate.d.ts +21 -0
- package/dist/commands/curate.test.d.ts +1 -0
- package/dist/commands/index.d.ts +1 -0
- package/dist/config/schema.d.ts +18 -0
- package/dist/hooks/hive-promoter.d.ts +10 -1
- package/dist/hooks/knowledge-types.d.ts +16 -0
- package/dist/index.js +2386 -2013
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/knowledge-query.d.ts +5 -0
- package/dist/tools/tool-names.d.ts +1 -1
- package/dist/tools/update-task-status.d.ts +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -354,6 +354,8 @@ If `.swarm/plan.md` already exists, the architect may enter `RESUME` and then go
|
|
|
354
354
|
|
|
355
355
|
Use `/swarm status` if you are unsure what Swarm is doing.
|
|
356
356
|
|
|
357
|
+
Release automation uses release-please and requires conventional commit prefixes such as `fix:` or `feat:` on changes merged to `main`.
|
|
358
|
+
|
|
357
359
|
</details>
|
|
358
360
|
|
|
359
361
|
<details>
|
|
@@ -4,4 +4,8 @@ export interface AgentDefinition {
|
|
|
4
4
|
description?: string;
|
|
5
5
|
config: AgentConfig;
|
|
6
6
|
}
|
|
7
|
-
export
|
|
7
|
+
export interface AdversarialTestingConfig {
|
|
8
|
+
enabled: boolean;
|
|
9
|
+
scope: 'all' | 'security-only';
|
|
10
|
+
}
|
|
11
|
+
export declare function createArchitectAgent(model: string, customPrompt?: string, customAppendPrompt?: string, adversarialTesting?: AdversarialTestingConfig): AgentDefinition;
|