opencode-swarm 6.3.0 → 6.5.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/README.md +1 -1
- package/dist/agents/test-engineer.adversarial.test.d.ts +5 -0
- package/dist/agents/test-engineer.security.test.d.ts +1 -0
- package/dist/config/schema.d.ts +9 -0
- package/dist/index.js +3012 -88
- package/dist/tools/checkpoint.d.ts +2 -0
- package/dist/tools/complexity-hotspots.d.ts +2 -0
- package/dist/tools/evidence-check.d.ts +2 -0
- package/dist/tools/index.d.ts +8 -0
- package/dist/tools/pkg-audit.d.ts +2 -0
- package/dist/tools/schema-drift.d.ts +2 -0
- package/dist/tools/symbols.d.ts +2 -0
- package/dist/tools/test-runner.d.ts +48 -0
- package/dist/tools/test-runner.security-adversarial.test.d.ts +5 -0
- package/dist/tools/todo-extract.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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
|
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/config/schema.d.ts
CHANGED
|
@@ -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';
|