opencode-swarm 6.38.0 → 6.40.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 +1 -1
- package/dist/cli/index.js +246 -94
- package/dist/commands/index.d.ts +1 -1
- package/dist/config/plan-schema.d.ts +2 -0
- package/dist/config/schema.d.ts +3 -2
- package/dist/index.js +1335 -921
- package/dist/services/compaction-service.d.ts +2 -2
- package/dist/session/snapshot-reader.d.ts +8 -0
- package/dist/tools/lint.d.ts +1 -2
- package/dist/tools/save-plan.d.ts +1 -0
- package/dist/tools/tool-names.d.ts +1 -1
- package/dist/utils/path-security.d.ts +26 -0
- package/package.json +4 -1
- /package/dist/commands/{write_retro.d.ts → write-retro.d.ts} +0 -0
|
@@ -91,6 +91,7 @@ export declare const PhaseSchema: z.ZodObject<{
|
|
|
91
91
|
evidence_path: z.ZodOptional<z.ZodString>;
|
|
92
92
|
blocked_reason: z.ZodOptional<z.ZodString>;
|
|
93
93
|
}, z.core.$strip>>>;
|
|
94
|
+
required_agents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
94
95
|
}, z.core.$strip>;
|
|
95
96
|
export type Phase = z.infer<typeof PhaseSchema>;
|
|
96
97
|
export declare const PlanSchema: z.ZodObject<{
|
|
@@ -129,6 +130,7 @@ export declare const PlanSchema: z.ZodObject<{
|
|
|
129
130
|
evidence_path: z.ZodOptional<z.ZodString>;
|
|
130
131
|
blocked_reason: z.ZodOptional<z.ZodString>;
|
|
131
132
|
}, z.core.$strip>>>;
|
|
133
|
+
required_agents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
132
134
|
}, z.core.$strip>>;
|
|
133
135
|
migration_status: z.ZodOptional<z.ZodEnum<{
|
|
134
136
|
native: "native";
|
package/dist/config/schema.d.ts
CHANGED
|
@@ -375,7 +375,7 @@ export type PlanCursorConfig = z.infer<typeof PlanCursorConfigSchema>;
|
|
|
375
375
|
export declare const CheckpointConfigSchema: z.ZodObject<{
|
|
376
376
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
377
377
|
auto_checkpoint_threshold: z.ZodDefault<z.ZodNumber>;
|
|
378
|
-
}, z.core.$
|
|
378
|
+
}, z.core.$strict>;
|
|
379
379
|
export type CheckpointConfig = z.infer<typeof CheckpointConfigSchema>;
|
|
380
380
|
export declare const AutomationModeSchema: z.ZodEnum<{
|
|
381
381
|
auto: "auto";
|
|
@@ -699,7 +699,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
699
699
|
checkpoint: z.ZodOptional<z.ZodObject<{
|
|
700
700
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
701
701
|
auto_checkpoint_threshold: z.ZodDefault<z.ZodNumber>;
|
|
702
|
-
}, z.core.$
|
|
702
|
+
}, z.core.$strict>>;
|
|
703
703
|
automation: z.ZodOptional<z.ZodType<{
|
|
704
704
|
mode: "auto" | "manual" | "hybrid";
|
|
705
705
|
capabilities: {
|
|
@@ -785,6 +785,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
785
785
|
emergencyThreshold: z.ZodDefault<z.ZodNumber>;
|
|
786
786
|
preserveLastNTurns: z.ZodDefault<z.ZodNumber>;
|
|
787
787
|
}, z.core.$strip>>;
|
|
788
|
+
turbo_mode: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
788
789
|
}, z.core.$strip>;
|
|
789
790
|
export type PluginConfig = z.infer<typeof PluginConfigSchema>;
|
|
790
791
|
export type { AgentName, PipelineAgentName, QAAgentName, } from './constants';
|