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 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 declare function createArchitectAgent(model: string, customPrompt?: string, customAppendPrompt?: string): AgentDefinition;
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;