@stackwright-pro/mcp 0.2.0-alpha.111 → 0.2.0-alpha.112

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.
@@ -121,6 +121,23 @@ var PHASE_ARTIFACT = {
121
121
  geo: "geo-manifest.json",
122
122
  qa: "qa-findings.json"
123
123
  };
124
+ var PhaseStatusSchema = z6.object({
125
+ status: z6.enum(["pending", "running", "completed", "skipped", "failed"]).default("pending"),
126
+ questionsCollected: z6.boolean().default(false),
127
+ answered: z6.boolean().default(false),
128
+ executed: z6.boolean().default(false),
129
+ artifactWritten: z6.boolean().default(false),
130
+ retryCount: z6.number().default(0),
131
+ inFlight: z6.boolean().default(false)
132
+ });
133
+ var PipelineStateSchema = z6.object({
134
+ version: z6.literal("1.0"),
135
+ currentPhase: z6.string(),
136
+ status: z6.enum(["setup", "questions", "execution", "done"]),
137
+ phases: z6.record(z6.string(), PhaseStatusSchema),
138
+ startedAt: z6.string(),
139
+ updatedAt: z6.string()
140
+ });
124
141
  var PHASE_ARTIFACT_SCHEMA = {
125
142
  designer: JSON.stringify(
126
143
  {