@open-agent-toolkit/cli 0.0.61 → 0.0.65

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 (58) hide show
  1. package/assets/docs/cli-utilities/tool-packs.md +74 -4
  2. package/assets/docs/reference/file-locations.md +1 -1
  3. package/assets/docs/reference/oat-directory-structure.md +2 -0
  4. package/assets/docs/workflows/ideas/index.md +6 -0
  5. package/assets/docs/workflows/ideas/lifecycle.md +12 -0
  6. package/assets/docs/workflows/projects/lifecycle.md +21 -0
  7. package/assets/docs/workflows/skills/index.md +8 -2
  8. package/assets/public-package-versions.json +4 -4
  9. package/assets/skills/oat-brainstorm/SKILL.md +600 -0
  10. package/assets/skills/oat-brainstorm/references/destinations.md +167 -0
  11. package/assets/skills/oat-brainstorm/references/dogfood-results.md +731 -0
  12. package/assets/skills/oat-brainstorm/references/visual-companion.md +316 -0
  13. package/assets/skills/oat-brainstorm/scripts/frame-template.html +214 -0
  14. package/assets/skills/oat-brainstorm/scripts/helper.js +88 -0
  15. package/assets/skills/oat-brainstorm/scripts/server.cjs +354 -0
  16. package/assets/skills/oat-brainstorm/scripts/start-server.sh +176 -0
  17. package/assets/skills/oat-brainstorm/scripts/stop-server.sh +56 -0
  18. package/assets/skills/oat-brainstorm/templates/brainstorm-doc.md +79 -0
  19. package/assets/skills/oat-idea-ideate/SKILL.md +8 -4
  20. package/assets/skills/oat-pjm-add-backlog-item/SKILL.md +2 -1
  21. package/assets/skills/oat-pjm-update-repo-reference/SKILL.md +2 -1
  22. package/assets/skills/oat-project-complete/SKILL.md +49 -2
  23. package/assets/skills/oat-project-document/SKILL.md +2 -1
  24. package/assets/skills/oat-project-pr-final/SKILL.md +2 -1
  25. package/assets/skills/oat-project-spec/SKILL.md +2 -2
  26. package/assets/skills/oat-project-summary/SKILL.md +2 -1
  27. package/dist/commands/config/index.d.ts.map +1 -1
  28. package/dist/commands/config/index.js +12 -0
  29. package/dist/commands/init/tools/brainstorm/index.d.ts +22 -0
  30. package/dist/commands/init/tools/brainstorm/index.d.ts.map +1 -0
  31. package/dist/commands/init/tools/brainstorm/index.js +145 -0
  32. package/dist/commands/init/tools/brainstorm/install-brainstorm.d.ts +19 -0
  33. package/dist/commands/init/tools/brainstorm/install-brainstorm.d.ts.map +1 -0
  34. package/dist/commands/init/tools/brainstorm/install-brainstorm.js +37 -0
  35. package/dist/commands/init/tools/index.d.ts +3 -1
  36. package/dist/commands/init/tools/index.d.ts.map +1 -1
  37. package/dist/commands/init/tools/index.js +76 -6
  38. package/dist/commands/init/tools/shared/skill-manifest.d.ts +7 -0
  39. package/dist/commands/init/tools/shared/skill-manifest.d.ts.map +1 -1
  40. package/dist/commands/init/tools/shared/skill-manifest.js +11 -0
  41. package/dist/commands/tools/remove/index.d.ts.map +1 -1
  42. package/dist/commands/tools/remove/index.js +2 -1
  43. package/dist/commands/tools/shared/install-sync-context.d.ts.map +1 -1
  44. package/dist/commands/tools/shared/install-sync-context.js +3 -1
  45. package/dist/commands/tools/shared/scan-tools.d.ts.map +1 -1
  46. package/dist/commands/tools/shared/scan-tools.js +3 -1
  47. package/dist/commands/tools/shared/types.d.ts +1 -1
  48. package/dist/commands/tools/shared/types.d.ts.map +1 -1
  49. package/dist/commands/tools/update/index.d.ts.map +1 -1
  50. package/dist/commands/tools/update/index.js +2 -1
  51. package/dist/commands/tools/update/update-tools.d.ts.map +1 -1
  52. package/dist/commands/tools/update/update-tools.js +6 -1
  53. package/dist/config/oat-config.d.ts +1 -1
  54. package/dist/config/oat-config.d.ts.map +1 -1
  55. package/dist/config/oat-config.js +1 -0
  56. package/dist/config/resolve.d.ts.map +1 -1
  57. package/dist/config/resolve.js +1 -0
  58. package/package.json +2 -2
@@ -0,0 +1,354 @@
1
+ const crypto = require('crypto');
2
+ const http = require('http');
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+
6
+ // ========== WebSocket Protocol (RFC 6455) ==========
7
+
8
+ const OPCODES = { TEXT: 0x01, CLOSE: 0x08, PING: 0x09, PONG: 0x0A };
9
+ const WS_MAGIC = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11';
10
+
11
+ function computeAcceptKey(clientKey) {
12
+ return crypto.createHash('sha1').update(clientKey + WS_MAGIC).digest('base64');
13
+ }
14
+
15
+ function encodeFrame(opcode, payload) {
16
+ const fin = 0x80;
17
+ const len = payload.length;
18
+ let header;
19
+
20
+ if (len < 126) {
21
+ header = Buffer.alloc(2);
22
+ header[0] = fin | opcode;
23
+ header[1] = len;
24
+ } else if (len < 65536) {
25
+ header = Buffer.alloc(4);
26
+ header[0] = fin | opcode;
27
+ header[1] = 126;
28
+ header.writeUInt16BE(len, 2);
29
+ } else {
30
+ header = Buffer.alloc(10);
31
+ header[0] = fin | opcode;
32
+ header[1] = 127;
33
+ header.writeBigUInt64BE(BigInt(len), 2);
34
+ }
35
+
36
+ return Buffer.concat([header, payload]);
37
+ }
38
+
39
+ function decodeFrame(buffer) {
40
+ if (buffer.length < 2) return null;
41
+
42
+ const secondByte = buffer[1];
43
+ const opcode = buffer[0] & 0x0F;
44
+ const masked = (secondByte & 0x80) !== 0;
45
+ let payloadLen = secondByte & 0x7F;
46
+ let offset = 2;
47
+
48
+ if (!masked) throw new Error('Client frames must be masked');
49
+
50
+ if (payloadLen === 126) {
51
+ if (buffer.length < 4) return null;
52
+ payloadLen = buffer.readUInt16BE(2);
53
+ offset = 4;
54
+ } else if (payloadLen === 127) {
55
+ if (buffer.length < 10) return null;
56
+ payloadLen = Number(buffer.readBigUInt64BE(2));
57
+ offset = 10;
58
+ }
59
+
60
+ const maskOffset = offset;
61
+ const dataOffset = offset + 4;
62
+ const totalLen = dataOffset + payloadLen;
63
+ if (buffer.length < totalLen) return null;
64
+
65
+ const mask = buffer.slice(maskOffset, dataOffset);
66
+ const data = Buffer.alloc(payloadLen);
67
+ for (let i = 0; i < payloadLen; i++) {
68
+ data[i] = buffer[dataOffset + i] ^ mask[i % 4];
69
+ }
70
+
71
+ return { opcode, payload: data, bytesConsumed: totalLen };
72
+ }
73
+
74
+ // ========== Configuration ==========
75
+
76
+ const PORT = process.env.BRAINSTORM_PORT || (49152 + Math.floor(Math.random() * 16383));
77
+ const HOST = process.env.BRAINSTORM_HOST || '127.0.0.1';
78
+ const URL_HOST = process.env.BRAINSTORM_URL_HOST || (HOST === '127.0.0.1' ? 'localhost' : HOST);
79
+ const SESSION_DIR = process.env.BRAINSTORM_DIR || '/tmp/brainstorm';
80
+ const CONTENT_DIR = path.join(SESSION_DIR, 'content');
81
+ const STATE_DIR = path.join(SESSION_DIR, 'state');
82
+ let ownerPid = process.env.BRAINSTORM_OWNER_PID ? Number(process.env.BRAINSTORM_OWNER_PID) : null;
83
+
84
+ const MIME_TYPES = {
85
+ '.html': 'text/html', '.css': 'text/css', '.js': 'application/javascript',
86
+ '.json': 'application/json', '.png': 'image/png', '.jpg': 'image/jpeg',
87
+ '.jpeg': 'image/jpeg', '.gif': 'image/gif', '.svg': 'image/svg+xml'
88
+ };
89
+
90
+ // ========== Templates and Constants ==========
91
+
92
+ const WAITING_PAGE = `<!DOCTYPE html>
93
+ <html>
94
+ <head><meta charset="utf-8"><title>Brainstorm Companion</title>
95
+ <style>body { font-family: system-ui, sans-serif; padding: 2rem; max-width: 800px; margin: 0 auto; }
96
+ h1 { color: #333; } p { color: #666; }</style>
97
+ </head>
98
+ <body><h1>Brainstorm Companion</h1>
99
+ <p>Waiting for the agent to push a screen...</p></body></html>`;
100
+
101
+ const frameTemplate = fs.readFileSync(path.join(__dirname, 'frame-template.html'), 'utf-8');
102
+ const helperScript = fs.readFileSync(path.join(__dirname, 'helper.js'), 'utf-8');
103
+ const helperInjection = '<script>\n' + helperScript + '\n</script>';
104
+
105
+ // ========== Helper Functions ==========
106
+
107
+ function isFullDocument(html) {
108
+ const trimmed = html.trimStart().toLowerCase();
109
+ return trimmed.startsWith('<!doctype') || trimmed.startsWith('<html');
110
+ }
111
+
112
+ function wrapInFrame(content) {
113
+ return frameTemplate.replace('<!-- CONTENT -->', content);
114
+ }
115
+
116
+ function getNewestScreen() {
117
+ const files = fs.readdirSync(CONTENT_DIR)
118
+ .filter(f => f.endsWith('.html'))
119
+ .map(f => {
120
+ const fp = path.join(CONTENT_DIR, f);
121
+ return { path: fp, mtime: fs.statSync(fp).mtime.getTime() };
122
+ })
123
+ .sort((a, b) => b.mtime - a.mtime);
124
+ return files.length > 0 ? files[0].path : null;
125
+ }
126
+
127
+ // ========== HTTP Request Handler ==========
128
+
129
+ function handleRequest(req, res) {
130
+ touchActivity();
131
+ if (req.method === 'GET' && req.url === '/') {
132
+ const screenFile = getNewestScreen();
133
+ let html = screenFile
134
+ ? (raw => isFullDocument(raw) ? raw : wrapInFrame(raw))(fs.readFileSync(screenFile, 'utf-8'))
135
+ : WAITING_PAGE;
136
+
137
+ if (html.includes('</body>')) {
138
+ html = html.replace('</body>', helperInjection + '\n</body>');
139
+ } else {
140
+ html += helperInjection;
141
+ }
142
+
143
+ res.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' });
144
+ res.end(html);
145
+ } else if (req.method === 'GET' && req.url.startsWith('/files/')) {
146
+ const fileName = req.url.slice(7);
147
+ const filePath = path.join(CONTENT_DIR, path.basename(fileName));
148
+ if (!fs.existsSync(filePath)) {
149
+ res.writeHead(404);
150
+ res.end('Not found');
151
+ return;
152
+ }
153
+ const ext = path.extname(filePath).toLowerCase();
154
+ const contentType = MIME_TYPES[ext] || 'application/octet-stream';
155
+ res.writeHead(200, { 'Content-Type': contentType });
156
+ res.end(fs.readFileSync(filePath));
157
+ } else {
158
+ res.writeHead(404);
159
+ res.end('Not found');
160
+ }
161
+ }
162
+
163
+ // ========== WebSocket Connection Handling ==========
164
+
165
+ const clients = new Set();
166
+
167
+ function handleUpgrade(req, socket) {
168
+ const key = req.headers['sec-websocket-key'];
169
+ if (!key) { socket.destroy(); return; }
170
+
171
+ const accept = computeAcceptKey(key);
172
+ socket.write(
173
+ 'HTTP/1.1 101 Switching Protocols\r\n' +
174
+ 'Upgrade: websocket\r\n' +
175
+ 'Connection: Upgrade\r\n' +
176
+ 'Sec-WebSocket-Accept: ' + accept + '\r\n\r\n'
177
+ );
178
+
179
+ let buffer = Buffer.alloc(0);
180
+ clients.add(socket);
181
+
182
+ socket.on('data', (chunk) => {
183
+ buffer = Buffer.concat([buffer, chunk]);
184
+ while (buffer.length > 0) {
185
+ let result;
186
+ try {
187
+ result = decodeFrame(buffer);
188
+ } catch (e) {
189
+ socket.end(encodeFrame(OPCODES.CLOSE, Buffer.alloc(0)));
190
+ clients.delete(socket);
191
+ return;
192
+ }
193
+ if (!result) break;
194
+ buffer = buffer.slice(result.bytesConsumed);
195
+
196
+ switch (result.opcode) {
197
+ case OPCODES.TEXT:
198
+ handleMessage(result.payload.toString());
199
+ break;
200
+ case OPCODES.CLOSE:
201
+ socket.end(encodeFrame(OPCODES.CLOSE, Buffer.alloc(0)));
202
+ clients.delete(socket);
203
+ return;
204
+ case OPCODES.PING:
205
+ socket.write(encodeFrame(OPCODES.PONG, result.payload));
206
+ break;
207
+ case OPCODES.PONG:
208
+ break;
209
+ default: {
210
+ const closeBuf = Buffer.alloc(2);
211
+ closeBuf.writeUInt16BE(1003);
212
+ socket.end(encodeFrame(OPCODES.CLOSE, closeBuf));
213
+ clients.delete(socket);
214
+ return;
215
+ }
216
+ }
217
+ }
218
+ });
219
+
220
+ socket.on('close', () => clients.delete(socket));
221
+ socket.on('error', () => clients.delete(socket));
222
+ }
223
+
224
+ function handleMessage(text) {
225
+ let event;
226
+ try {
227
+ event = JSON.parse(text);
228
+ } catch (e) {
229
+ console.error('Failed to parse WebSocket message:', e.message);
230
+ return;
231
+ }
232
+ touchActivity();
233
+ console.log(JSON.stringify({ source: 'user-event', ...event }));
234
+ if (event.choice) {
235
+ const eventsFile = path.join(STATE_DIR, 'events');
236
+ fs.appendFileSync(eventsFile, JSON.stringify(event) + '\n');
237
+ }
238
+ }
239
+
240
+ function broadcast(msg) {
241
+ const frame = encodeFrame(OPCODES.TEXT, Buffer.from(JSON.stringify(msg)));
242
+ for (const socket of clients) {
243
+ try { socket.write(frame); } catch (e) { clients.delete(socket); }
244
+ }
245
+ }
246
+
247
+ // ========== Activity Tracking ==========
248
+
249
+ const IDLE_TIMEOUT_MS = 30 * 60 * 1000; // 30 minutes
250
+ let lastActivity = Date.now();
251
+
252
+ function touchActivity() {
253
+ lastActivity = Date.now();
254
+ }
255
+
256
+ // ========== File Watching ==========
257
+
258
+ const debounceTimers = new Map();
259
+
260
+ // ========== Server Startup ==========
261
+
262
+ function startServer() {
263
+ if (!fs.existsSync(CONTENT_DIR)) fs.mkdirSync(CONTENT_DIR, { recursive: true });
264
+ if (!fs.existsSync(STATE_DIR)) fs.mkdirSync(STATE_DIR, { recursive: true });
265
+
266
+ // Track known files to distinguish new screens from updates.
267
+ // macOS fs.watch reports 'rename' for both new files and overwrites,
268
+ // so we can't rely on eventType alone.
269
+ const knownFiles = new Set(
270
+ fs.readdirSync(CONTENT_DIR).filter(f => f.endsWith('.html'))
271
+ );
272
+
273
+ const server = http.createServer(handleRequest);
274
+ server.on('upgrade', handleUpgrade);
275
+
276
+ const watcher = fs.watch(CONTENT_DIR, (eventType, filename) => {
277
+ if (!filename || !filename.endsWith('.html')) return;
278
+
279
+ if (debounceTimers.has(filename)) clearTimeout(debounceTimers.get(filename));
280
+ debounceTimers.set(filename, setTimeout(() => {
281
+ debounceTimers.delete(filename);
282
+ const filePath = path.join(CONTENT_DIR, filename);
283
+
284
+ if (!fs.existsSync(filePath)) return; // file was deleted
285
+ touchActivity();
286
+
287
+ if (!knownFiles.has(filename)) {
288
+ knownFiles.add(filename);
289
+ const eventsFile = path.join(STATE_DIR, 'events');
290
+ if (fs.existsSync(eventsFile)) fs.unlinkSync(eventsFile);
291
+ console.log(JSON.stringify({ type: 'screen-added', file: filePath }));
292
+ } else {
293
+ console.log(JSON.stringify({ type: 'screen-updated', file: filePath }));
294
+ }
295
+
296
+ broadcast({ type: 'reload' });
297
+ }, 100));
298
+ });
299
+ watcher.on('error', (err) => console.error('fs.watch error:', err.message));
300
+
301
+ function shutdown(reason) {
302
+ console.log(JSON.stringify({ type: 'server-stopped', reason }));
303
+ const infoFile = path.join(STATE_DIR, 'server-info');
304
+ if (fs.existsSync(infoFile)) fs.unlinkSync(infoFile);
305
+ fs.writeFileSync(
306
+ path.join(STATE_DIR, 'server-stopped'),
307
+ JSON.stringify({ reason, timestamp: Date.now() }) + '\n'
308
+ );
309
+ watcher.close();
310
+ clearInterval(lifecycleCheck);
311
+ server.close(() => process.exit(0));
312
+ }
313
+
314
+ function ownerAlive() {
315
+ if (!ownerPid) return true;
316
+ try { process.kill(ownerPid, 0); return true; } catch (e) { return e.code === 'EPERM'; }
317
+ }
318
+
319
+ // Check every 60s: exit if owner process died or idle for 30 minutes
320
+ const lifecycleCheck = setInterval(() => {
321
+ if (!ownerAlive()) shutdown('owner process exited');
322
+ else if (Date.now() - lastActivity > IDLE_TIMEOUT_MS) shutdown('idle timeout');
323
+ }, 60 * 1000);
324
+ lifecycleCheck.unref();
325
+
326
+ // Validate owner PID at startup. If it's already dead, the PID resolution
327
+ // was wrong (common on WSL, Tailscale SSH, and cross-user scenarios).
328
+ // Disable monitoring and rely on the idle timeout instead.
329
+ if (ownerPid) {
330
+ try { process.kill(ownerPid, 0); }
331
+ catch (e) {
332
+ if (e.code !== 'EPERM') {
333
+ console.log(JSON.stringify({ type: 'owner-pid-invalid', pid: ownerPid, reason: 'dead at startup' }));
334
+ ownerPid = null;
335
+ }
336
+ }
337
+ }
338
+
339
+ server.listen(PORT, HOST, () => {
340
+ const info = JSON.stringify({
341
+ type: 'server-started', port: Number(PORT), host: HOST,
342
+ url_host: URL_HOST, url: 'http://' + URL_HOST + ':' + PORT,
343
+ screen_dir: CONTENT_DIR, state_dir: STATE_DIR
344
+ });
345
+ console.log(info);
346
+ fs.writeFileSync(path.join(STATE_DIR, 'server-info'), info + '\n');
347
+ });
348
+ }
349
+
350
+ if (require.main === module) {
351
+ startServer();
352
+ }
353
+
354
+ module.exports = { computeAcceptKey, encodeFrame, decodeFrame, OPCODES };
@@ -0,0 +1,176 @@
1
+ #!/usr/bin/env bash
2
+ # Start the brainstorm server and output connection info
3
+ # Usage: start-server.sh [--project-dir <path>] [--host <bind-host>] [--url-host <display-host>] [--foreground] [--background]
4
+ #
5
+ # Starts server on a random high port, outputs JSON with URL.
6
+ # Each session gets its own directory to avoid conflicts.
7
+ #
8
+ # OAT persistence-path resolution (descending priority):
9
+ # 1. --project-dir <path> → <path>/.oat/brainstorm/<session-id>/
10
+ # 2. invoked inside an OAT-initialized repo (walk-up detection of .oat/)
11
+ # → <repo-root>/.oat/brainstorm/<session-id>/
12
+ # 3. fallback → ~/.oat/brainstorm/<session-id>/
13
+ #
14
+ # Files persist after server stops in all three cases — no /tmp default.
15
+ #
16
+ # Options:
17
+ # --project-dir <path> Store session files under <path>/.oat/brainstorm/.
18
+ # Overrides repo walk-up detection.
19
+ # --host <bind-host> Host/interface to bind (default: 127.0.0.1).
20
+ # Use 0.0.0.0 in remote/containerized environments.
21
+ # --url-host <host> Hostname shown in returned URL JSON.
22
+ # --foreground Run server in the current terminal (no backgrounding).
23
+ # --background Force background mode (overrides Codex auto-foreground).
24
+
25
+ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
26
+
27
+ # Parse arguments
28
+ PROJECT_DIR=""
29
+ FOREGROUND="false"
30
+ FORCE_BACKGROUND="false"
31
+ BIND_HOST="127.0.0.1"
32
+ URL_HOST=""
33
+ while [[ $# -gt 0 ]]; do
34
+ case "$1" in
35
+ --project-dir)
36
+ PROJECT_DIR="$2"
37
+ shift 2
38
+ ;;
39
+ --host)
40
+ BIND_HOST="$2"
41
+ shift 2
42
+ ;;
43
+ --url-host)
44
+ URL_HOST="$2"
45
+ shift 2
46
+ ;;
47
+ --foreground|--no-daemon)
48
+ FOREGROUND="true"
49
+ shift
50
+ ;;
51
+ --background|--daemon)
52
+ FORCE_BACKGROUND="true"
53
+ shift
54
+ ;;
55
+ *)
56
+ echo "{\"error\": \"Unknown argument: $1\"}"
57
+ exit 1
58
+ ;;
59
+ esac
60
+ done
61
+
62
+ if [[ -z "$URL_HOST" ]]; then
63
+ if [[ "$BIND_HOST" == "127.0.0.1" || "$BIND_HOST" == "localhost" ]]; then
64
+ URL_HOST="localhost"
65
+ else
66
+ URL_HOST="$BIND_HOST"
67
+ fi
68
+ fi
69
+
70
+ # Some environments reap detached/background processes. Auto-foreground when detected.
71
+ if [[ -n "${CODEX_CI:-}" && "$FOREGROUND" != "true" && "$FORCE_BACKGROUND" != "true" ]]; then
72
+ FOREGROUND="true"
73
+ fi
74
+
75
+ # Windows/Git Bash reaps nohup background processes. Auto-foreground when detected.
76
+ if [[ "$FOREGROUND" != "true" && "$FORCE_BACKGROUND" != "true" ]]; then
77
+ case "${OSTYPE:-}" in
78
+ msys*|cygwin*|mingw*) FOREGROUND="true" ;;
79
+ esac
80
+ if [[ -n "${MSYSTEM:-}" ]]; then
81
+ FOREGROUND="true"
82
+ fi
83
+ fi
84
+
85
+ # Generate unique session directory
86
+ SESSION_ID="$$-$(date +%s)"
87
+
88
+ # Resolve OAT-managed persistence prefix.
89
+ # 1. --project-dir <path> → <path>/.oat/brainstorm/<session-id>/
90
+ # 2. invoked inside an OAT repo (walk-up detection of .oat/ directory)
91
+ # → <repo-root>/.oat/brainstorm/<session-id>/
92
+ # 3. fallback → ~/.oat/brainstorm/<session-id>/
93
+ if [[ -n "$PROJECT_DIR" ]]; then
94
+ SESSION_DIR="${PROJECT_DIR}/.oat/brainstorm/${SESSION_ID}"
95
+ else
96
+ # Walk up from the current working directory looking for a .oat/ dir.
97
+ REPO_ROOT=""
98
+ WALK_DIR="$(pwd)"
99
+ while [[ -n "$WALK_DIR" && "$WALK_DIR" != "/" ]]; do
100
+ if [[ -d "$WALK_DIR/.oat" ]]; then
101
+ REPO_ROOT="$WALK_DIR"
102
+ break
103
+ fi
104
+ WALK_DIR="$(dirname "$WALK_DIR")"
105
+ done
106
+
107
+ if [[ -n "$REPO_ROOT" ]]; then
108
+ SESSION_DIR="${REPO_ROOT}/.oat/brainstorm/${SESSION_ID}"
109
+ else
110
+ SESSION_DIR="${HOME}/.oat/brainstorm/${SESSION_ID}"
111
+ fi
112
+ fi
113
+
114
+ STATE_DIR="${SESSION_DIR}/state"
115
+ PID_FILE="${STATE_DIR}/server.pid"
116
+ LOG_FILE="${STATE_DIR}/server.log"
117
+
118
+ # Create fresh session directory with content and state peers
119
+ mkdir -p "${SESSION_DIR}/content" "$STATE_DIR"
120
+
121
+ # Kill any existing server
122
+ if [[ -f "$PID_FILE" ]]; then
123
+ old_pid=$(cat "$PID_FILE")
124
+ kill "$old_pid" 2>/dev/null
125
+ rm -f "$PID_FILE"
126
+ fi
127
+
128
+ cd "$SCRIPT_DIR"
129
+
130
+ # Resolve the harness PID (grandparent of this script).
131
+ # $PPID is the ephemeral shell the harness spawned to run us — it dies
132
+ # when this script exits. The harness itself is $PPID's parent.
133
+ OWNER_PID="$(ps -o ppid= -p "$PPID" 2>/dev/null | tr -d ' ')"
134
+ if [[ -z "$OWNER_PID" || "$OWNER_PID" == "1" ]]; then
135
+ OWNER_PID="$PPID"
136
+ fi
137
+
138
+ # Foreground mode for environments that reap detached/background processes.
139
+ if [[ "$FOREGROUND" == "true" ]]; then
140
+ echo "$$" > "$PID_FILE"
141
+ env BRAINSTORM_DIR="$SESSION_DIR" BRAINSTORM_HOST="$BIND_HOST" BRAINSTORM_URL_HOST="$URL_HOST" BRAINSTORM_OWNER_PID="$OWNER_PID" node server.cjs
142
+ exit $?
143
+ fi
144
+
145
+ # Start server, capturing output to log file
146
+ # Use nohup to survive shell exit; disown to remove from job table
147
+ nohup env BRAINSTORM_DIR="$SESSION_DIR" BRAINSTORM_HOST="$BIND_HOST" BRAINSTORM_URL_HOST="$URL_HOST" BRAINSTORM_OWNER_PID="$OWNER_PID" node server.cjs > "$LOG_FILE" 2>&1 &
148
+ SERVER_PID=$!
149
+ disown "$SERVER_PID" 2>/dev/null
150
+ echo "$SERVER_PID" > "$PID_FILE"
151
+
152
+ # Wait for server-started message (check log file)
153
+ for i in {1..50}; do
154
+ if grep -q "server-started" "$LOG_FILE" 2>/dev/null; then
155
+ # Verify server is still alive after a short window (catches process reapers)
156
+ alive="true"
157
+ for _ in {1..20}; do
158
+ if ! kill -0 "$SERVER_PID" 2>/dev/null; then
159
+ alive="false"
160
+ break
161
+ fi
162
+ sleep 0.1
163
+ done
164
+ if [[ "$alive" != "true" ]]; then
165
+ echo "{\"error\": \"Server started but was killed. Retry in a persistent terminal with: $SCRIPT_DIR/start-server.sh${PROJECT_DIR:+ --project-dir $PROJECT_DIR} --host $BIND_HOST --url-host $URL_HOST --foreground\"}"
166
+ exit 1
167
+ fi
168
+ grep "server-started" "$LOG_FILE" | head -1
169
+ exit 0
170
+ fi
171
+ sleep 0.1
172
+ done
173
+
174
+ # Timeout - server didn't start
175
+ echo '{"error": "Server failed to start within 5 seconds"}'
176
+ exit 1
@@ -0,0 +1,56 @@
1
+ #!/usr/bin/env bash
2
+ # Stop the brainstorm server and clean up
3
+ # Usage: stop-server.sh <session_dir>
4
+ #
5
+ # Kills the server process. Only deletes session directory if it's
6
+ # under /tmp (ephemeral). Persistent directories (.superpowers/) are
7
+ # kept so mockups can be reviewed later.
8
+
9
+ SESSION_DIR="$1"
10
+
11
+ if [[ -z "$SESSION_DIR" ]]; then
12
+ echo '{"error": "Usage: stop-server.sh <session_dir>"}'
13
+ exit 1
14
+ fi
15
+
16
+ STATE_DIR="${SESSION_DIR}/state"
17
+ PID_FILE="${STATE_DIR}/server.pid"
18
+
19
+ if [[ -f "$PID_FILE" ]]; then
20
+ pid=$(cat "$PID_FILE")
21
+
22
+ # Try to stop gracefully, fallback to force if still alive
23
+ kill "$pid" 2>/dev/null || true
24
+
25
+ # Wait for graceful shutdown (up to ~2s)
26
+ for i in {1..20}; do
27
+ if ! kill -0 "$pid" 2>/dev/null; then
28
+ break
29
+ fi
30
+ sleep 0.1
31
+ done
32
+
33
+ # If still running, escalate to SIGKILL
34
+ if kill -0 "$pid" 2>/dev/null; then
35
+ kill -9 "$pid" 2>/dev/null || true
36
+
37
+ # Give SIGKILL a moment to take effect
38
+ sleep 0.1
39
+ fi
40
+
41
+ if kill -0 "$pid" 2>/dev/null; then
42
+ echo '{"status": "failed", "error": "process still running"}'
43
+ exit 1
44
+ fi
45
+
46
+ rm -f "$PID_FILE" "${STATE_DIR}/server.log"
47
+
48
+ # Only delete ephemeral /tmp directories
49
+ if [[ "$SESSION_DIR" == /tmp/* ]]; then
50
+ rm -rf "$SESSION_DIR"
51
+ fi
52
+
53
+ echo '{"status": "stopped"}'
54
+ else
55
+ echo '{"status": "not_running"}'
56
+ fi
@@ -0,0 +1,79 @@
1
+ ---
2
+ title: '{{title}}'
3
+ date: '{{date}}'
4
+ source: oat-brainstorm
5
+ ---
6
+
7
+ # {{title}}
8
+
9
+ ## Overview
10
+
11
+ {{summary}}
12
+
13
+ {{#motivation}}
14
+ **Why this matters:** {{motivation}}
15
+ {{/motivation}}
16
+
17
+ {{#vision}}
18
+ **What it would look like:** {{vision}}
19
+ {{/vision}}
20
+
21
+ ## Approaches Considered
22
+
23
+ {{#approachesConsidered}}
24
+
25
+ ### {{name}}{{#recommended}} (recommended){{/recommended}}
26
+
27
+ {{description}}
28
+
29
+ **Tradeoffs:** {{tradeoffs}}
30
+
31
+ {{/approachesConsidered}}
32
+
33
+ ## Chosen Direction
34
+
35
+ {{#chosenDirection}}
36
+
37
+ **Approach:** {{approachName}}
38
+
39
+ {{rationale}}
40
+
41
+ {{/chosenDirection}}
42
+ {{^chosenDirection}}
43
+
44
+ _No direction selected — this brainstorm captured the approach landscape but did not converge on a chosen path. Revisit when a decision is needed._
45
+
46
+ {{/chosenDirection}}
47
+
48
+ ## Open Questions
49
+
50
+ {{#openQuestions}}
51
+
52
+ - {{.}}
53
+ {{/openQuestions}}
54
+ {{^openQuestions}}
55
+
56
+ _None outstanding._
57
+
58
+ {{/openQuestions}}
59
+
60
+ ## Next Steps
61
+
62
+ {{#nextSteps}}
63
+
64
+ - {{.}}
65
+ {{/nextSteps}}
66
+ {{^nextSteps}}
67
+
68
+ _None defined yet._
69
+
70
+ {{/nextSteps}}
71
+
72
+ ---
73
+
74
+ <details>
75
+ <summary>Transcript Session Note</summary>
76
+
77
+ {{transcriptSessionNote}}
78
+
79
+ </details>