@cluesmith/codev 2.0.0-rc.7 → 2.0.0-rc.9

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.
Files changed (126) hide show
  1. package/bin/porch.js +6 -35
  2. package/dist/agent-farm/cli.d.ts.map +1 -1
  3. package/dist/agent-farm/cli.js +0 -14
  4. package/dist/agent-farm/cli.js.map +1 -1
  5. package/dist/agent-farm/commands/kickoff.d.ts.map +1 -1
  6. package/dist/agent-farm/commands/kickoff.js +22 -86
  7. package/dist/agent-farm/commands/kickoff.js.map +1 -1
  8. package/dist/agent-farm/commands/spawn.d.ts.map +1 -1
  9. package/dist/agent-farm/commands/spawn.js +30 -54
  10. package/dist/agent-farm/commands/spawn.js.map +1 -1
  11. package/dist/agent-farm/commands/start.d.ts.map +1 -1
  12. package/dist/agent-farm/commands/start.js +8 -50
  13. package/dist/agent-farm/commands/start.js.map +1 -1
  14. package/dist/agent-farm/servers/dashboard-server.js +0 -14
  15. package/dist/agent-farm/servers/dashboard-server.js.map +1 -1
  16. package/dist/agent-farm/state.d.ts +0 -10
  17. package/dist/agent-farm/state.d.ts.map +1 -1
  18. package/dist/agent-farm/state.js +0 -24
  19. package/dist/agent-farm/state.js.map +1 -1
  20. package/dist/cli.d.ts.map +1 -1
  21. package/dist/cli.js +5 -17
  22. package/dist/cli.js.map +1 -1
  23. package/dist/commands/adopt.d.ts.map +1 -1
  24. package/dist/commands/adopt.js +17 -1
  25. package/dist/commands/adopt.js.map +1 -1
  26. package/dist/commands/consult/index.d.ts.map +1 -1
  27. package/dist/commands/consult/index.js +2 -1
  28. package/dist/commands/consult/index.js.map +1 -1
  29. package/dist/commands/init.d.ts.map +1 -1
  30. package/dist/commands/init.js +17 -1
  31. package/dist/commands/init.js.map +1 -1
  32. package/dist/commands/porch/checks.d.ts +16 -29
  33. package/dist/commands/porch/checks.d.ts.map +1 -1
  34. package/dist/commands/porch/checks.js +90 -144
  35. package/dist/commands/porch/checks.js.map +1 -1
  36. package/dist/commands/porch/claude.d.ts +29 -0
  37. package/dist/commands/porch/claude.d.ts.map +1 -0
  38. package/dist/commands/porch/claude.js +79 -0
  39. package/dist/commands/porch/claude.js.map +1 -0
  40. package/dist/commands/porch/index.d.ts +21 -43
  41. package/dist/commands/porch/index.d.ts.map +1 -1
  42. package/dist/commands/porch/index.js +429 -1121
  43. package/dist/commands/porch/index.js.map +1 -1
  44. package/dist/commands/porch/plan.d.ts +60 -0
  45. package/dist/commands/porch/plan.d.ts.map +1 -0
  46. package/dist/commands/porch/plan.js +162 -0
  47. package/dist/commands/porch/plan.js.map +1 -0
  48. package/dist/commands/porch/prompts.d.ts +19 -0
  49. package/dist/commands/porch/prompts.d.ts.map +1 -0
  50. package/dist/commands/porch/prompts.js +259 -0
  51. package/dist/commands/porch/prompts.js.map +1 -0
  52. package/dist/commands/porch/protocol-loader.d.ts.map +1 -1
  53. package/dist/commands/porch/protocol-loader.js +9 -0
  54. package/dist/commands/porch/protocol-loader.js.map +1 -1
  55. package/dist/commands/porch/protocol.d.ts +57 -0
  56. package/dist/commands/porch/protocol.d.ts.map +1 -0
  57. package/dist/commands/porch/protocol.js +250 -0
  58. package/dist/commands/porch/protocol.js.map +1 -0
  59. package/dist/commands/porch/repl.d.ts +33 -0
  60. package/dist/commands/porch/repl.d.ts.map +1 -0
  61. package/dist/commands/porch/repl.js +206 -0
  62. package/dist/commands/porch/repl.js.map +1 -0
  63. package/dist/commands/porch/run.d.ts +15 -0
  64. package/dist/commands/porch/run.d.ts.map +1 -0
  65. package/dist/commands/porch/run.js +551 -0
  66. package/dist/commands/porch/run.js.map +1 -0
  67. package/dist/commands/porch/signal-parser.d.ts +17 -3
  68. package/dist/commands/porch/signal-parser.d.ts.map +1 -1
  69. package/dist/commands/porch/signal-parser.js +71 -20
  70. package/dist/commands/porch/signal-parser.js.map +1 -1
  71. package/dist/commands/porch/signals.d.ts +35 -0
  72. package/dist/commands/porch/signals.d.ts.map +1 -0
  73. package/dist/commands/porch/signals.js +76 -0
  74. package/dist/commands/porch/signals.js.map +1 -0
  75. package/dist/commands/porch/state.d.ts +16 -114
  76. package/dist/commands/porch/state.d.ts.map +1 -1
  77. package/dist/commands/porch/state.js +62 -709
  78. package/dist/commands/porch/state.js.map +1 -1
  79. package/dist/commands/porch/types.d.ts +65 -173
  80. package/dist/commands/porch/types.d.ts.map +1 -1
  81. package/dist/commands/porch/types.js +2 -1
  82. package/dist/commands/porch/types.js.map +1 -1
  83. package/dist/commands/porch2/checks.d.ts +29 -0
  84. package/dist/commands/porch2/checks.d.ts.map +1 -0
  85. package/dist/commands/porch2/checks.js +141 -0
  86. package/dist/commands/porch2/checks.js.map +1 -0
  87. package/dist/commands/porch2/index.d.ts +38 -0
  88. package/dist/commands/porch2/index.d.ts.map +1 -0
  89. package/dist/commands/porch2/index.js +483 -0
  90. package/dist/commands/porch2/index.js.map +1 -0
  91. package/dist/commands/porch2/plan.d.ts +70 -0
  92. package/dist/commands/porch2/plan.d.ts.map +1 -0
  93. package/dist/commands/porch2/plan.js +227 -0
  94. package/dist/commands/porch2/plan.js.map +1 -0
  95. package/dist/commands/porch2/protocol.d.ts +37 -0
  96. package/dist/commands/porch2/protocol.d.ts.map +1 -0
  97. package/dist/commands/porch2/protocol.js +183 -0
  98. package/dist/commands/porch2/protocol.js.map +1 -0
  99. package/dist/commands/porch2/state.d.ts +35 -0
  100. package/dist/commands/porch2/state.d.ts.map +1 -0
  101. package/dist/commands/porch2/state.js +124 -0
  102. package/dist/commands/porch2/state.js.map +1 -0
  103. package/dist/commands/porch2/types.d.ts +79 -0
  104. package/dist/commands/porch2/types.d.ts.map +1 -0
  105. package/dist/commands/porch2/types.js +8 -0
  106. package/dist/commands/porch2/types.js.map +1 -0
  107. package/dist/commands/update.d.ts.map +1 -1
  108. package/dist/commands/update.js +19 -0
  109. package/dist/commands/update.js.map +1 -1
  110. package/dist/lib/scaffold.d.ts +24 -0
  111. package/dist/lib/scaffold.d.ts.map +1 -1
  112. package/dist/lib/scaffold.js +78 -0
  113. package/dist/lib/scaffold.js.map +1 -1
  114. package/package.json +3 -1
  115. package/skeleton/protocols/spider/prompts/specify.md +9 -2
  116. package/skeleton/protocols/spider/protocol.json +79 -153
  117. package/skeleton/protocols/spider/templates/plan.md +14 -0
  118. package/skeleton/roles/architect.md +40 -48
  119. package/skeleton/roles/builder.md +152 -29
  120. package/templates/dashboard/index.html +0 -27
  121. package/templates/dashboard/js/utils.js +0 -86
  122. package/skeleton/porch/protocols/bugfix.json +0 -85
  123. package/skeleton/porch/protocols/spider.json +0 -135
  124. package/skeleton/porch/protocols/tick.json +0 -76
  125. package/templates/dashboard/css/activity.css +0 -151
  126. package/templates/dashboard/js/activity.js +0 -112
@@ -1,1213 +1,521 @@
1
1
  /**
2
2
  * Porch - Protocol Orchestrator
3
3
  *
4
- * Generic loop orchestrator that reads protocol definitions from JSON
5
- * and executes them with Claude. Implements the Ralph pattern: fresh
6
- * context per iteration with state persisted to files.
4
+ * Claude calls porch as a tool; porch returns prescriptive instructions.
5
+ * All commands produce clear, actionable output.
7
6
  */
8
7
  import * as fs from 'node:fs';
9
8
  import * as path from 'node:path';
10
- import * as readline from 'node:readline';
11
- import { spawn } from 'node:child_process';
12
9
  import chalk from 'chalk';
13
- import { findProjectRoot, getSkeletonDir } from '../../lib/skeleton.js';
14
- import { getProjectDir, readState, writeState, createInitialState, updateState, approveGate, requestGateApproval, updatePhaseStatus, setPlanPhases, findProjects, findExecutions, findStatusFile, findPendingGates, getConsultationAttempts, incrementConsultationAttempts, resetConsultationAttempts, } from './state.js';
15
- import { extractPhasesFromPlanFile, findPlanFile, } from './plan-parser.js';
16
- import { extractSignal } from './signal-parser.js';
17
- import { runPhaseChecks, formatCheckResults } from './checks.js';
18
- import { runConsultationLoop, formatConsultationResults, hasConsultation, } from './consultation.js';
19
- import { loadProtocol as loadProtocolFromLoader, listProtocols as listProtocolsFromLoader, } from './protocol-loader.js';
20
- import { createNotifier, } from './notifications.js';
10
+ import { readState, writeState, createInitialState, findStatusPath, getStatusPath, } from './state.js';
11
+ import { loadProtocol, getPhaseConfig, getNextPhase, getPhaseChecks, getPhaseGate, isPhased, getPhaseCompletionChecks, } from './protocol.js';
12
+ import { findPlanFile, extractPhasesFromFile, getCurrentPlanPhase, getPhaseContent, advancePlanPhase, allPlanPhasesComplete, } from './plan.js';
13
+ import { runPhaseChecks, formatCheckResults, allChecksPassed, } from './checks.js';
21
14
  // ============================================================================
22
- // Protocol Loading (delegates to protocol-loader.ts)
15
+ // Output Helpers
23
16
  // ============================================================================
24
- /**
25
- * List available protocols
26
- * Delegates to protocol-loader.ts for proper conversion
27
- */
28
- export function listProtocols(projectRoot) {
29
- const root = projectRoot || findProjectRoot();
30
- return listProtocolsFromLoader(root);
17
+ function header(text) {
18
+ const line = '═'.repeat(50);
19
+ return `${line}\n ${text}\n${line}`;
31
20
  }
32
- /**
33
- * Load a protocol definition
34
- * Delegates to protocol-loader.ts which properly converts steps→substates
35
- */
36
- export function loadProtocol(name, projectRoot) {
37
- const root = projectRoot || findProjectRoot();
38
- const protocol = loadProtocolFromLoader(root, name);
39
- if (!protocol) {
40
- throw new Error(`Protocol not found: ${name}\nAvailable protocols: ${listProtocols(root).join(', ')}`);
41
- }
42
- return protocol;
43
- }
44
- /**
45
- * Load a prompt file for a phase
46
- */
47
- function loadPrompt(protocol, phaseId, projectRoot) {
48
- const phase = protocol.phases.find(p => p.id === phaseId);
49
- if (!phase?.prompt) {
50
- return null;
51
- }
52
- // New structure: protocols/<protocol>/prompts/<prompt>.md
53
- const promptPaths = [
54
- path.join(projectRoot, 'codev', 'protocols', protocol.name, 'prompts', phase.prompt),
55
- path.join(getSkeletonDir(), 'protocols', protocol.name, 'prompts', phase.prompt),
56
- // Legacy paths
57
- path.join(projectRoot, 'codev', 'porch', 'prompts', phase.prompt),
58
- path.join(getSkeletonDir(), 'porch', 'prompts', phase.prompt),
59
- ];
60
- for (const promptPath of promptPaths) {
61
- if (fs.existsSync(promptPath)) {
62
- return fs.readFileSync(promptPath, 'utf-8');
63
- }
64
- // Try with .md extension
65
- if (fs.existsSync(`${promptPath}.md`)) {
66
- return fs.readFileSync(`${promptPath}.md`, 'utf-8');
67
- }
68
- }
69
- return null;
21
+ function section(title, content) {
22
+ return `\n${chalk.bold(title)}:\n${content}`;
70
23
  }
71
24
  // ============================================================================
72
- // Protocol Helpers
73
- // ============================================================================
74
- /**
75
- * Check if a phase is terminal
76
- */
77
- function isTerminalPhase(protocol, phaseId) {
78
- const phase = protocol.phases.find(p => p.id === phaseId);
79
- return phase?.terminal === true;
80
- }
81
- /**
82
- * Find the phase that has a gate blocking after the given state
83
- */
84
- function getGateForState(protocol, state) {
85
- const [phaseId, substate] = state.split(':');
86
- const phase = protocol.phases.find(p => p.id === phaseId);
87
- if (phase?.gate && phase.gate.after === substate) {
88
- const gateId = `${phaseId}_approval`;
89
- return { gateId, phase };
90
- }
91
- return null;
92
- }
93
- /**
94
- * Get next state after gate passes
95
- */
96
- function getGateNextState(protocol, phaseId) {
97
- const phase = protocol.phases.find(p => p.id === phaseId);
98
- return phase?.gate?.next || null;
99
- }
100
- /**
101
- * Get signal-based next state
102
- */
103
- function getSignalNextState(protocol, phaseId, signal) {
104
- const phase = protocol.phases.find(p => p.id === phaseId);
105
- return phase?.signals?.[signal] || null;
106
- }
107
- /**
108
- * Get the default next state for a phase (first substate or next phase)
109
- */
110
- function getDefaultNextState(protocol, state) {
111
- const [phaseId, substate] = state.split(':');
112
- const phase = protocol.phases.find(p => p.id === phaseId);
113
- if (!phase)
114
- return null;
115
- // If phase has substates, move to next substate
116
- if (phase.substates && substate) {
117
- const currentIdx = phase.substates.indexOf(substate);
118
- if (currentIdx >= 0 && currentIdx < phase.substates.length - 1) {
119
- return `${phaseId}:${phase.substates[currentIdx + 1]}`;
120
- }
121
- }
122
- // Move to next phase
123
- const phaseIdx = protocol.phases.findIndex(p => p.id === phaseId);
124
- if (phaseIdx >= 0 && phaseIdx < protocol.phases.length - 1) {
125
- const nextPhase = protocol.phases[phaseIdx + 1];
126
- if (nextPhase.substates && nextPhase.substates.length > 0) {
127
- return `${nextPhase.id}:${nextPhase.substates[0]}`;
128
- }
129
- return nextPhase.id;
130
- }
131
- return null;
132
- }
133
- // ============================================================================
134
- // Claude Invocation
25
+ // Commands
135
26
  // ============================================================================
136
- // Note: extractSignal is now imported from signal-parser.js
137
27
  /**
138
- * Rolling buffer for last N lines of output
28
+ * porch status <id>
29
+ * Shows current state and prescriptive next steps.
139
30
  */
140
- class OutputBuffer {
141
- lines = [];
142
- currentLine = '';
143
- maxLines;
144
- constructor(maxLines = 20) {
145
- this.maxLines = maxLines;
146
- }
147
- append(data) {
148
- const text = data.toString();
149
- for (const char of text) {
150
- if (char === '\n') {
151
- this.lines.push(this.currentLine);
152
- if (this.lines.length > this.maxLines) {
153
- this.lines.shift();
154
- }
155
- this.currentLine = '';
156
- }
157
- else {
158
- this.currentLine += char;
159
- }
160
- }
161
- }
162
- getContext() {
163
- return this.currentLine
164
- ? [...this.lines, this.currentLine]
165
- : [...this.lines];
166
- }
167
- }
168
- /**
169
- * Invoke Claude for a phase with escape-to-cancel and output buffering
170
- */
171
- async function invokeClaude(protocol, phaseId, state, statusFilePath, projectRoot, options) {
172
- const promptContent = loadPrompt(protocol, phaseId, projectRoot);
173
- if (!promptContent) {
174
- console.log(chalk.yellow(`[porch] No prompt file for phase: ${phaseId}`));
175
- return '';
176
- }
177
- if (options.dryRun) {
178
- console.log(chalk.yellow(`[porch] [DRY RUN] Would invoke Claude for phase: ${phaseId}`));
179
- return '';
180
- }
181
- if (options.noClaude) {
182
- console.log(chalk.blue(`[porch] [NO_CLAUDE] Simulating phase: ${phaseId}`));
183
- await new Promise(r => setTimeout(r, 1000));
184
- console.log(chalk.green(`[porch] Simulated completion of phase: ${phaseId}`));
185
- return '';
186
- }
187
- console.log(chalk.cyan(`[phase] Invoking Claude for phase: ${phaseId}`));
188
- console.log(chalk.gray(`[porch] Press ESC to cancel`));
31
+ export async function status(projectRoot, projectId) {
32
+ const statusPath = findStatusPath(projectRoot, projectId);
33
+ if (!statusPath) {
34
+ throw new Error(`Project ${projectId} not found.\nRun 'porch init' to create a new project.`);
35
+ }
36
+ const state = readState(statusPath);
37
+ const protocol = loadProtocol(projectRoot, state.protocol);
38
+ const phaseConfig = getPhaseConfig(protocol, state.phase);
39
+ // Header
189
40
  console.log('');
190
- const timeout = protocol.config?.claude_timeout || 600000; // 10 minutes default
191
- const startTime = Date.now();
192
- const fullPrompt = `## Protocol: ${protocol.name}
193
- ## Phase: ${phaseId}
194
- ## Project ID: ${state.id}
195
-
196
- ## Current Status
197
- \`\`\`yaml
198
- state: "${state.current_state}"
199
- iteration: ${state.iteration}
200
- started_at: "${state.started_at}"
201
- \`\`\`
202
-
203
- ## Task
204
- Execute the ${phaseId} phase for project ${state.id} - ${state.title}
205
-
206
- ## Phase Instructions
207
- ${promptContent}
208
-
209
- ## Important
210
- - Project ID: ${state.id}
211
- - Protocol: ${protocol.name}
212
- - Follow the instructions above precisely
213
- - Output <signal>...</signal> tags when you reach completion points
214
- `;
215
- return new Promise((resolve, reject) => {
216
- const args = ['--print', '-p', fullPrompt, '--dangerously-skip-permissions'];
217
- const proc = spawn('claude', args, {
218
- stdio: ['ignore', 'pipe', 'pipe'],
219
- timeout,
220
- });
221
- let output = '';
222
- let stderr = '';
223
- let cancelled = false;
224
- const outputBuffer = new OutputBuffer(20);
225
- // Set up escape key handler
226
- const wasRawMode = process.stdin.isRaw;
227
- if (process.stdin.isTTY) {
228
- process.stdin.setRawMode(true);
229
- process.stdin.resume();
230
- }
231
- const escapeHandler = (key) => {
232
- // ESC key is ASCII 27, Ctrl+C is 3
233
- if (key[0] === 27 || key[0] === 3) {
234
- cancelled = true;
235
- console.log('');
236
- console.log(chalk.yellow('━'.repeat(50)));
237
- console.log(chalk.yellow('[porch] Cancelling Claude execution...'));
238
- console.log(chalk.yellow('━'.repeat(50)));
239
- // Show last 20 lines of context
240
- const context = outputBuffer.getContext();
241
- if (context.length > 0) {
242
- console.log(chalk.gray('\nLast output:'));
243
- console.log(chalk.gray('─'.repeat(40)));
244
- for (const line of context.slice(-10)) {
245
- console.log(chalk.gray(' ' + line.slice(0, 70)));
246
- }
247
- console.log(chalk.gray('─'.repeat(40)));
248
- }
249
- proc.kill('SIGTERM');
250
- // Give it a moment then force kill
251
- setTimeout(() => {
252
- if (!proc.killed) {
253
- proc.kill('SIGKILL');
254
- }
255
- }, 2000);
256
- }
257
- };
258
- if (process.stdin.isTTY) {
259
- process.stdin.on('data', escapeHandler);
260
- }
261
- // Periodic status update timer
262
- let lineCount = 0;
263
- const statusInterval = setInterval(() => {
264
- const elapsed = Math.floor((Date.now() - startTime) / 1000);
265
- const mins = Math.floor(elapsed / 60);
266
- const secs = elapsed % 60;
267
- const timeStr = mins > 0 ? `${mins}m ${secs}s` : `${secs}s`;
268
- // Use stderr so it doesn't interfere with output parsing
269
- process.stderr.write(chalk.gray(`\n[porch] Running... ${lineCount} lines | ${timeStr} elapsed | ESC to cancel\n`));
270
- }, 30000); // Every 30 seconds
271
- const cleanup = () => {
272
- clearInterval(statusInterval);
273
- if (process.stdin.isTTY) {
274
- process.stdin.removeListener('data', escapeHandler);
275
- process.stdin.setRawMode(wasRawMode ?? false);
276
- process.stdin.pause();
41
+ console.log(header(`PROJECT: ${state.id} - ${state.title}`));
42
+ console.log(` PROTOCOL: ${state.protocol}`);
43
+ console.log(` PHASE: ${state.phase} (${phaseConfig?.name || 'unknown'})`);
44
+ // For phased protocols, show plan phase status
45
+ if (isPhased(protocol, state.phase) && state.plan_phases.length > 0) {
46
+ console.log('');
47
+ console.log(chalk.bold('PLAN PHASES:'));
48
+ console.log('');
49
+ // Status icons
50
+ const icon = (status) => {
51
+ switch (status) {
52
+ case 'complete': return chalk.green('✓');
53
+ case 'in_progress': return chalk.yellow('►');
54
+ default: return chalk.gray('○');
277
55
  }
278
56
  };
279
- proc.stdout.on('data', (data) => {
280
- const text = data.toString();
281
- output += text;
282
- outputBuffer.append(text);
283
- // Count newlines for status
284
- lineCount += (text.match(/\n/g) || []).length;
285
- process.stdout.write(data);
286
- });
287
- proc.stderr.on('data', (data) => {
288
- stderr += data.toString();
289
- process.stderr.write(data);
290
- });
291
- proc.on('close', (code) => {
292
- cleanup();
293
- // Show completion summary
294
- const elapsed = Math.floor((Date.now() - startTime) / 1000);
295
- const mins = Math.floor(elapsed / 60);
296
- const secs = elapsed % 60;
297
- const timeStr = mins > 0 ? `${mins}m ${secs}s` : `${secs}s`;
298
- if (cancelled) {
299
- console.log(chalk.yellow(`[porch] Cancelled after ${timeStr}`));
300
- resolve(''); // Return empty on cancel, don't reject
57
+ // Show phases
58
+ for (const phase of state.plan_phases) {
59
+ const isCurrent = phase.status === 'in_progress';
60
+ const prefix = isCurrent ? chalk.cyan('→ ') : ' ';
61
+ const title = isCurrent ? chalk.bold(phase.title) : phase.title;
62
+ console.log(`${prefix}${icon(phase.status)} ${phase.id}: ${title}`);
63
+ }
64
+ const currentPlanPhase = getCurrentPlanPhase(state.plan_phases);
65
+ if (currentPlanPhase) {
66
+ console.log('');
67
+ console.log(chalk.bold(`CURRENT: ${currentPlanPhase.id} - ${currentPlanPhase.title}`));
68
+ // Show phase content from plan
69
+ const planPath = findPlanFile(projectRoot, state.id, state.title);
70
+ if (planPath) {
71
+ const content = fs.readFileSync(planPath, 'utf-8');
72
+ const phaseContent = getPhaseContent(content, currentPlanPhase.id);
73
+ if (phaseContent) {
74
+ console.log(section('FROM THE PLAN', phaseContent.slice(0, 500)));
75
+ }
301
76
  }
302
- else if (code !== 0) {
303
- console.log(chalk.red(`[porch] Failed after ${timeStr} (exit code ${code})`));
304
- reject(new Error(`Claude exited with code ${code}\n${stderr}`));
77
+ // Find the next phase name for the warning
78
+ const currentIdx = state.plan_phases.findIndex(p => p.id === currentPlanPhase.id);
79
+ const nextPlanPhase = state.plan_phases[currentIdx + 1];
80
+ console.log('');
81
+ console.log(chalk.red.bold('╔══════════════════════════════════════════════════════════════╗'));
82
+ console.log(chalk.red.bold('║ 🛑 CRITICAL RULES ║'));
83
+ if (nextPlanPhase) {
84
+ console.log(chalk.red.bold(`║ 1. DO NOT start ${nextPlanPhase.id} until you run porch again!`.padEnd(63) + '║'));
305
85
  }
306
86
  else {
307
- console.log('');
308
- console.log(chalk.green(`[porch] Phase complete: ${lineCount} lines in ${timeStr}`));
309
- resolve(output);
87
+ console.log(chalk.red.bold('║ 1. DO NOT start the next phase until you run porch again! ║'));
310
88
  }
311
- });
312
- proc.on('error', (err) => {
313
- cleanup();
314
- reject(err);
315
- });
316
- });
317
- }
318
- // ============================================================================
319
- // Commands
320
- // ============================================================================
321
- /**
322
- * Initialize a new project with a protocol
323
- */
324
- export async function init(protocolName, projectId, projectName, options = {}) {
325
- const projectRoot = findProjectRoot();
326
- const protocol = loadProtocol(protocolName, projectRoot);
327
- // Create project directory
328
- const projectDir = getProjectDir(projectRoot, projectId, projectName);
329
- fs.mkdirSync(projectDir, { recursive: true });
330
- // Create initial state
331
- const state = createInitialState(protocol, projectId, projectName, options.worktree);
332
- const statusPath = path.join(projectDir, 'status.yaml');
333
- await writeState(statusPath, state);
334
- console.log(chalk.green(`[porch] Initialized project ${projectId} with protocol ${protocolName}`));
335
- console.log(chalk.blue(`[porch] Project directory: ${projectDir}`));
336
- console.log(chalk.blue(`[porch] Initial state: ${state.current_state}`));
337
- }
338
- /**
339
- * Check if a protocol phase is a "phased" phase (runs per plan-phase)
340
- */
341
- function isPhasedPhase(protocol, phaseId) {
342
- const phase = protocol.phases.find(p => p.id === phaseId);
343
- return phase?.phased === true;
344
- }
345
- /**
346
- * Get the IDE phases (implement, defend, evaluate) that run per plan-phase
347
- */
348
- function getIDEPhases(protocol) {
349
- return protocol.phases
350
- .filter(p => p.phased === true)
351
- .map(p => p.id);
352
- }
353
- /**
354
- * Parse the current plan-phase from state like "implement:phase_1"
355
- */
356
- function parsePlanPhaseFromState(state) {
357
- const parts = state.split(':');
358
- const phaseId = parts[0];
359
- // Check if second part is a plan phase (phase_N) or a substate
360
- if (parts.length > 1) {
361
- if (parts[1].startsWith('phase_')) {
362
- return { phaseId, planPhaseId: parts[1], substate: parts[2] || null };
89
+ console.log(chalk.red.bold('║ 2. Run /compact before starting each new phase ║'));
90
+ console.log(chalk.red.bold('║ 3. After completing this phase, run: porch done ' + state.id.padEnd(12) + '║'));
91
+ console.log(chalk.red.bold('╚══════════════════════════════════════════════════════════════╝'));
363
92
  }
364
- return { phaseId, planPhaseId: null, substate: parts[1] };
365
93
  }
366
- return { phaseId, planPhaseId: null, substate: null };
367
- }
368
- /**
369
- * Get the next IDE state for a phased phase
370
- * implement:phase_1 → defend:phase_1 → evaluate:phase_1 → implement:phase_2 → ...
371
- */
372
- function getNextIDEState(protocol, currentState, planPhases, signal) {
373
- const { phaseId, planPhaseId } = parsePlanPhaseFromState(currentState);
374
- if (!planPhaseId)
375
- return null;
376
- const idePhases = getIDEPhases(protocol);
377
- const currentIdeIndex = idePhases.indexOf(phaseId);
378
- if (currentIdeIndex < 0)
379
- return null;
380
- // If not at the end of IDE phases, move to next IDE phase for same plan-phase
381
- if (currentIdeIndex < idePhases.length - 1) {
382
- return `${idePhases[currentIdeIndex + 1]}:${planPhaseId}`;
94
+ // Show checks status
95
+ const checks = getPhaseChecks(protocol, state.phase);
96
+ if (Object.keys(checks).length > 0) {
97
+ const checkLines = Object.keys(checks).map(name => ` ○ ${name} (not yet run)`);
98
+ console.log(section('CRITERIA', checkLines.join('\n')));
383
99
  }
384
- // At end of IDE phases (evaluate), move to next plan-phase
385
- const currentPlanIndex = planPhases.findIndex(p => p.id === planPhaseId);
386
- if (currentPlanIndex < 0)
387
- return null;
388
- // Check if there's a next plan phase
389
- if (currentPlanIndex < planPhases.length - 1) {
390
- const nextPlanPhase = planPhases[currentPlanIndex + 1];
391
- return `${idePhases[0]}:${nextPlanPhase.id}`; // Start implement for next phase
100
+ // Instructions
101
+ const gate = getPhaseGate(protocol, state.phase);
102
+ if (gate && state.gates[gate]?.status === 'pending' && state.gates[gate]?.requested_at) {
103
+ console.log(section('STATUS', chalk.yellow('WAITING FOR HUMAN APPROVAL')));
104
+ console.log(`\n Gate: ${gate}`);
105
+ console.log(' Do not proceed until gate is approved.');
106
+ console.log(`\n To approve: porch approve ${state.id} ${gate}`);
392
107
  }
393
- // All plan phases complete, move to review
394
- const reviewPhase = protocol.phases.find(p => p.id === 'review');
395
- if (reviewPhase) {
396
- return 'review';
108
+ else {
109
+ console.log(section('INSTRUCTIONS', getInstructions(state, protocol)));
397
110
  }
398
- return 'complete';
399
- }
400
- // ============================================================================
401
- // Interactive REPL
402
- // ============================================================================
403
- /**
404
- * Create a readline interface for interactive input
405
- */
406
- function createRepl() {
407
- return readline.createInterface({
408
- input: process.stdin,
409
- output: process.stdout,
410
- terminal: true,
411
- });
412
- }
413
- /**
414
- * Prompt user for input with a given message
415
- */
416
- async function prompt(rl, message) {
417
- return new Promise((resolve) => {
418
- rl.question(message, (answer) => {
419
- resolve(answer.trim().toLowerCase());
420
- });
421
- });
422
- }
423
- /**
424
- * Show REPL help
425
- */
426
- function showReplHelp() {
427
- console.log('');
428
- console.log(chalk.blue('Porch REPL Commands:'));
429
- console.log(' ' + chalk.green('approve') + ' [gate] - Approve pending gate (or current if omitted)');
430
- console.log(' ' + chalk.green('view') + ' - View the full artifact for current gate');
431
- console.log(' ' + chalk.green('status') + ' - Show current project status');
432
- console.log(' ' + chalk.green('continue') + ' - Continue to next iteration');
433
- console.log(' ' + chalk.green('skip') + ' - Skip current phase (use with caution)');
434
- console.log(' ' + chalk.green('help') + ' - Show this help');
435
- console.log(' ' + chalk.green('quit') + ' - Exit porch');
111
+ console.log(section('NEXT ACTION', getNextAction(state, protocol)));
436
112
  console.log('');
437
113
  }
438
114
  /**
439
- * Display current status summary
115
+ * porch check <id>
116
+ * Runs the phase checks and reports results.
440
117
  */
441
- function displayStatus(state, protocol) {
442
- console.log('');
443
- console.log(chalk.blue('─'.repeat(50)));
444
- console.log(chalk.blue(`Project: ${state.id} - ${state.title}`));
445
- console.log(chalk.blue(`Protocol: ${state.protocol}`));
446
- console.log(chalk.blue(`State: ${state.current_state}`));
447
- console.log(chalk.blue(`Iteration: ${state.iteration}`));
448
- // Show pending gates
449
- const pendingGates = Object.entries(state.gates)
450
- .filter(([, g]) => g.status === 'pending' && g.requested_at)
451
- .map(([id]) => id);
452
- if (pendingGates.length > 0) {
453
- console.log(chalk.yellow(`Pending gates: ${pendingGates.join(', ')}`));
118
+ export async function check(projectRoot, projectId) {
119
+ const statusPath = findStatusPath(projectRoot, projectId);
120
+ if (!statusPath) {
121
+ throw new Error(`Project ${projectId} not found.`);
122
+ }
123
+ const state = readState(statusPath);
124
+ const protocol = loadProtocol(projectRoot, state.protocol);
125
+ const checks = getPhaseChecks(protocol, state.phase);
126
+ if (Object.keys(checks).length === 0) {
127
+ console.log(chalk.dim('No checks defined for this phase.'));
128
+ return;
454
129
  }
455
- console.log(chalk.blue('─'.repeat(50)));
130
+ const checkEnv = { PROJECT_ID: state.id, PROJECT_TITLE: state.title };
456
131
  console.log('');
457
- }
458
- /**
459
- * Get the artifact file path for a gate
460
- */
461
- function getGateArtifact(gateId, state, projectRoot) {
462
- const projectDir = `${state.id}-${state.title}`;
463
- if (gateId === 'specify_approval') {
464
- // Look for spec file
465
- const specPath = path.join(projectRoot, 'codev', 'specs', `${projectDir}.md`);
466
- if (fs.existsSync(specPath))
467
- return specPath;
468
- // Try alternate naming
469
- const altPath = path.join(projectRoot, 'codev', 'specs', `${state.id}-${state.title}.md`);
470
- if (fs.existsSync(altPath))
471
- return altPath;
472
- }
473
- else if (gateId === 'plan_approval') {
474
- // Look for plan file
475
- const planPath = path.join(projectRoot, 'codev', 'plans', `${projectDir}.md`);
476
- if (fs.existsSync(planPath))
477
- return planPath;
478
- const altPath = path.join(projectRoot, 'codev', 'plans', `${state.id}-${state.title}.md`);
479
- if (fs.existsSync(altPath))
480
- return altPath;
481
- }
482
- else if (gateId === 'review_approval') {
483
- // Look for review file
484
- const reviewPath = path.join(projectRoot, 'codev', 'reviews', `${projectDir}.md`);
485
- if (fs.existsSync(reviewPath))
486
- return reviewPath;
487
- }
488
- return null;
489
- }
490
- /**
491
- * Display gate context - show what artifact was created and key information
492
- */
493
- function displayGateContext(gateId, state, projectRoot) {
494
- const artifactPath = getGateArtifact(gateId, state, projectRoot);
132
+ console.log(chalk.bold('RUNNING CHECKS...'));
495
133
  console.log('');
496
- console.log(chalk.cyan('─'.repeat(50)));
497
- console.log(chalk.cyan(' CONTEXT FOR REVIEW'));
498
- console.log(chalk.cyan(''.repeat(50)));
499
- if (artifactPath) {
500
- console.log(chalk.white(` Artifact: ${artifactPath}`));
501
- console.log('');
502
- // Read and show first ~30 lines of the artifact
503
- try {
504
- const content = fs.readFileSync(artifactPath, 'utf-8');
505
- const lines = content.split('\n');
506
- const preview = lines.slice(0, 30).join('\n');
507
- console.log(chalk.gray(' ┌' + '─'.repeat(46) + '┐'));
508
- for (const line of preview.split('\n')) {
509
- console.log(chalk.gray(' │ ') + line.slice(0, 44));
510
- }
511
- if (lines.length > 30) {
512
- console.log(chalk.gray(` │ ... (${lines.length - 30} more lines)`));
513
- }
514
- console.log(chalk.gray(' └' + '─'.repeat(46) + '┘'));
515
- console.log('');
516
- console.log(chalk.white(` To view full document: cat ${artifactPath}`));
517
- }
518
- catch (e) {
519
- console.log(chalk.yellow(` Could not read artifact: ${e}`));
520
- }
134
+ const results = await runPhaseChecks(checks, projectRoot, checkEnv);
135
+ console.log(formatCheckResults(results));
136
+ console.log('');
137
+ if (allChecksPassed(results)) {
138
+ console.log(chalk.green('RESULT: ALL CHECKS PASSED'));
139
+ console.log(`\n Run: porch done ${state.id} (to advance)`);
521
140
  }
522
141
  else {
523
- console.log(chalk.yellow(' No artifact file found for this gate.'));
524
- console.log(chalk.yellow(' This may indicate Claude did not produce the expected output.'));
525
- // Show what we expected
526
- if (gateId === 'specify_approval') {
527
- console.log(chalk.gray(` Expected: codev/specs/${state.id}-${state.title}.md`));
528
- }
529
- else if (gateId === 'plan_approval') {
530
- console.log(chalk.gray(` Expected: codev/plans/${state.id}-${state.title}.md`));
531
- }
142
+ console.log(chalk.red('RESULT: CHECKS FAILED'));
143
+ console.log(`\n Fix the failures and run: porch check ${state.id}`);
532
144
  }
533
145
  console.log('');
534
146
  }
535
147
  /**
536
- * Run the protocol loop for a project (Interactive REPL mode)
148
+ * porch done <id>
149
+ * Advances to next phase if checks pass. Refuses if checks fail.
537
150
  */
538
- export async function run(projectId, options = {}) {
539
- const projectRoot = findProjectRoot();
540
- // Find status file
541
- const statusFilePath = findStatusFile(projectRoot, projectId);
542
- if (!statusFilePath) {
543
- throw new Error(`Status file not found for project: ${projectId}\n` +
544
- `Run: porch init <protocol> ${projectId} <project-name>`);
545
- }
546
- // Read state and load protocol
547
- const state = readState(statusFilePath);
548
- if (!state) {
549
- throw new Error(`Could not read state from: ${statusFilePath}`);
550
- }
551
- const protocol = loadProtocol(state.protocol, projectRoot);
552
- const maxIterations = protocol.config?.max_iterations || 100;
553
- // Create notifier for this project (desktop notifications for important events)
554
- const notifier = createNotifier(projectId, { desktop: true });
555
- // Create REPL interface
556
- const rl = createRepl();
557
- console.log('');
558
- console.log(chalk.green('═'.repeat(50)));
559
- console.log(chalk.green(` PORCH - Protocol Orchestrator`));
560
- console.log(chalk.green('═'.repeat(50)));
561
- console.log(chalk.blue(` Project: ${state.id} - ${state.title}`));
562
- console.log(chalk.blue(` Protocol: ${state.protocol}`));
563
- console.log(chalk.blue(` State: ${state.current_state}`));
564
- console.log(chalk.green('═'.repeat(50)));
565
- console.log('');
566
- console.log(chalk.gray('Type "help" for commands, "quit" to exit'));
567
- console.log('');
568
- let currentState = state;
569
- // Extract plan phases if not already done and we're past planning
570
- if (!currentState.plan_phases || currentState.plan_phases.length === 0) {
571
- const planFile = findPlanFile(projectRoot, projectId, currentState.title);
572
- if (planFile) {
573
- try {
574
- const planPhases = extractPhasesFromPlanFile(planFile);
575
- currentState = setPlanPhases(currentState, planPhases);
576
- await writeState(statusFilePath, currentState);
577
- console.log(chalk.blue(`[porch] Extracted ${planPhases.length} phases from plan`));
578
- for (const phase of planPhases) {
579
- console.log(chalk.blue(` - ${phase.id}: ${phase.title}`));
580
- }
581
- }
582
- catch (e) {
583
- console.log(chalk.yellow(`[porch] Could not extract plan phases: ${e}`));
584
- }
151
+ export async function done(projectRoot, projectId) {
152
+ const statusPath = findStatusPath(projectRoot, projectId);
153
+ if (!statusPath) {
154
+ throw new Error(`Project ${projectId} not found.`);
155
+ }
156
+ let state = readState(statusPath);
157
+ const protocol = loadProtocol(projectRoot, state.protocol);
158
+ const checks = getPhaseChecks(protocol, state.phase);
159
+ // Run checks first
160
+ if (Object.keys(checks).length > 0) {
161
+ const checkEnv = { PROJECT_ID: state.id, PROJECT_TITLE: state.title };
162
+ console.log('');
163
+ console.log(chalk.bold('RUNNING CHECKS...'));
164
+ const results = await runPhaseChecks(checks, projectRoot, checkEnv);
165
+ console.log(formatCheckResults(results));
166
+ if (!allChecksPassed(results)) {
167
+ console.log('');
168
+ console.log(chalk.red('CHECKS FAILED. Cannot advance.'));
169
+ console.log(`\n Fix the failures and try again.`);
170
+ process.exit(1);
585
171
  }
586
172
  }
587
- for (let iteration = currentState.iteration; iteration <= maxIterations; iteration++) {
588
- console.log(chalk.blue('━'.repeat(40)));
589
- console.log(chalk.blue(`[porch] Iteration ${iteration}`));
590
- console.log(chalk.blue(''.repeat(40)));
591
- // Fresh read of state each iteration (Ralph pattern)
592
- currentState = readState(statusFilePath) || currentState;
593
- console.log(chalk.blue(`[porch] Current state: ${currentState.current_state}`));
594
- // Parse state into phase and substate
595
- const { phaseId, planPhaseId, substate } = parsePlanPhaseFromState(currentState.current_state);
596
- // Re-attempt plan phase extraction if entering a phased phase without plan phases
597
- // This handles the case where porch started during Specify phase (no plan file yet)
598
- if (isPhasedPhase(protocol, phaseId) && (!currentState.plan_phases || currentState.plan_phases.length === 0)) {
599
- const planFile = findPlanFile(projectRoot, projectId, currentState.title);
600
- if (planFile) {
601
- try {
602
- const planPhases = extractPhasesFromPlanFile(planFile);
603
- currentState = setPlanPhases(currentState, planPhases);
604
- await writeState(statusFilePath, currentState);
605
- console.log(chalk.blue(`[porch] Late discovery: Extracted ${planPhases.length} phases from plan`));
606
- for (const phase of planPhases) {
607
- console.log(chalk.blue(` - ${phase.id}: ${phase.title}`));
608
- }
609
- }
610
- catch (e) {
611
- console.log(chalk.yellow(`[porch] Could not extract plan phases: ${e}`));
612
- }
613
- }
614
- else {
615
- console.log(chalk.yellow(`[porch] Warning: Entering phased phase '${phaseId}' but no plan file found`));
616
- }
617
- }
618
- // Check if terminal phase
619
- if (isTerminalPhase(protocol, phaseId)) {
620
- console.log(chalk.green('━'.repeat(40)));
621
- console.log(chalk.green(`[porch] ${state.protocol} loop COMPLETE`));
622
- console.log(chalk.green(`[porch] Project ${projectId} finished all phases`));
623
- console.log(chalk.green('━'.repeat(40)));
624
- rl.close();
625
- return;
626
- }
627
- // Check if there's a pending gate from a previous iteration (step already executed)
628
- const pendingGateInfo = getGateForState(protocol, currentState.current_state);
629
- if (pendingGateInfo) {
630
- const { gateId } = pendingGateInfo;
631
- // Check if gate is already approved
632
- if (currentState.gates[gateId]?.status === 'passed') {
633
- // Gate approved - proceed to next state
634
- const nextState = getGateNextState(protocol, phaseId);
635
- if (nextState) {
636
- console.log(chalk.green(`[porch] Gate ${gateId} passed! Proceeding to ${nextState}`));
637
- await notifier.gateApproved(gateId);
638
- // Reset any consultation attempts for the gated state
639
- currentState = resetConsultationAttempts(currentState, currentState.current_state);
640
- // If entering a phased phase, start with first plan phase
641
- if (isPhasedPhase(protocol, nextState.split(':')[0]) && currentState.plan_phases?.length) {
642
- const firstPlanPhase = currentState.plan_phases[0];
643
- currentState = updateState(currentState, `${nextState.split(':')[0]}:${firstPlanPhase.id}`);
644
- currentState = updatePhaseStatus(currentState, firstPlanPhase.id, 'in_progress');
645
- }
646
- else {
647
- currentState = updateState(currentState, nextState);
648
- }
649
- await writeState(statusFilePath, currentState);
650
- continue; // Start next iteration with new state
651
- }
652
- }
653
- else if (currentState.gates[gateId]?.requested_at) {
654
- // Gate requested but not approved - prompt user interactively
173
+ // Check for gate
174
+ const gate = getPhaseGate(protocol, state.phase);
175
+ if (gate && state.gates[gate]?.status !== 'approved') {
176
+ console.log('');
177
+ console.log(chalk.yellow(`GATE REQUIRED: ${gate}`));
178
+ console.log(`\n Run: porch gate ${state.id}`);
179
+ console.log(' Wait for human approval before advancing.');
180
+ return;
181
+ }
182
+ // Handle phased protocols (plan phases with checks at completion)
183
+ if (isPhased(protocol, state.phase) && state.plan_phases.length > 0) {
184
+ const currentPlanPhase = getCurrentPlanPhase(state.plan_phases);
185
+ if (currentPlanPhase && !allPlanPhasesComplete(state.plan_phases)) {
186
+ // Run phase completion checks (implement + defend + evaluate all at once)
187
+ const completionChecks = getPhaseCompletionChecks(protocol);
188
+ if (Object.keys(completionChecks).length > 0) {
189
+ const checkEnv = { PROJECT_ID: state.id, PROJECT_TITLE: state.title };
655
190
  console.log('');
656
- console.log(chalk.yellow('═'.repeat(50)));
657
- console.log(chalk.yellow(` GATE PENDING: ${gateId}`));
658
- console.log(chalk.yellow('═'.repeat(50)));
659
- console.log(chalk.cyan(` Phase: ${phaseId}`));
660
- console.log(chalk.cyan(` State: ${currentState.current_state}`));
661
- // Show context for the gate - what artifact was created
662
- displayGateContext(gateId, currentState, projectRoot);
663
- // Interactive gate approval loop
664
- let gateHandled = false;
665
- while (!gateHandled) {
666
- const answer = await prompt(rl, chalk.yellow(`Approve ${gateId}? [y/n/help]: `));
667
- switch (answer) {
668
- case 'y':
669
- case 'yes':
670
- case 'approve':
671
- currentState = approveGate(currentState, gateId);
672
- await writeState(statusFilePath, currentState);
673
- console.log(chalk.green(`✓ Gate ${gateId} approved`));
674
- gateHandled = true;
675
- break;
676
- case 'n':
677
- case 'no':
678
- console.log(chalk.yellow('Gate not approved. Staying in current state.'));
679
- console.log(chalk.gray('Type "quit" to exit or wait for changes.'));
680
- break;
681
- case 'status':
682
- displayStatus(currentState, protocol);
683
- break;
684
- case 'view':
685
- case 'cat':
686
- case 'show':
687
- // Show full artifact
688
- const artifactPath = getGateArtifact(gateId, currentState, projectRoot);
689
- if (artifactPath) {
690
- console.log(chalk.cyan(`\n─── ${artifactPath} ───\n`));
691
- try {
692
- const content = fs.readFileSync(artifactPath, 'utf-8');
693
- console.log(content);
694
- console.log(chalk.cyan(`\n─── End of ${artifactPath} ───\n`));
695
- }
696
- catch (e) {
697
- console.log(chalk.red(`Error reading file: ${e}`));
698
- }
699
- }
700
- else {
701
- console.log(chalk.yellow('No artifact file found for this gate.'));
702
- }
703
- break;
704
- case 'help':
705
- case '?':
706
- showReplHelp();
707
- break;
708
- case 'quit':
709
- case 'exit':
710
- console.log(chalk.blue('Exiting porch...'));
711
- rl.close();
712
- return;
713
- default:
714
- console.log(chalk.gray('Type "y" to approve, "n" to decline, or "help" for commands'));
715
- }
191
+ console.log(chalk.bold(`RUNNING PHASE COMPLETION CHECKS (${currentPlanPhase.id})...`));
192
+ const results = await runPhaseChecks(completionChecks, projectRoot, checkEnv);
193
+ console.log(formatCheckResults(results));
194
+ if (!allChecksPassed(results)) {
195
+ console.log('');
196
+ console.log(chalk.red('PHASE COMPLETION CHECKS FAILED. Cannot advance.'));
197
+ console.log(`\n Ensure your commit includes:`);
198
+ console.log(` - Implementation code`);
199
+ console.log(` - Tests`);
200
+ console.log(` - 3-way review results in commit message`);
201
+ console.log(`\n Then try again.`);
202
+ process.exit(1);
716
203
  }
717
- continue;
718
204
  }
719
- // If gate not yet requested, fall through to execute phase first
720
- }
721
- // Get the current phase definition
722
- const phase = protocol.phases.find(p => p.id === phaseId);
723
- // Show plan phase context if in a phased phase
724
- if (planPhaseId && currentState.plan_phases) {
725
- const planPhase = currentState.plan_phases.find(p => p.id === planPhaseId);
726
- if (planPhase) {
727
- console.log(chalk.cyan(`[phase] IDE Phase: ${phaseId} | Plan Phase: ${planPhase.title}`));
205
+ // Advance to next plan phase
206
+ const { phases: updatedPhases, moveToReview } = advancePlanPhase(state.plan_phases, currentPlanPhase.id);
207
+ state.plan_phases = updatedPhases;
208
+ console.log('');
209
+ console.log(chalk.green(`PLAN PHASE COMPLETE: ${currentPlanPhase.id} - ${currentPlanPhase.title}`));
210
+ // Check if moving to review (all plan phases done)
211
+ if (moveToReview) {
212
+ state.phase = 'review';
213
+ state.current_plan_phase = null;
214
+ writeState(statusPath, state);
215
+ console.log(chalk.cyan('All plan phases complete. Moving to REVIEW phase.'));
216
+ console.log(`\n Run: porch status ${state.id}`);
217
+ return;
728
218
  }
729
- else {
730
- console.log(chalk.cyan(`[phase] Phase: ${phaseId}`));
731
- }
732
- }
733
- else {
734
- console.log(chalk.cyan(`[phase] Phase: ${phaseId}`));
735
- }
736
- // Notify phase start
737
- await notifier.phaseStart(phaseId);
738
- // Execute phase
739
- const output = await invokeClaude(protocol, phaseId, currentState, statusFilePath, projectRoot, options);
740
- const signal = extractSignal(output);
741
- // Run phase checks (build/test) if defined
742
- if (phase?.checks && !options.dryRun) {
743
- console.log(chalk.blue(`[porch] Running checks for phase ${phaseId}...`));
744
- const checkResult = await runPhaseChecks(phase, {
745
- cwd: projectRoot,
746
- dryRun: options.dryRun,
747
- });
748
- console.log(formatCheckResults(checkResult));
749
- if (!checkResult.success) {
750
- // Notify about check failure
751
- const failedCheck = checkResult.checks.find(c => !c.success);
752
- await notifier.checkFailed(phaseId, failedCheck?.name || 'build/test', failedCheck?.error || 'Check failed');
753
- // If checks fail, handle based on check configuration
754
- if (checkResult.returnTo) {
755
- console.log(chalk.yellow(`[porch] Checks failed, returning to ${checkResult.returnTo}`));
756
- if (planPhaseId) {
757
- currentState = updateState(currentState, `${checkResult.returnTo}:${planPhaseId}`);
758
- }
759
- else {
760
- currentState = updateState(currentState, checkResult.returnTo);
761
- }
762
- await writeState(statusFilePath, currentState);
763
- continue;
764
- }
765
- // No returnTo means we should retry (already handled in checks)
766
- }
767
- }
768
- // Run consultation if configured for this phase/substate
769
- if (phase?.consultation && hasConsultation(phase) && !options.dryRun && !options.noClaude) {
770
- const consultConfig = phase.consultation;
771
- const currentSubstate = substate || parsePlanPhaseFromState(currentState.current_state).substate;
772
- // Check if consultation is triggered by current substate
773
- if (consultConfig.on === currentSubstate || consultConfig.on === phaseId) {
774
- const maxRounds = consultConfig.max_rounds || 3;
775
- const stateKey = currentState.current_state;
776
- // Get attempt count from state (persisted across porch iterations)
777
- const attemptCount = getConsultationAttempts(currentState, stateKey) + 1;
778
- console.log(chalk.blue(`[porch] Consultation triggered for phase ${phaseId} (attempt ${attemptCount}/${maxRounds})`));
779
- await notifier.consultationStart(phaseId, consultConfig.models || ['gemini', 'codex', 'claude']);
780
- const consultResult = await runConsultationLoop(consultConfig, {
781
- subcommand: consultConfig.type.includes('pr') ? 'pr' : consultConfig.type.includes('spec') ? 'spec' : 'plan',
782
- identifier: projectId,
783
- cwd: projectRoot,
784
- timeout: protocol.config?.consultation_timeout,
785
- dryRun: options.dryRun,
786
- });
787
- console.log(formatConsultationResults(consultResult));
788
- await notifier.consultationComplete(phaseId, consultResult.feedback, consultResult.allApproved);
789
- // If not all approved, track attempt and check for escalation
790
- if (!consultResult.allApproved) {
791
- // Increment attempt count in state (persists across iterations)
792
- currentState = incrementConsultationAttempts(currentState, stateKey);
793
- await writeState(statusFilePath, currentState);
794
- // Check if we've reached max attempts
795
- if (attemptCount >= maxRounds) {
796
- // Create escalation gate - requires human intervention
797
- const escalationGateId = `${phaseId}_consultation_escalation`;
798
- // Check if escalation gate was already approved (human override)
799
- if (currentState.gates[escalationGateId]?.status === 'passed') {
800
- console.log(chalk.green(`[porch] Consultation escalation gate already approved, continuing`));
801
- // Reset attempts and fall through to next state handling
802
- currentState = resetConsultationAttempts(currentState, stateKey);
803
- await writeState(statusFilePath, currentState);
804
- }
805
- else {
806
- console.log(chalk.red(`[porch] Consultation failed after ${attemptCount} attempts - escalating to human`));
807
- console.log(chalk.yellow(`[porch] To override and continue: porch approve ${projectId} ${escalationGateId}`));
808
- // Request human gate if not already requested
809
- if (!currentState.gates[escalationGateId]?.requested_at) {
810
- currentState = requestGateApproval(currentState, escalationGateId);
811
- await writeState(statusFilePath, currentState);
812
- await notifier.gatePending(phaseId, escalationGateId);
813
- }
814
- // Prompt user to approve escalation gate
815
- console.log('');
816
- console.log(chalk.red('═'.repeat(50)));
817
- console.log(chalk.red(` ESCALATION: ${escalationGateId}`));
818
- console.log(chalk.red('═'.repeat(50)));
819
- console.log(chalk.yellow(` Consultation failed after ${attemptCount} attempts`));
820
- console.log('');
821
- let escalationHandled = false;
822
- while (!escalationHandled) {
823
- const answer = await prompt(rl, chalk.red(`Override and continue? [y/n/help]: `));
824
- switch (answer) {
825
- case 'y':
826
- case 'yes':
827
- case 'approve':
828
- case 'override':
829
- currentState = approveGate(currentState, escalationGateId);
830
- currentState = resetConsultationAttempts(currentState, stateKey);
831
- await writeState(statusFilePath, currentState);
832
- console.log(chalk.green(`✓ Escalation gate ${escalationGateId} approved`));
833
- escalationHandled = true;
834
- break;
835
- case 'n':
836
- case 'no':
837
- console.log(chalk.yellow('Escalation not approved. Consultation loop will continue.'));
838
- break;
839
- case 'status':
840
- displayStatus(currentState, protocol);
841
- break;
842
- case 'help':
843
- case '?':
844
- showReplHelp();
845
- break;
846
- case 'quit':
847
- case 'exit':
848
- console.log(chalk.blue('Exiting porch...'));
849
- rl.close();
850
- return;
851
- default:
852
- console.log(chalk.gray('Type "y" to override and continue, "n" to decline, or "help" for commands'));
853
- }
854
- }
855
- continue;
856
- }
857
- }
858
- else {
859
- console.log(chalk.yellow(`[porch] Consultation requested changes (attempt ${attemptCount}/${maxRounds}), continuing for revision`));
860
- // Stay in same state for Claude to revise on next iteration
861
- continue;
862
- }
863
- }
864
- else {
865
- // All approved - reset attempt counter
866
- currentState = resetConsultationAttempts(currentState, stateKey);
867
- await writeState(statusFilePath, currentState);
868
- }
869
- // All approved (or escalation gate passed) - use consultation's next state if defined
870
- if (consultConfig.next) {
871
- if (planPhaseId) {
872
- currentState = updateState(currentState, `${consultConfig.next}:${planPhaseId}`);
873
- }
874
- else {
875
- currentState = updateState(currentState, consultConfig.next);
876
- }
877
- await writeState(statusFilePath, currentState);
878
- continue;
879
- }
219
+ // Update current plan phase tracker
220
+ const newCurrentPhase = getCurrentPlanPhase(state.plan_phases);
221
+ state.current_plan_phase = newCurrentPhase?.id || null;
222
+ writeState(statusPath, state);
223
+ if (newCurrentPhase) {
224
+ console.log(chalk.cyan(`NEXT: ${newCurrentPhase.id} - ${newCurrentPhase.title}`));
880
225
  }
226
+ console.log(`\n Run: porch status ${state.id}`);
227
+ return;
881
228
  }
882
- // Check if current state has a gate that should trigger AFTER this step
883
- // This is the gate trigger point - step has executed, now block before transition
884
- const gateInfo = getGateForState(protocol, currentState.current_state);
885
- if (gateInfo) {
886
- const { gateId } = gateInfo;
887
- // Request gate approval if not already requested
888
- if (!currentState.gates[gateId]?.requested_at) {
889
- currentState = requestGateApproval(currentState, gateId);
890
- await writeState(statusFilePath, currentState);
891
- console.log(chalk.yellow(`[porch] Step complete. Gate approval requested: ${gateId}`));
892
- await notifier.gatePending(phaseId, gateId);
893
- }
894
- // Gate not yet approved - prompt user interactively
895
- if (currentState.gates[gateId]?.status !== 'passed') {
896
- console.log('');
897
- console.log(chalk.yellow('═'.repeat(50)));
898
- console.log(chalk.yellow(` GATE PENDING: ${gateId}`));
899
- console.log(chalk.yellow('═'.repeat(50)));
900
- let gateHandled = false;
901
- while (!gateHandled) {
902
- const answer = await prompt(rl, chalk.yellow(`Approve ${gateId}? [y/n/help]: `));
903
- switch (answer) {
904
- case 'y':
905
- case 'yes':
906
- case 'approve':
907
- currentState = approveGate(currentState, gateId);
908
- await writeState(statusFilePath, currentState);
909
- console.log(chalk.green(`✓ Gate ${gateId} approved`));
910
- gateHandled = true;
911
- break;
912
- case 'n':
913
- case 'no':
914
- console.log(chalk.yellow('Gate not approved. Staying in current state.'));
915
- break;
916
- case 'status':
917
- displayStatus(currentState, protocol);
918
- break;
919
- case 'help':
920
- case '?':
921
- showReplHelp();
922
- break;
923
- case 'quit':
924
- case 'exit':
925
- console.log(chalk.blue('Exiting porch...'));
926
- rl.close();
927
- return;
928
- default:
929
- console.log(chalk.gray('Type "y" to approve, "n" to decline, or "help" for commands'));
930
- }
931
- }
932
- continue;
229
+ }
230
+ // Advance to next protocol phase
231
+ advanceProtocolPhase(state, protocol, statusPath);
232
+ }
233
+ function advanceProtocolPhase(state, protocol, statusPath) {
234
+ const nextPhase = getNextPhase(protocol, state.phase);
235
+ if (!nextPhase) {
236
+ console.log('');
237
+ console.log(chalk.green.bold('🎉 PROTOCOL COMPLETE'));
238
+ console.log(`\n Project ${state.id} has completed the ${state.protocol} protocol.`);
239
+ return;
240
+ }
241
+ state.phase = nextPhase.id;
242
+ // If entering a phased phase (implement), extract plan phases
243
+ if (isPhased(protocol, nextPhase.id)) {
244
+ const planPath = findPlanFile(process.cwd(), state.id, state.title);
245
+ if (planPath) {
246
+ state.plan_phases = extractPhasesFromFile(planPath);
247
+ // extractPhasesFromFile already marks first phase as in_progress
248
+ if (state.plan_phases.length > 0) {
249
+ state.current_plan_phase = state.plan_phases[0].id;
933
250
  }
934
251
  }
935
- // Determine next state
936
- let nextState = null;
937
- if (signal) {
938
- console.log(chalk.green(`[porch] Signal received: ${signal}`));
939
- nextState = getSignalNextState(protocol, phaseId, signal);
940
- }
941
- if (!nextState) {
942
- // Check if this is a phased phase (IDE loop)
943
- if (isPhasedPhase(protocol, phaseId) && currentState.plan_phases?.length) {
944
- nextState = getNextIDEState(protocol, currentState.current_state, currentState.plan_phases, signal || undefined);
945
- // Mark current plan phase as complete if moving to next
946
- if (nextState && planPhaseId) {
947
- const { planPhaseId: nextPlanPhaseId } = parsePlanPhaseFromState(nextState);
948
- if (nextPlanPhaseId !== planPhaseId) {
949
- currentState = updatePhaseStatus(currentState, planPhaseId, 'complete');
950
- if (nextPlanPhaseId) {
951
- currentState = updatePhaseStatus(currentState, nextPlanPhaseId, 'in_progress');
952
- }
953
- }
954
- }
955
- }
956
- else {
957
- // Use default transition
958
- nextState = getDefaultNextState(protocol, currentState.current_state);
252
+ }
253
+ writeState(statusPath, state);
254
+ console.log('');
255
+ console.log(chalk.green(`ADVANCING TO: ${nextPhase.id} - ${nextPhase.name}`));
256
+ // If we just entered implement phase, show phase 1 info and the critical warning
257
+ if (isPhased(protocol, nextPhase.id) && state.plan_phases.length > 0) {
258
+ const firstPhase = state.plan_phases[0];
259
+ const nextPlanPhase = state.plan_phases[1];
260
+ console.log('');
261
+ console.log(chalk.bold(`YOUR TASK: ${firstPhase.id} - "${firstPhase.title}"`));
262
+ // Show phase content from plan
263
+ const planPath = findPlanFile(process.cwd(), state.id, state.title);
264
+ if (planPath) {
265
+ const content = fs.readFileSync(planPath, 'utf-8');
266
+ const phaseContent = getPhaseContent(content, firstPhase.id);
267
+ if (phaseContent) {
268
+ console.log(section('FROM THE PLAN', phaseContent.slice(0, 800)));
959
269
  }
960
270
  }
961
- if (nextState) {
962
- currentState = updateState(currentState, nextState, signal ? { signal } : undefined);
963
- await writeState(statusFilePath, currentState);
271
+ console.log('');
272
+ console.log(chalk.red.bold('╔══════════════════════════════════════════════════════════════╗'));
273
+ console.log(chalk.red.bold('║ 🛑 CRITICAL RULES ║'));
274
+ if (nextPlanPhase) {
275
+ console.log(chalk.red.bold(`║ 1. DO NOT start ${nextPlanPhase.id} until you run porch again!`.padEnd(63) + '║'));
964
276
  }
965
277
  else {
966
- console.log(chalk.yellow(`[porch] No transition defined, staying in current state`));
278
+ console.log(chalk.red.bold('║ 1. DO NOT start the next phase until you run porch again! ║'));
967
279
  }
280
+ console.log(chalk.red.bold('║ 2. Run /compact before starting each new phase ║'));
281
+ console.log(chalk.red.bold('║ 3. When phase complete, run: porch done ' + state.id.padEnd(20) + '║'));
282
+ console.log(chalk.red.bold('╚══════════════════════════════════════════════════════════════╝'));
968
283
  }
969
- rl.close();
970
- throw new Error(`Max iterations (${maxIterations}) reached!`);
284
+ console.log(`\n Run: porch status ${state.id}`);
971
285
  }
972
286
  /**
973
- * Approve a gate
287
+ * porch gate <id>
288
+ * Requests human approval for current gate.
974
289
  */
975
- export async function approve(projectId, gateId) {
976
- const projectRoot = findProjectRoot();
977
- const statusFilePath = findStatusFile(projectRoot, projectId);
978
- if (!statusFilePath) {
979
- throw new Error(`Status file not found for project: ${projectId}`);
290
+ export async function gate(projectRoot, projectId) {
291
+ const statusPath = findStatusPath(projectRoot, projectId);
292
+ if (!statusPath) {
293
+ throw new Error(`Project ${projectId} not found.`);
294
+ }
295
+ const state = readState(statusPath);
296
+ const protocol = loadProtocol(projectRoot, state.protocol);
297
+ const gateName = getPhaseGate(protocol, state.phase);
298
+ if (!gateName) {
299
+ console.log(chalk.dim('No gate required for this phase.'));
300
+ console.log(`\n Run: porch done ${state.id}`);
301
+ return;
980
302
  }
981
- const state = readState(statusFilePath);
982
- if (!state) {
983
- throw new Error(`Could not read state from: ${statusFilePath}`);
303
+ // Mark gate as requested
304
+ if (!state.gates[gateName]) {
305
+ state.gates[gateName] = { status: 'pending' };
984
306
  }
985
- const updatedState = approveGate(state, gateId);
986
- await writeState(statusFilePath, updatedState);
987
- console.log(chalk.green(`[porch] Approved: ${gateId}`));
988
- }
989
- /**
990
- * Show project status
991
- */
992
- export async function status(projectId) {
993
- const projectRoot = findProjectRoot();
994
- if (projectId) {
995
- // Show specific project
996
- const statusFilePath = findStatusFile(projectRoot, projectId);
997
- if (!statusFilePath) {
998
- throw new Error(`Status file not found for project: ${projectId}`);
999
- }
1000
- const state = readState(statusFilePath);
1001
- if (!state) {
1002
- throw new Error(`Could not read state from: ${statusFilePath}`);
1003
- }
1004
- console.log(chalk.blue(`[porch] Status for project ${projectId}:`));
1005
- console.log('');
1006
- console.log(` ID: ${state.id}`);
1007
- console.log(` Title: ${state.title}`);
1008
- console.log(` Protocol: ${state.protocol}`);
1009
- console.log(` State: ${state.current_state}`);
1010
- console.log(` Iteration: ${state.iteration}`);
1011
- console.log(` Started: ${state.started_at}`);
1012
- console.log(` Updated: ${state.last_updated}`);
1013
- console.log('');
1014
- if (Object.keys(state.gates).length > 0) {
1015
- console.log(' Gates:');
1016
- for (const [gateId, gateStatus] of Object.entries(state.gates)) {
1017
- const icon = gateStatus.status === 'passed' ? '✓' : gateStatus.status === 'failed' ? '✗' : '⏳';
1018
- console.log(` ${icon} ${gateId}: ${gateStatus.status}`);
1019
- }
1020
- console.log('');
1021
- }
1022
- if (state.plan_phases && state.plan_phases.length > 0) {
1023
- console.log(' Plan Phases:');
1024
- for (const phase of state.plan_phases) {
1025
- const phaseStatus = state.phases[phase.id]?.status || 'pending';
1026
- const icon = phaseStatus === 'complete' ? '✓' : phaseStatus === 'in_progress' ? '🔄' : '○';
1027
- console.log(` ${icon} ${phase.id}: ${phase.title}`);
1028
- }
1029
- }
307
+ if (!state.gates[gateName].requested_at) {
308
+ state.gates[gateName].requested_at = new Date().toISOString();
309
+ writeState(statusPath, state);
1030
310
  }
1031
- else {
1032
- // Show all projects
1033
- const projects = findProjects(projectRoot);
1034
- const executions = findExecutions(projectRoot);
1035
- if (projects.length === 0 && executions.length === 0) {
1036
- console.log(chalk.yellow('[porch] No projects found'));
1037
- return;
1038
- }
1039
- console.log(chalk.blue('[porch] Projects:'));
1040
- for (const { id, path: statusPath } of projects) {
1041
- const state = readState(statusPath);
1042
- if (state) {
1043
- const pendingGates = Object.entries(state.gates)
1044
- .filter(([, g]) => g.status === 'pending' && g.requested_at)
1045
- .map(([id]) => id);
1046
- const gateStr = pendingGates.length > 0 ? chalk.yellow(` [${pendingGates.join(', ')}]`) : '';
1047
- console.log(` ${id} ${state.title} - ${state.current_state}${gateStr}`);
1048
- }
1049
- }
1050
- if (executions.length > 0) {
311
+ console.log('');
312
+ console.log(chalk.bold(`GATE: ${gateName}`));
313
+ console.log('');
314
+ // Show relevant artifact and open it for review
315
+ const artifact = getArtifactForPhase(projectRoot, state);
316
+ if (artifact) {
317
+ const fullPath = path.join(projectRoot, artifact);
318
+ if (fs.existsSync(fullPath)) {
319
+ console.log(` Artifact: ${artifact}`);
1051
320
  console.log('');
1052
- console.log(chalk.blue('[porch] Executions:'));
1053
- for (const { protocol, id, path: statusPath } of executions) {
1054
- const state = readState(statusPath);
1055
- if (state) {
1056
- console.log(` ${protocol}/${id} - ${state.current_state}`);
1057
- }
1058
- }
321
+ console.log(chalk.cyan(' Opening artifact for human review...'));
322
+ // Use af open to display in annotation viewer
323
+ const { spawn } = await import('node:child_process');
324
+ spawn('af', ['open', fullPath], {
325
+ stdio: 'inherit',
326
+ detached: true
327
+ }).unref();
1059
328
  }
1060
329
  }
330
+ console.log('');
331
+ console.log(chalk.yellow(' Human approval required. STOP and wait.'));
332
+ console.log(' Do not proceed until gate is approved.');
333
+ console.log('');
334
+ console.log(chalk.bold('STATUS: WAITING FOR HUMAN APPROVAL'));
335
+ console.log('');
336
+ console.log(chalk.dim(` To approve: porch approve ${state.id} ${gateName}`));
337
+ console.log('');
1061
338
  }
1062
339
  /**
1063
- * List available protocols
340
+ * porch approve <id> <gate> --a-human-explicitly-approved-this
341
+ * Human approves a gate. Requires explicit flag to prevent automated approvals.
1064
342
  */
1065
- export async function list() {
1066
- const projectRoot = findProjectRoot();
1067
- const protocols = listProtocols(projectRoot);
1068
- if (protocols.length === 0) {
1069
- console.log(chalk.yellow('[porch] No protocols found'));
343
+ export async function approve(projectRoot, projectId, gateName, hasHumanFlag) {
344
+ const statusPath = findStatusPath(projectRoot, projectId);
345
+ if (!statusPath) {
346
+ throw new Error(`Project ${projectId} not found.`);
347
+ }
348
+ const state = readState(statusPath);
349
+ if (!state.gates[gateName]) {
350
+ const knownGates = Object.keys(state.gates).join(', ');
351
+ throw new Error(`Unknown gate: ${gateName}\nKnown gates: ${knownGates || 'none'}`);
352
+ }
353
+ if (state.gates[gateName].status === 'approved') {
354
+ console.log(chalk.yellow(`Gate ${gateName} is already approved.`));
1070
355
  return;
1071
356
  }
1072
- console.log(chalk.blue('[porch] Available protocols:'));
1073
- for (const name of protocols) {
1074
- try {
1075
- const protocol = loadProtocol(name, projectRoot);
1076
- console.log(` - ${name}: ${protocol.description}`);
1077
- }
1078
- catch {
1079
- console.log(` - ${name}: (error loading)`);
357
+ // Require explicit human flag
358
+ if (!hasHumanFlag) {
359
+ console.log('');
360
+ console.log(chalk.red('ERROR: Human approval required.'));
361
+ console.log('');
362
+ console.log(' To approve, please run:');
363
+ console.log('');
364
+ console.log(chalk.cyan(` porch approve ${projectId} ${gateName} --a-human-explicitly-approved-this`));
365
+ console.log('');
366
+ process.exit(1);
367
+ }
368
+ // Run phase checks before approving
369
+ const protocol = loadProtocol(projectRoot, state.protocol);
370
+ const checks = getPhaseChecks(protocol, state.phase);
371
+ if (Object.keys(checks).length > 0) {
372
+ const checkEnv = { PROJECT_ID: state.id, PROJECT_TITLE: state.title };
373
+ console.log('');
374
+ console.log(chalk.bold('RUNNING CHECKS...'));
375
+ const results = await runPhaseChecks(checks, projectRoot, checkEnv);
376
+ console.log(formatCheckResults(results));
377
+ if (!allChecksPassed(results)) {
378
+ console.log('');
379
+ console.log(chalk.red('CHECKS FAILED. Cannot approve gate.'));
380
+ console.log(`\n Fix the failures and try again.`);
381
+ process.exit(1);
1080
382
  }
1081
383
  }
1082
- }
1083
- /**
1084
- * Show protocol definition
1085
- */
1086
- export async function show(protocolName) {
1087
- const projectRoot = findProjectRoot();
1088
- const protocol = loadProtocol(protocolName, projectRoot);
1089
- console.log(chalk.blue(`[porch] Protocol: ${protocolName}`));
384
+ state.gates[gateName].status = 'approved';
385
+ state.gates[gateName].approved_at = new Date().toISOString();
386
+ writeState(statusPath, state);
387
+ console.log('');
388
+ console.log(chalk.green(`Gate ${gateName} approved.`));
389
+ console.log(`\n Run: porch done ${state.id} (to advance)`);
1090
390
  console.log('');
1091
- console.log(JSON.stringify(protocol, null, 2));
1092
391
  }
1093
392
  /**
1094
- * Show pending gates across all projects
393
+ * porch init <protocol> <id> <name>
394
+ * Initialize a new project.
1095
395
  */
1096
- export async function pending() {
1097
- const projectRoot = findProjectRoot();
1098
- const gates = findPendingGates(projectRoot);
1099
- if (gates.length === 0) {
1100
- console.log(chalk.green('[porch] No pending gates'));
1101
- return;
1102
- }
1103
- console.log(chalk.yellow('[porch] Pending gates:'));
1104
- for (const gate of gates) {
1105
- const requestedAt = gate.requestedAt ? ` (requested ${gate.requestedAt})` : '';
1106
- console.log(` ${gate.projectId}: ${gate.gateId}${requestedAt}`);
1107
- console.log(` porch approve ${gate.projectId} ${gate.gateId}`);
1108
- }
396
+ export async function init(projectRoot, protocolName, projectId, projectName) {
397
+ const protocol = loadProtocol(projectRoot, protocolName);
398
+ const statusPath = getStatusPath(projectRoot, projectId, projectName);
399
+ // Check if already exists
400
+ if (fs.existsSync(statusPath)) {
401
+ throw new Error(`Project ${projectId}-${projectName} already exists.`);
402
+ }
403
+ const state = createInitialState(protocol, projectId, projectName);
404
+ writeState(statusPath, state);
405
+ console.log('');
406
+ console.log(chalk.green(`Project initialized: ${projectId}-${projectName}`));
407
+ console.log(` Protocol: ${protocolName}`);
408
+ console.log(` Initial phase: ${state.phase}`);
409
+ console.log(`\n Run: porch status ${projectId}`);
410
+ console.log('');
1109
411
  }
1110
412
  // ============================================================================
1111
- // Auto-Detection
413
+ // Helpers
1112
414
  // ============================================================================
1113
- /**
1114
- * Auto-detect project ID from current directory
1115
- *
1116
- * Detection methods:
1117
- * 1. Check if cwd is a worktree matching pattern: .builders/<id> or worktrees/<protocol>_<id>_*
1118
- * 2. Check for a single project in codev/projects/
1119
- * 3. Check for .porch-project marker file
1120
- */
1121
- function autoDetectProject() {
1122
- const cwd = process.cwd();
1123
- // Method 1: Check path pattern for builder worktree
1124
- // Pattern: .builders/<id> or .builders/<id>-<name>
1125
- const buildersMatch = cwd.match(/[/\\]\.builders[/\\](\d+)(?:-[^/\\]*)?(?:[/\\]|$)/);
1126
- if (buildersMatch) {
1127
- return buildersMatch[1];
415
+ function getInstructions(state, protocol) {
416
+ const phase = state.phase;
417
+ if (isPhased(protocol, phase) && state.plan_phases.length > 0) {
418
+ const current = getCurrentPlanPhase(state.plan_phases);
419
+ if (current) {
420
+ return ` You are implementing ${current.id}: "${current.title}".\n\n Complete the work, then run: porch check ${state.id}`;
421
+ }
1128
422
  }
1129
- // Pattern: worktrees/<protocol>_<id>_<name>
1130
- const worktreeMatch = cwd.match(/[/\\]worktrees[/\\]\w+_(\d+)_[^/\\]*(?:[/\\]|$)/);
1131
- if (worktreeMatch) {
1132
- return worktreeMatch[1];
423
+ const phaseConfig = getPhaseConfig(protocol, phase);
424
+ return ` You are in the ${phaseConfig?.name || phase} phase.\n\n When complete, run: porch done ${state.id}`;
425
+ }
426
+ function getNextAction(state, protocol) {
427
+ const checks = getPhaseChecks(protocol, state.phase);
428
+ const gate = getPhaseGate(protocol, state.phase);
429
+ if (gate && state.gates[gate]?.status === 'pending' && state.gates[gate]?.requested_at) {
430
+ return chalk.yellow('Wait for human to approve the gate.');
1133
431
  }
1134
- // Method 2: Check for .porch-project marker file
1135
- const markerPath = path.join(cwd, '.porch-project');
1136
- if (fs.existsSync(markerPath)) {
1137
- const content = fs.readFileSync(markerPath, 'utf-8').trim();
1138
- if (content) {
1139
- return content;
432
+ if (isPhased(protocol, state.phase)) {
433
+ const current = getCurrentPlanPhase(state.plan_phases);
434
+ if (current) {
435
+ return `Implement ${current.title} as specified in the plan.`;
1140
436
  }
1141
437
  }
1142
- // Method 3: Check if there's exactly one project in codev/projects/
1143
- try {
1144
- const projectRoot = findProjectRoot();
1145
- const projects = findProjects(projectRoot);
1146
- if (projects.length === 1) {
1147
- return projects[0].id;
1148
- }
438
+ if (Object.keys(checks).length > 0) {
439
+ return `Complete the phase work, then run: porch check ${state.id}`;
1149
440
  }
1150
- catch {
1151
- // Not in a codev project
441
+ return `Complete the phase work, then run: porch done ${state.id}`;
442
+ }
443
+ function getArtifactForPhase(projectRoot, state) {
444
+ switch (state.phase) {
445
+ case 'specify':
446
+ return `codev/specs/${state.id}-${state.title}.md`;
447
+ case 'plan':
448
+ return `codev/plans/${state.id}-${state.title}.md`;
449
+ case 'review':
450
+ return `codev/reviews/${state.id}-${state.title}.md`;
451
+ default:
452
+ return null;
1152
453
  }
1153
- return null;
1154
454
  }
1155
- export async function porch(options) {
1156
- const { subcommand, args, dryRun, noClaude, pollInterval, description, worktree } = options;
1157
- switch (subcommand.toLowerCase()) {
1158
- case 'run': {
1159
- let projectId = args[0];
1160
- // Auto-detect project if not provided
1161
- if (!projectId) {
1162
- const detected = autoDetectProject();
1163
- if (!detected) {
1164
- throw new Error('Usage: porch run <project-id>\n' +
1165
- 'Or run from a project worktree to auto-detect.');
455
+ // ============================================================================
456
+ // CLI
457
+ // ============================================================================
458
+ export async function cli(args) {
459
+ const [command, ...rest] = args;
460
+ const projectRoot = process.cwd();
461
+ try {
462
+ switch (command) {
463
+ case 'run':
464
+ if (!rest[0])
465
+ throw new Error('Usage: porch run <id>');
466
+ const { run } = await import('./run.js');
467
+ await run(projectRoot, rest[0]);
468
+ break;
469
+ case 'status':
470
+ if (!rest[0])
471
+ throw new Error('Usage: porch status <id>');
472
+ await status(projectRoot, rest[0]);
473
+ break;
474
+ case 'check':
475
+ if (!rest[0])
476
+ throw new Error('Usage: porch check <id>');
477
+ await check(projectRoot, rest[0]);
478
+ break;
479
+ case 'done':
480
+ if (!rest[0])
481
+ throw new Error('Usage: porch done <id>');
482
+ await done(projectRoot, rest[0]);
483
+ break;
484
+ case 'gate':
485
+ if (!rest[0])
486
+ throw new Error('Usage: porch gate <id>');
487
+ await gate(projectRoot, rest[0]);
488
+ break;
489
+ case 'approve':
490
+ if (!rest[0] || !rest[1])
491
+ throw new Error('Usage: porch approve <id> <gate> --a-human-explicitly-approved-this');
492
+ const hasHumanFlag = rest.includes('--a-human-explicitly-approved-this');
493
+ await approve(projectRoot, rest[0], rest[1], hasHumanFlag);
494
+ break;
495
+ case 'init':
496
+ if (!rest[0] || !rest[1] || !rest[2]) {
497
+ throw new Error('Usage: porch init <protocol> <id> <name>');
1166
498
  }
1167
- projectId = detected;
1168
- console.log(chalk.blue(`[porch] Auto-detected project: ${projectId}`));
1169
- }
1170
- await run(projectId, { dryRun, noClaude, pollInterval });
1171
- break;
1172
- }
1173
- case 'init': {
1174
- if (args.length < 3) {
1175
- throw new Error('Usage: porch init <protocol> <project-id> <project-name>');
1176
- }
1177
- await init(args[0], args[1], args[2], { description, worktree });
1178
- break;
1179
- }
1180
- case 'approve': {
1181
- if (args.length < 2) {
1182
- throw new Error('Usage: porch approve <project-id> <gate-id>');
1183
- }
1184
- await approve(args[0], args[1]);
1185
- break;
1186
- }
1187
- case 'status': {
1188
- await status(args[0]);
1189
- break;
1190
- }
1191
- case 'pending': {
1192
- await pending();
1193
- break;
1194
- }
1195
- case 'list':
1196
- case 'list-protocols': {
1197
- await list();
1198
- break;
1199
- }
1200
- case 'show':
1201
- case 'show-protocol': {
1202
- if (args.length < 1) {
1203
- throw new Error('Usage: porch show <protocol>');
1204
- }
1205
- await show(args[0]);
1206
- break;
499
+ await init(projectRoot, rest[0], rest[1], rest[2]);
500
+ break;
501
+ default:
502
+ console.log('porch - Protocol Orchestrator');
503
+ console.log('');
504
+ console.log('Commands:');
505
+ console.log(' run <id> Run the protocol (porch as outer loop)');
506
+ console.log(' status <id> Show current state and instructions');
507
+ console.log(' check <id> Run checks for current phase');
508
+ console.log(' done <id> Advance to next phase (if checks pass)');
509
+ console.log(' gate <id> Request human approval');
510
+ console.log(' approve <id> <gate> --a-human-explicitly-approved-this');
511
+ console.log(' init <protocol> <id> <name> Initialize a new project');
512
+ console.log('');
513
+ process.exit(command ? 1 : 0);
1207
514
  }
1208
- default:
1209
- throw new Error(`Unknown subcommand: ${subcommand}\n` +
1210
- 'Valid subcommands: run, init, approve, status, pending, list, show');
515
+ }
516
+ catch (err) {
517
+ console.error(chalk.red(`Error: ${err.message}`));
518
+ process.exit(1);
1211
519
  }
1212
520
  }
1213
521
  //# sourceMappingURL=index.js.map