opencode-swarm 6.3.0 → 6.6.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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="https://img.shields.io/badge/version-6.3.0-blue" alt="Version">
2
+ <img src="https://img.shields.io/badge/version-6.6.1-blue" alt="Version">
3
3
  <img src="https://img.shields.io/badge/license-MIT-green" alt="License">
4
4
  <img src="https://img.shields.io/badge/opencode-plugin-purple" alt="OpenCode Plugin">
5
5
  <img src="https://img.shields.io/badge/agents-9-orange" alt="Agents">
@@ -49,7 +49,7 @@ OpenCode Swarm:
49
49
  ├── Architect writes .swarm/plan.md: 3 phases, 9 tasks, acceptance criteria per task
50
50
  ├── @critic reviews the plan → APPROVED
51
51
  ├── @coder implements Task 2.2 (one task, full context, nothing else)
52
- ├── diff tool → imports tool → lint fix → secretscan → @reviewer → @test_engineer
52
+ ├── diff tool → imports tool → lint fix → lint check → secretscan → @reviewer → @test_engineer
53
53
  ├── All gates pass → plan.md updated → Task 2.2: [x]
54
54
  └── Result: working code, documented decisions, resumable project, evidence trail
55
55
  ```
@@ -483,6 +483,8 @@ Five tools that improve planning quality and post-phase validation:
483
483
  - [Architecture Deep Dive](docs/architecture.md)
484
484
  - [Design Rationale](docs/design-rationale.md)
485
485
  - [Installation Guide](docs/installation.md)
486
+ - [Linux + Native Windows + Docker Desktop Install Guide](docs/installation-linux-docker.md)
487
+ - [LLM Operator Install Guide](docs/installation-llm-operator.md)
486
488
 
487
489
  ---
488
490
 
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Adversarial Security Tests for Test Engineer Agent (Task 7.1)
3
+ * Focus: Prompt injection, unsafe execution bypass, secret leakage
4
+ */
5
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -240,6 +240,11 @@ export declare function stripKnownSwarmPrefix(name: string): string;
240
240
  * @returns The effective guardrails configuration for the agent
241
241
  */
242
242
  export declare function resolveGuardrailsConfig(base: GuardrailsConfig, agentName?: string): GuardrailsConfig;
243
+ export declare const CheckpointConfigSchema: z.ZodObject<{
244
+ enabled: z.ZodDefault<z.ZodBoolean>;
245
+ auto_checkpoint_threshold: z.ZodDefault<z.ZodNumber>;
246
+ }, z.core.$strip>;
247
+ export type CheckpointConfig = z.infer<typeof CheckpointConfigSchema>;
243
248
  export declare const PluginConfigSchema: z.ZodObject<{
244
249
  agents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
245
250
  model: z.ZodOptional<z.ZodString>;
@@ -371,6 +376,10 @@ export declare const PluginConfigSchema: z.ZodObject<{
371
376
  exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
372
377
  extensions: z.ZodDefault<z.ZodArray<z.ZodString>>;
373
378
  }, z.core.$strip>>;
379
+ checkpoint: z.ZodOptional<z.ZodObject<{
380
+ enabled: z.ZodDefault<z.ZodBoolean>;
381
+ auto_checkpoint_threshold: z.ZodDefault<z.ZodNumber>;
382
+ }, z.core.$strip>>;
374
383
  }, z.core.$strip>;
375
384
  export type PluginConfig = z.infer<typeof PluginConfigSchema>;
376
385
  export type { AgentName, PipelineAgentName, QAAgentName, } from './constants';