MCPcopy
hub / github.com/rpamis/comet / ChangeStatus

Interface ChangeStatus

src/commands/status.ts:7–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5type CometState = Record<string, string>;
6
7interface ChangeStatus {
8 name: string;
9 workflow: string;
10 phase: string;
11 buildMode: string;
12 isolation: string;
13 verifyMode: string;
14 verifyResult: string;
15 designDoc: string | null;
16 plan: string | null;
17 tasksCompleted: number;
18 tasksTotal: number;
19 nextCommand: string | null;
20}
21
22function getNextCommand(phase: string): string | null {
23 switch (phase) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected