opencode-swarm 7.33.0 → 7.33.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 -0
- package/dist/cli/index.js +1047 -516
- package/dist/evidence/gate-bridge.d.ts +15 -0
- package/dist/index.js +403 -155
- package/dist/plan/ledger.d.ts +9 -0
- package/dist/plan/manager.d.ts +28 -2
- package/dist/services/evidence-summary-service.d.ts +5 -0
- package/dist/telemetry.d.ts +1 -1
- package/dist/tools/save-plan.d.ts +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Evidence } from '../config/evidence-schema';
|
|
2
|
+
import { type TaskEvidence } from '../gate-evidence.js';
|
|
3
|
+
export interface DurableGateEvidenceStatus {
|
|
4
|
+
isComplete: boolean;
|
|
5
|
+
missingGates: string[];
|
|
6
|
+
evidenceExists: boolean;
|
|
7
|
+
invalid: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare function readDurableGateEvidence(directory: string, taskId: string): Promise<TaskEvidence | null>;
|
|
10
|
+
export declare function hasCompleteDurableGateEvidence(evidence: TaskEvidence | null | undefined): boolean;
|
|
11
|
+
export declare function getDurableGateEvidenceStatus(evidence: TaskEvidence | null | undefined): DurableGateEvidenceStatus;
|
|
12
|
+
export declare function getDurableGateEvidenceStatusForTask(directory: string, taskId: string): Promise<DurableGateEvidenceStatus>;
|
|
13
|
+
export declare function hasCompleteDurableGateEvidenceForTask(directory: string, taskId: string): Promise<boolean>;
|
|
14
|
+
export declare function mergeDurableGateEntriesFromEvidence(taskId: string, entries: Evidence[], evidence: TaskEvidence | null | undefined): Evidence[];
|
|
15
|
+
export declare function mergeDurableGateEntries(directory: string, taskId: string, entries: Evidence[]): Promise<Evidence[]>;
|