摘要: 點選專案 agent 後可輸入任務派發,監看伺服器在該專案 cwd spawn headless session(claude -p),執行過程即時演在辦公室,結束回報事件。 根本原因: 原本實況模式只能唯讀觀察 transcript,無法像 openclaw-office 的 chat.send 一樣從辦公室出手;缺一個能驅動真實 agent 的通道。 影響: watcher 新增 POST /task(Origin 白名單 5173/5180、每專案排隊上限 3、 15 分鐘逾時);headless 以 acceptEdits 權限執行,等於允許 AI 改檔案, 僅限 localhost 使用。新產生的 session 檔改為從頭讀取,派發過程完整可視。 修法: - server/watch.mjs:launchTask(prompt 走 stdin 防注入、--resume 支援、 stderr 摘要回報)、handleTaskRequest(CORS/驗證/排隊)、born-now 檔案從頭 tail - live.ts:dispatchTask() + task_accepted/task_done 事件對映 - SidePanel:LIVE 模式 TaskComposer(textarea + 續 session 勾選 + Ctrl+Enter) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
431 lines
13 KiB
JavaScript
431 lines
13 KiB
JavaScript
/**
|
||
* Claude Office live watcher.
|
||
*
|
||
* Tails the .jsonl session transcripts under ~/.claude/projects/ and
|
||
* translates appended lines into office events, streamed to the frontend
|
||
* over Server-Sent Events at http://localhost:5179/events.
|
||
*
|
||
* Zero dependencies — plain Node 18+.
|
||
*/
|
||
import { createServer } from "node:http";
|
||
import { createReadStream, promises as fs } from "node:fs";
|
||
import { spawn } from "node:child_process";
|
||
import { homedir } from "node:os";
|
||
import path from "node:path";
|
||
|
||
const PORT = Number(process.env.PORT || 5179);
|
||
const POLL_MS = 1500;
|
||
const ACTIVE_WINDOW_DAYS = 7;
|
||
|
||
/** Origins allowed to dispatch tasks (browser CSRF guard; server is localhost-only). */
|
||
const ALLOWED_ORIGINS = new Set([
|
||
"http://localhost:5173",
|
||
"http://127.0.0.1:5173",
|
||
"http://localhost:5180",
|
||
"http://127.0.0.1:5180",
|
||
]);
|
||
const TASK_TIMEOUT_MS = 15 * 60_000;
|
||
const MAX_QUEUE = 3;
|
||
/** Headless permission mode — change to taste (acceptEdits / plan / bypassPermissions). */
|
||
const PERMISSION_MODE = process.env.OFFICE_PERMISSION_MODE || "acceptEdits";
|
||
|
||
const PROJECTS_ROOT = path.join(homedir(), ".claude", "projects");
|
||
|
||
/** slug → { slug, name, cwd, lastActivity } */
|
||
const projects = new Map();
|
||
/** absolute file path → { offset, remainder, slug } */
|
||
const tails = new Map();
|
||
/** tool_use_id → { slug, desc, kind, startedAt } — pending Agent (subagent) calls */
|
||
const pendingSubs = new Map();
|
||
|
||
const clients = new Set();
|
||
|
||
function broadcast(event) {
|
||
const data = `data: ${JSON.stringify(event)}\n\n`;
|
||
for (const res of clients) res.write(data);
|
||
}
|
||
|
||
function prettifyName(slug, cwd) {
|
||
if (cwd) {
|
||
const seg = cwd.split(/[\\/]/).filter(Boolean);
|
||
if (seg.length > 0) return seg[seg.length - 1];
|
||
}
|
||
const parts = slug.split("-").filter(Boolean);
|
||
return parts[parts.length - 1] || slug;
|
||
}
|
||
|
||
/** Read the tail of the newest transcript to discover the project cwd. */
|
||
async function sniffCwd(file) {
|
||
try {
|
||
const stat = await fs.stat(file);
|
||
const start = Math.max(0, stat.size - 16384);
|
||
const buf = await readRange(file, start, stat.size);
|
||
const lines = buf.toString("utf8").split("\n");
|
||
for (let i = lines.length - 1; i >= 0; i--) {
|
||
const m = lines[i].match(/"cwd":"((?:[^"\\]|\\.)*)"/);
|
||
if (m) return JSON.parse(`"${m[1]}"`);
|
||
}
|
||
} catch {
|
||
/* ignore */
|
||
}
|
||
return null;
|
||
}
|
||
|
||
function readRange(file, start, end) {
|
||
return new Promise((resolve, reject) => {
|
||
const chunks = [];
|
||
createReadStream(file, { start, end: Math.max(start, end - 1) })
|
||
.on("data", (c) => chunks.push(c))
|
||
.on("end", () => resolve(Buffer.concat(chunks)))
|
||
.on("error", reject);
|
||
});
|
||
}
|
||
|
||
function textOf(content) {
|
||
if (typeof content === "string") return content;
|
||
if (!Array.isArray(content)) return "";
|
||
return content
|
||
.filter((c) => c && c.type === "text" && typeof c.text === "string")
|
||
.map((c) => c.text)
|
||
.join(" ");
|
||
}
|
||
|
||
function handleLine(slug, line) {
|
||
let o;
|
||
try {
|
||
o = JSON.parse(line);
|
||
} catch {
|
||
return;
|
||
}
|
||
const proj = projects.get(slug);
|
||
if (proj) {
|
||
proj.lastActivity = Date.now();
|
||
if (!proj.cwd && typeof o.cwd === "string") {
|
||
proj.cwd = o.cwd;
|
||
proj.name = prettifyName(slug, o.cwd);
|
||
}
|
||
}
|
||
|
||
const msg = o.message;
|
||
const content = msg?.content;
|
||
|
||
// Subagent completion: any tool_result whose id matches a pending Agent call.
|
||
if (Array.isArray(content)) {
|
||
for (const c of content) {
|
||
if (c && c.type === "tool_result" && c.tool_use_id && pendingSubs.has(c.tool_use_id)) {
|
||
const sub = pendingSubs.get(c.tool_use_id);
|
||
pendingSubs.delete(c.tool_use_id);
|
||
broadcast({ type: "subagent_end", slug: sub.slug, subId: c.tool_use_id });
|
||
}
|
||
}
|
||
}
|
||
|
||
// Skip subagent-internal lines for the main pawn's status.
|
||
if (o.isSidechain) return;
|
||
|
||
if (o.type === "assistant" && msg?.role === "assistant") {
|
||
if (Array.isArray(content)) {
|
||
for (const c of content) {
|
||
if (!c || c.type !== "tool_use") continue;
|
||
if (c.name === "Agent" || c.name === "Task") {
|
||
const input = c.input ?? {};
|
||
const sub = {
|
||
slug,
|
||
desc: input.description || input.prompt?.slice(0, 40) || "subagent",
|
||
kind: input.subagent_type || "Task",
|
||
startedAt: Date.now(),
|
||
};
|
||
pendingSubs.set(c.id, sub);
|
||
broadcast({ type: "subagent_spawn", slug, subId: c.id, desc: sub.desc, kind: sub.kind });
|
||
} else {
|
||
broadcast({ type: "tool", slug, tool: c.name });
|
||
}
|
||
}
|
||
}
|
||
const text = textOf(content).trim();
|
||
if (text) broadcast({ type: "speech", slug, text: text.slice(0, 80) });
|
||
return;
|
||
}
|
||
|
||
if (o.type === "user" && msg?.role === "user" && !o.isMeta) {
|
||
const hasToolResult =
|
||
Array.isArray(content) && content.some((c) => c && c.type === "tool_result");
|
||
if (!hasToolResult) {
|
||
const text = textOf(content).trim();
|
||
if (text) broadcast({ type: "prompt", slug });
|
||
}
|
||
}
|
||
}
|
||
|
||
async function pollOnce(initial) {
|
||
let dirs;
|
||
try {
|
||
dirs = await fs.readdir(PROJECTS_ROOT, { withFileTypes: true });
|
||
} catch {
|
||
return;
|
||
}
|
||
|
||
for (const d of dirs) {
|
||
if (!d.isDirectory()) continue;
|
||
const slug = d.name;
|
||
const dir = path.join(PROJECTS_ROOT, slug);
|
||
|
||
let files;
|
||
try {
|
||
files = (await fs.readdir(dir)).filter((f) => f.endsWith(".jsonl"));
|
||
} catch {
|
||
continue;
|
||
}
|
||
|
||
let newestMtime = 0;
|
||
let newestFile = null;
|
||
|
||
for (const f of files) {
|
||
const full = path.join(dir, f);
|
||
let stat;
|
||
try {
|
||
stat = await fs.stat(full);
|
||
} catch {
|
||
continue;
|
||
}
|
||
if (stat.mtimeMs > newestMtime) {
|
||
newestMtime = stat.mtimeMs;
|
||
newestFile = full;
|
||
}
|
||
|
||
let tail = tails.get(full);
|
||
if (!tail) {
|
||
// Initial scan: skip history. Files born while we're running
|
||
// (e.g. a freshly dispatched task session) are read from the top.
|
||
const bornNow = !initial && Date.now() - stat.mtimeMs < 120_000;
|
||
tail = { offset: bornNow ? 0 : stat.size, remainder: "", slug };
|
||
tails.set(full, tail);
|
||
if (!bornNow) continue;
|
||
}
|
||
if (stat.size < tail.offset) {
|
||
tail.offset = stat.size; // truncated / rotated
|
||
tail.remainder = "";
|
||
}
|
||
if (stat.size > tail.offset) {
|
||
const buf = await readRange(full, tail.offset, stat.size);
|
||
tail.offset = stat.size;
|
||
const chunk = tail.remainder + buf.toString("utf8");
|
||
const lines = chunk.split("\n");
|
||
tail.remainder = lines.pop() ?? "";
|
||
for (const line of lines) {
|
||
if (line.trim()) handleLine(slug, line);
|
||
}
|
||
}
|
||
}
|
||
|
||
// Register the project if recently active.
|
||
const ageDays = (Date.now() - newestMtime) / 86400000;
|
||
if (newestFile && ageDays <= ACTIVE_WINDOW_DAYS && !projects.has(slug)) {
|
||
const cwd = await sniffCwd(newestFile);
|
||
projects.set(slug, {
|
||
slug,
|
||
name: prettifyName(slug, cwd),
|
||
cwd,
|
||
lastActivity: newestMtime,
|
||
});
|
||
if (!initial) {
|
||
broadcast({ type: "project", slug, name: projects.get(slug).name, lastActivity: newestMtime });
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
/* ── task dispatch: turn the watcher into a tiny gateway ── */
|
||
|
||
/** slug → { child, startedAt, queue: [{prompt, resume}] } */
|
||
const taskRuns = new Map();
|
||
|
||
/** Newest transcript's basename = session id, for --resume. */
|
||
async function newestSessionId(slug) {
|
||
try {
|
||
const dir = path.join(PROJECTS_ROOT, slug);
|
||
const files = (await fs.readdir(dir)).filter((f) => f.endsWith(".jsonl"));
|
||
let best = null;
|
||
let bestM = 0;
|
||
for (const f of files) {
|
||
const st = await fs.stat(path.join(dir, f));
|
||
if (st.mtimeMs > bestM) {
|
||
bestM = st.mtimeMs;
|
||
best = f;
|
||
}
|
||
}
|
||
return best ? best.replace(/\.jsonl$/, "") : null;
|
||
} catch {
|
||
return null;
|
||
}
|
||
}
|
||
|
||
async function launchTask(slug, prompt, resume) {
|
||
const proj = projects.get(slug);
|
||
if (!proj?.cwd) return;
|
||
|
||
const args = ["-p", "--permission-mode", PERMISSION_MODE];
|
||
if (resume) {
|
||
const sessionId = await newestSessionId(slug);
|
||
if (sessionId && /^[0-9a-fA-F-]+$/.test(sessionId)) args.push("--resume", sessionId);
|
||
}
|
||
|
||
// Prompt goes through stdin — never through shell arguments.
|
||
const child = spawn("claude", args, {
|
||
cwd: proj.cwd,
|
||
shell: true,
|
||
stdio: ["pipe", "ignore", "pipe"],
|
||
windowsHide: true,
|
||
});
|
||
const run = { child, startedAt: Date.now(), queue: taskRuns.get(slug)?.queue ?? [] };
|
||
taskRuns.set(slug, run);
|
||
|
||
let stderrTail = "";
|
||
child.stderr.on("data", (c) => {
|
||
stderrTail = (stderrTail + c.toString("utf8")).slice(-400);
|
||
});
|
||
child.stdin.write(prompt);
|
||
child.stdin.end();
|
||
|
||
const killer = setTimeout(() => child.kill(), TASK_TIMEOUT_MS);
|
||
broadcast({ type: "task_accepted", slug, resume: Boolean(resume) });
|
||
|
||
child.on("close", (code) => {
|
||
clearTimeout(killer);
|
||
broadcast({
|
||
type: "task_done",
|
||
slug,
|
||
code,
|
||
error: code === 0 ? undefined : stderrTail.trim().slice(-200) || undefined,
|
||
});
|
||
const next = run.queue.shift();
|
||
if (next) {
|
||
launchTask(slug, next.prompt, next.resume);
|
||
} else {
|
||
taskRuns.delete(slug);
|
||
}
|
||
});
|
||
child.on("error", (err) => {
|
||
clearTimeout(killer);
|
||
taskRuns.delete(slug);
|
||
broadcast({ type: "task_done", slug, code: -1, error: String(err).slice(0, 200) });
|
||
});
|
||
}
|
||
|
||
function corsFor(req) {
|
||
const origin = req.headers.origin;
|
||
if (origin && ALLOWED_ORIGINS.has(origin)) {
|
||
return {
|
||
"Access-Control-Allow-Origin": origin,
|
||
"Access-Control-Allow-Headers": "content-type",
|
||
"Access-Control-Allow-Methods": "POST, OPTIONS",
|
||
Vary: "Origin",
|
||
};
|
||
}
|
||
return {};
|
||
}
|
||
|
||
function readBody(req, limit = 100_000) {
|
||
return new Promise((resolve, reject) => {
|
||
let size = 0;
|
||
const chunks = [];
|
||
req.on("data", (c) => {
|
||
size += c.length;
|
||
if (size > limit) {
|
||
reject(new Error("too large"));
|
||
req.destroy();
|
||
return;
|
||
}
|
||
chunks.push(c);
|
||
});
|
||
req.on("end", () => resolve(Buffer.concat(chunks).toString("utf8")));
|
||
req.on("error", reject);
|
||
});
|
||
}
|
||
|
||
async function handleTaskRequest(req, res) {
|
||
const cors = corsFor(req);
|
||
if (req.method === "OPTIONS") {
|
||
res.writeHead(Object.keys(cors).length ? 204 : 403, cors);
|
||
res.end();
|
||
return;
|
||
}
|
||
if (!Object.keys(cors).length) {
|
||
res.writeHead(403, { "Content-Type": "application/json" });
|
||
res.end(JSON.stringify({ ok: false, error: "origin not allowed" }));
|
||
return;
|
||
}
|
||
const fail = (status, error) => {
|
||
res.writeHead(status, { ...cors, "Content-Type": "application/json" });
|
||
res.end(JSON.stringify({ ok: false, error }));
|
||
};
|
||
try {
|
||
const body = JSON.parse(await readBody(req));
|
||
const slug = String(body.slug ?? "");
|
||
const prompt = String(body.prompt ?? "").trim();
|
||
const resume = Boolean(body.resume);
|
||
if (!projects.has(slug)) return fail(404, "unknown project");
|
||
if (!prompt || prompt.length > 8000) return fail(400, "prompt must be 1–8000 chars");
|
||
|
||
const running = taskRuns.get(slug);
|
||
if (running) {
|
||
if (running.queue.length >= MAX_QUEUE) return fail(429, "queue full");
|
||
running.queue.push({ prompt, resume });
|
||
res.writeHead(202, { ...cors, "Content-Type": "application/json" });
|
||
res.end(JSON.stringify({ ok: true, queued: running.queue.length }));
|
||
return;
|
||
}
|
||
await launchTask(slug, prompt, resume);
|
||
res.writeHead(200, { ...cors, "Content-Type": "application/json" });
|
||
res.end(JSON.stringify({ ok: true, queued: 0 }));
|
||
} catch {
|
||
fail(400, "bad request");
|
||
}
|
||
}
|
||
|
||
function snapshot() {
|
||
return {
|
||
type: "snapshot",
|
||
projects: [...projects.values()]
|
||
.sort((a, b) => b.lastActivity - a.lastActivity)
|
||
.map((p) => ({ slug: p.slug, name: p.name, lastActivity: p.lastActivity })),
|
||
subs: [...pendingSubs.entries()].map(([subId, s]) => ({
|
||
subId,
|
||
slug: s.slug,
|
||
desc: s.desc,
|
||
kind: s.kind,
|
||
})),
|
||
};
|
||
}
|
||
|
||
const server = createServer((req, res) => {
|
||
if (req.url === "/task") {
|
||
handleTaskRequest(req, res);
|
||
return;
|
||
}
|
||
if (req.url === "/events") {
|
||
res.writeHead(200, {
|
||
"Content-Type": "text/event-stream",
|
||
"Cache-Control": "no-cache",
|
||
Connection: "keep-alive",
|
||
"Access-Control-Allow-Origin": "*",
|
||
});
|
||
res.write(`data: ${JSON.stringify(snapshot())}\n\n`);
|
||
clients.add(res);
|
||
req.on("close", () => clients.delete(res));
|
||
return;
|
||
}
|
||
res.writeHead(404, { "Access-Control-Allow-Origin": "*" });
|
||
res.end("not found");
|
||
});
|
||
|
||
await pollOnce(true);
|
||
// Transcripts are sensitive — never expose beyond this machine.
|
||
server.listen(PORT, "127.0.0.1", () => {
|
||
console.log(`✳ Claude Office watcher`);
|
||
console.log(` watching ${PROJECTS_ROOT}`);
|
||
console.log(` projects ${projects.size} active in last ${ACTIVE_WINDOW_DAYS} days`);
|
||
console.log(` SSE http://localhost:${PORT}/events`);
|
||
});
|
||
setInterval(() => pollOnce(false).catch(() => {}), POLL_MS);
|