@galda/cli 0.10.40 → 0.10.41
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.
- package/app/index.html +650 -68
- package/engine/lib.mjs +269 -87
- package/engine/server.mjs +348 -70
- package/engine/shot.mjs +16 -1
- package/package.json +1 -1
package/engine/server.mjs
CHANGED
|
@@ -21,7 +21,7 @@ import { homedir } from 'node:os';
|
|
|
21
21
|
import { fileURLToPath } from 'node:url';
|
|
22
22
|
import { pathToFileURL } from 'node:url';
|
|
23
23
|
import { needsProjectFolder, folderLabel, buildFolderQuestion, resolveFolderAnswer, classifyFolderTarget, buildFolderInitConfirm, isFolderInitConfirmed, needsReviewPreference, buildReviewPreferenceQuestion, resolveReviewPreferenceAnswer, routeQuestionAnswer, notUnderstoodNote, parseRelocalizedQuestion, classifyAuthProbe, authBannerText, makeSigninChallenge, parseClaimResponse } from './lib.mjs';
|
|
24
|
-
import { parseStreamEvents, parseCodexEvents, buildCodexArgs, parsePlan, refinePlanTasks,
|
|
24
|
+
import { parseStreamEvents, parseCodexEvents, buildCodexArgs, parsePlan, refinePlanTasks, canEditGoal, canDeleteGoal, shouldAskClarification, workerExitReason, isForcedStop, taskStatusAfterVerify, workerResultText, taskCountsAsComplete, resolveWantsPR, resolveGoalSource, buildGoalSummary, buildGoalProofMd, buildGoalPrBody, buildReviewSummaryPrompt, parseReviewSummary, buildReviewRuleSection, nextGoalStatus, isPrMerged, isPrApproved, reviewToDoneStatus, advanceReviewGoal, revertReviewGoal, approveGoal, dismissGoal, rejectGoal, reopenGoal, permissionModeFor, isPlanReview, nextAfterPlanApprove, GOAL_MODES, parseSkillFrontmatter, collectSkills, retestGoal, cancelRetestGoal, computeRetestOutcome, revertGoal, planRevertActions, archiveGoal, unarchiveGoal, undismissGoal, parseNumstat, truncateDiffText, sumUsage, resolveEntryUrl, parseGitLog, diffNewCommits, replayQueueLog, reconcileOrphanGoals, reorderQueue, sortQueueByPriority, TASK_PRIORITIES, validateWorkflowColumns, DEFAULT_WORKFLOW_COLUMNS, validateReviewDefinition, DEFAULT_REVIEW_DEFINITION, buildEphemeralSeedLog, buildEphemeralSeedProjects, trimTaskActivityForState, buildAskContext, WORKER_TOOLS, workerPrompt, verifyCfAccessJwt, resolveIdentity, goalVisibleTo, clampParallelLimit, canStartMore, nextRunnableTasks, goalsConflict, detectConflicts, pickFoldTarget, hasTestRelevantChanges, parseFailingTestNames, classifyTestGate, classifyVerifyGate, buildExecutionPlan, buildContextHandoffSummary, buildFailurePostmortem, appendFailureMemory, latestFailurePolicy, classifyChangeRisk, checkRunBudget, usageBudgetTokens, isRateLimited, nextResumeDelay, checkFreeTierLimit, resolveEntitlement, resolveCachedEntitlement, FREE_TIER_LIMITS, QUEUED_GOAL_STATUSES, verifyLicenseToken, shouldEmitSetupCompleted, pickAnalyticsUid, shouldEmitFreeExhausted, detectRequestLanguage, isNothingVerifiable, classifyComposerIntentHeuristic, detectPauseIntent, buildIntentPrompt, parseIntentResponse, buildBoardSnapshot, validateBoardSnapshot, boardIsEmpty, decideBoardPull, resolveConnectedAgents, pickAvailableAgent, pickUtilityAgent, utilityModel, liveTakeoverDecision, shouldOpenBrowserOnBoot, goalTaskTitle, buildGoalTask, RUN_DECL_FILE, parseRunDeclaration, SHOT_DIR, collectShotNames, parseGoalAddress, REPLY_OUTCOMES, REPLY_INTENTS, buildReplyIntentPrompt, parseReplyIntent, buildGoalMessage, serializeGoalMessage, parseGoalMessages } from './lib.mjs';
|
|
25
25
|
import { createSerialQueue } from './lib.mjs';
|
|
26
26
|
import { openPR } from './pr.mjs';
|
|
27
27
|
import { runVerification, exerciseUi } from './verify.mjs';
|
|
@@ -759,10 +759,43 @@ function readActivityLog(taskId) {
|
|
|
759
759
|
try { return readFileSync(activityLogFile(taskId), 'utf8').split('\n').filter(Boolean); }
|
|
760
760
|
catch { return []; }
|
|
761
761
|
}
|
|
762
|
+
|
|
763
|
+
// ---- the conversation on a goal (docs/design/ONE-CONVERSATION.md §1.1) -----
|
|
764
|
+
// Append-only JSONL per goal. Unlike the activity log (frozen once, at the end
|
|
765
|
+
// of a task) a conversation grows over the whole life of the goal, so it is
|
|
766
|
+
// appended as it happens. Never sent with /api/state — read on demand by
|
|
767
|
+
// GET /api/goals/:id/messages, so 100 cards don't drag 100 threads along.
|
|
768
|
+
// goal.messageCount is the only thing state carries: a number, not content, so
|
|
769
|
+
// the UI knows a thread exists without asking for one that was never written.
|
|
770
|
+
const goalMessagesFile = (goalId) => join(logDir, `messages-${goalId}.jsonl`);
|
|
771
|
+
function addGoalMessage(goal, { from, via, text, at } = {}) {
|
|
772
|
+
if (!goal) return null;
|
|
773
|
+
const msg = buildGoalMessage({ from, via, text, at });
|
|
774
|
+
if (!msg) return null;
|
|
775
|
+
try { appendFileSync(goalMessagesFile(goal.id), `${serializeGoalMessage(msg)}\n`); }
|
|
776
|
+
catch (e) { console.error(`[manager] goal message write failed for goal ${goal.id} (${e?.code || e})`); return null; }
|
|
777
|
+
goal.messageCount = (goal.messageCount ?? 0) + 1;
|
|
778
|
+
saveGoal(goal);
|
|
779
|
+
return msg;
|
|
780
|
+
}
|
|
781
|
+
function readGoalMessages(goalId) {
|
|
782
|
+
try { return parseGoalMessages(readFileSync(goalMessagesFile(goalId), 'utf8')); }
|
|
783
|
+
catch { return []; }
|
|
784
|
+
}
|
|
785
|
+
|
|
762
786
|
function saveTask(t) {
|
|
763
787
|
// freeze BEFORE the destructure strips `activity`, and mark the task so the UI knows a
|
|
764
788
|
// log exists without having to ask for one that was never written.
|
|
765
789
|
if (freezeActivityLog(t)) t.activityLog = true;
|
|
790
|
+
// The AI's side of the conversation (§1.1): what the worker reported back,
|
|
791
|
+
// verbatim. Once per task — saveTask runs on every status change, so the flag
|
|
792
|
+
// is set before the persist below and rides along in the log entry.
|
|
793
|
+
if (ACTIVITY_TERMINAL.has(t.status) && t.result && !t.messageLogged) {
|
|
794
|
+
t.messageLogged = true;
|
|
795
|
+
addGoalMessage(goals.find((g) => g.id === t.goalId), {
|
|
796
|
+
from: 'ai', via: t.reply ? 'thread' : 'composer', text: t.result,
|
|
797
|
+
});
|
|
798
|
+
}
|
|
766
799
|
const { activity, todos, ...persist } = t; // activity + todos are ephemeral (live only)
|
|
767
800
|
logAppend(JSON.stringify({ ...persist, kind: 'task' }));
|
|
768
801
|
const goal = goals.find((g) => g.id === t.goalId);
|
|
@@ -1221,6 +1254,12 @@ function detectRepos(homeDir) {
|
|
|
1221
1254
|
// if worktrees can't be created (e.g. not a git repo).
|
|
1222
1255
|
const goalWorkDirs = new Map();
|
|
1223
1256
|
function goalWorkDir(goal, project) {
|
|
1257
|
+
// Masa 2026-07-22: the isolated copy is now a choice, the way the Claude app's
|
|
1258
|
+
// `worktree` checkbox is. Off = the work happens in the folder the person is looking
|
|
1259
|
+
// at, which is what they want when they mean to watch it happen. On (the default)
|
|
1260
|
+
// keeps today's behaviour: a private copy per goal, so a run can never leave their
|
|
1261
|
+
// checkout half-edited.
|
|
1262
|
+
if (goal?.worktree === false) return project.dir;
|
|
1224
1263
|
const cached = goalWorkDirs.get(goal.id);
|
|
1225
1264
|
if (cached && existsSync(cached)) return cached;
|
|
1226
1265
|
let repoRoot;
|
|
@@ -1432,13 +1471,21 @@ async function planGoal(goal) {
|
|
|
1432
1471
|
'- 各タスクの title は「ユーザーが頼んだこと」を、ユーザーの言葉・語彙をそのまま活かして短く書く。実装のやり方(「〜するように直した」「〜を計算する」等)や、完了報告の文(「〜した」「〜しました」)を title にしない。エンジニアリングの手順名(設計/実装/テスト等)にもしない。例: 依頼「一回たたむとsettingボタンがズレるバグ修正して」→ title「settingボタンがズレるバグの修正」(✕「アニメーションが終わってから歯車の位置を計算するように直した」)。',
|
|
1433
1472
|
'- バグ修正の依頼では、title に「どの問題を直すか」がわかるように書く(解決する問題=ユーザーの言葉)。依頼に直し方の方針が書かれていればそれも短く添えてよいが、無ければ問題だけでよい。工程・実装詳細は detail に書く。',
|
|
1434
1473
|
'- detail には worker への完全な指示を書く:そのworkerが1人で実装・テスト・proofまで完結させる。工程ごとの兄弟タスクは来ない前提で書くこと。',
|
|
1435
|
-
|
|
1474
|
+
// passCondition is gone from this prompt on purpose (Masa 2026-07-22). The
|
|
1475
|
+
// rule used to be "only when the user wrote one" — a rule this layer asked
|
|
1476
|
+
// for and could not hold: measured twice on the identical request with no
|
|
1477
|
+
// condition in it, the intake AI invented one on the first run and not on
|
|
1478
|
+
// the second. The run where it invented one then failed its own invented
|
|
1479
|
+
// check and forced a full rework (>100k tokens) that pushed the work
|
|
1480
|
+
// TOWARD the wrong target. What to look at is the working AI's to state
|
|
1481
|
+
// (`check` in .manager-run.json, #235) — the intake AI only read the
|
|
1482
|
+
// request, so it cannot know what "correct" is.
|
|
1436
1483
|
'- 検証対象のページがあれば entry に書く(プロジェクト相対のhtmlパス、または http URL。無ければ null)。依頼中に書かれていればそれを使い、無ければリポジトリを見て推測してよい。',
|
|
1437
1484
|
'- 依頼が曖昧で重要な前提が1つ欠けている(例: 対象・範囲・形式が不明)か、既存の作業と矛盾する場合「のみ」、タスクではなく確認質問を返す: {"question":"確認したい1点(短く)","options":["選択肢A","選択肢B"]}。ただし基本は合理的な仮定で進めること。質問は本当に必要な時だけ、1問に絞る。',
|
|
1438
1485
|
// Once the user has answered a clarification, NEVER ask again — re-asking looped
|
|
1439
1486
|
// the answered question back onto the board. Override the rule above for re-plans.
|
|
1440
1487
|
goal.clarified ? '【最重要】ユーザーは既にこの依頼への確認質問に回答済み(依頼文末尾に [確認: … → …] として反映済み)。これ以上、確認質問(question)を返してはならない。回答を前提に、必ずタスクへ分解して返すこと。' : '',
|
|
1441
|
-
'- 出力はJSONのみ(前後に文章を書かない)。通常: {"entry":"path|null","tasks":[{"title":"ユーザーから見た成果(依頼と同じ言語で短く)","detail":"workerへの完全な指示"
|
|
1488
|
+
'- 出力はJSONのみ(前後に文章を書かない)。通常: {"entry":"path|null","tasks":[{"title":"ユーザーから見た成果(依頼と同じ言語で短く)","detail":"workerへの完全な指示"}]} / 確認が要る時だけ: {"question":"...(依頼と同じ言語)","options":["...","..."]}',
|
|
1442
1489
|
'',
|
|
1443
1490
|
goal.priorFailureMemory?.length ? [
|
|
1444
1491
|
'過去の失敗メモリ(同じ失敗を避けること):',
|
|
@@ -1492,7 +1539,11 @@ async function planGoal(goal) {
|
|
|
1492
1539
|
// DECOMPOSES the request into tasks the worker must follow. The request goes
|
|
1493
1540
|
// to the worker verbatim as ONE task; the worker (Claude Code / Codex) decides
|
|
1494
1541
|
// its own breakdown and emits it as its own TodoWrite, which the board shows.
|
|
1495
|
-
// One card = one request.
|
|
1542
|
+
// One card = one request. The pass condition no longer rides along at all:
|
|
1543
|
+
// it was the last place where an AI that had only READ the request decided
|
|
1544
|
+
// what "correct" means for it, and it did so at random (see the prompt note
|
|
1545
|
+
// above). Nothing here sets one, so `entry` now only survives as the page a
|
|
1546
|
+
// future explicit, user-written condition would open.
|
|
1496
1547
|
const title = goalTaskTitle(goal.text);
|
|
1497
1548
|
goal.plan = [title];
|
|
1498
1549
|
saveGoal(goal);
|
|
@@ -1500,7 +1551,6 @@ async function planGoal(goal) {
|
|
|
1500
1551
|
const num = (base.length ? Math.max(...base) : 0) + 1;
|
|
1501
1552
|
const task = buildGoalTask(goal, {
|
|
1502
1553
|
id: nextId++, num,
|
|
1503
|
-
passCondition: plan.tasks[0]?.passCondition ?? null,
|
|
1504
1554
|
createdAt: new Date().toISOString(),
|
|
1505
1555
|
});
|
|
1506
1556
|
tasks.push(task);
|
|
@@ -1825,7 +1875,11 @@ function resumeProject(projectId) {
|
|
|
1825
1875
|
|
|
1826
1876
|
// Slack風スレッド返信タスクの生成(/api/goals/:id/reply と /api/goals/:id/dismiss で共有)。
|
|
1827
1877
|
// runTask()のtask.reply分岐がgoal.sessionIdをresumeに渡して同じ会話を続ける。
|
|
1828
|
-
function queueReplyTask(goal, text) {
|
|
1878
|
+
function queueReplyTask(goal, text, { from = 'manager', via = 'composer' } = {}) {
|
|
1879
|
+
// Every follow-up on a goal is part of its conversation (§1.1). Recorded here
|
|
1880
|
+
// rather than at each call site so an internally-generated nudge (auto-retest
|
|
1881
|
+
// dismissal, fold-in) is kept too — with `from` saying whose words they are.
|
|
1882
|
+
addGoalMessage(goal, { from, via, text });
|
|
1829
1883
|
const failurePolicy = latestFailurePolicy(goal);
|
|
1830
1884
|
const promptText = failurePolicy ? `${failurePolicy.text}\n\n${text}` : text;
|
|
1831
1885
|
goal.executionPlan = buildExecutionPlan({
|
|
@@ -1863,6 +1917,38 @@ function queueReplyTask(goal, text) {
|
|
|
1863
1917
|
return task;
|
|
1864
1918
|
}
|
|
1865
1919
|
|
|
1920
|
+
// split (docs/design/ONE-CONVERSATION.md §1.3): 「それは別件」と返された時の受け皿。
|
|
1921
|
+
// 元のゴールには触らない——新しいチケットを1枚起こし、そこに「どこから生まれたか」だけ
|
|
1922
|
+
// 片方向の印(bornFrom)を残す。
|
|
1923
|
+
//
|
|
1924
|
+
// なぜ片方向か(Masa確定 2026-07-22): 必要なのは「なぜこのチケットが在るか」だけで、
|
|
1925
|
+
// 2つをまとめて管理したいわけではない。関係を双方向にすると「解除」の仕組みまで要り、
|
|
1926
|
+
// 作られないまま残る仕組みが1つ増える。片方向なら片方が消えても壊れない。
|
|
1927
|
+
//
|
|
1928
|
+
// 設定は親から引き継ぐ(プロジェクト・エージェント・モデル・effort)。別件とはいえ
|
|
1929
|
+
// 同じ場所で同じ人が続けている作業なので、ここで選び直させる理由が無い。
|
|
1930
|
+
function createSplitGoal(parent, text, identity) {
|
|
1931
|
+
const goal = {
|
|
1932
|
+
id: nextId++, projectId: parent.projectId, text: text.slice(0, 8000), status: 'planning',
|
|
1933
|
+
wantsPR: resolveWantsPR('auto', text, getReviewDefinition(parent.projectId).defaultWantsPR),
|
|
1934
|
+
model: parent.model, effort: parent.effort, agent: parent.agent, mode: 'auto',
|
|
1935
|
+
skill: null, images: [], source: resolveGoalSource('app'), sourceRef: null,
|
|
1936
|
+
executionPlan: buildExecutionPlan({ projectId: parent.projectId, text, previousSession: false }),
|
|
1937
|
+
plan: null, pr: undefined, createdAt: new Date().toISOString(),
|
|
1938
|
+
// 片方向の印。表示は app(新しいカード「#N の会話から生まれました」/元のカード
|
|
1939
|
+
// 「→ #M を切り出しました」)。engine は数字を1つ持つだけ。
|
|
1940
|
+
bornFrom: parent.id,
|
|
1941
|
+
owner: identity,
|
|
1942
|
+
};
|
|
1943
|
+
goals.push(goal);
|
|
1944
|
+
saveGoal(goal);
|
|
1945
|
+
addGoalMessage(goal, { from: 'you', via: 'review', text: goal.text });
|
|
1946
|
+
planGoal(goal).catch((e) => {
|
|
1947
|
+
goal.status = 'failed'; goal.prError = String(e).slice(0, 300); saveGoal(goal);
|
|
1948
|
+
});
|
|
1949
|
+
return goal;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1866
1952
|
function testOutputExcerpt(text) {
|
|
1867
1953
|
const lines = String(text ?? '').split('\n').map((l) => l.trimEnd()).filter(Boolean);
|
|
1868
1954
|
const interesting = lines.filter((l) =>
|
|
@@ -1990,7 +2076,24 @@ function readRunDeclaration(task, workDir) {
|
|
|
1990
2076
|
return;
|
|
1991
2077
|
}
|
|
1992
2078
|
task.run = { ...run, dir: workDir };
|
|
1993
|
-
|
|
2079
|
+
const how = run.cmd ?? run.url;
|
|
2080
|
+
if (how) sendProcessAct(task, `Worker declared how to see the result: ${how}`);
|
|
2081
|
+
if (run.title) sendProcessAct(task, `Worker named the work: ${run.title}`);
|
|
2082
|
+
if (run.compare) sendProcessAct(task, `Worker declared a before/after pair: ${run.compare.join(' → ')}`);
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
// A declared pair only survives if both pictures actually arrived. The card
|
|
2086
|
+
// draws a red box over whatever differs between the two, so a name matching no
|
|
2087
|
+
// collected shot would leave the reviewer half a comparison — show the plain
|
|
2088
|
+
// screenshots and say why instead. Runs after the shots are collected.
|
|
2089
|
+
function reconcileComparePair(task) {
|
|
2090
|
+
const pair = task.run?.compare;
|
|
2091
|
+
if (!pair) return;
|
|
2092
|
+
const have = new Set((task.shots ?? []).map((s) => s.name));
|
|
2093
|
+
const missing = pair.filter((n) => !have.has(n));
|
|
2094
|
+
if (!missing.length) return;
|
|
2095
|
+
task.run = { ...task.run, compare: null };
|
|
2096
|
+
sendAct(task, `before/after pair ignored — no screenshot named ${missing.join(', ')}`);
|
|
1994
2097
|
}
|
|
1995
2098
|
|
|
1996
2099
|
// Take whatever the worker photographed out of the worktree (SHOT_DIR) and put
|
|
@@ -2161,12 +2264,14 @@ async function runTask(task) {
|
|
|
2161
2264
|
return;
|
|
2162
2265
|
}
|
|
2163
2266
|
|
|
2164
|
-
|
|
2267
|
+
// No `lastFailure` any more: it existed only to tell the next attempt why our
|
|
2268
|
+
// check had rejected the last one, and there is no next attempt now.
|
|
2269
|
+
let verify = null, verdict = null, code = 0, result = '', usages = [], timedOut = false;
|
|
2165
2270
|
for (let attempt = 1; attempt <= maxAttempts; attempt++) {
|
|
2166
2271
|
let callT0 = Date.now();
|
|
2167
2272
|
const plan = goal?.executionPlan;
|
|
2168
2273
|
const resumeSession = shouldFreshSessionForPlan(plan) ? undefined : (goal?.sessionId ?? undefined);
|
|
2169
|
-
const prompt = [managerHandoffPrompt(goal, plan), workerPrompt(task, goal,
|
|
2274
|
+
const prompt = [managerHandoffPrompt(goal, plan), workerPrompt(task, goal, null, workerAgent(task.agent ?? goal?.agent))].filter(Boolean).join('\n\n');
|
|
2170
2275
|
sendProcessAct(task, `Starting ${workerAgent(task.agent ?? goal?.agent) === 'codex' ? 'Codex' : 'Claude Code'} worker (attempt ${attempt}/${maxAttempts}).`);
|
|
2171
2276
|
let r = await runWorkerAgent({
|
|
2172
2277
|
agent: task.agent ?? goal?.agent,
|
|
@@ -2195,7 +2300,7 @@ async function runTask(task) {
|
|
|
2195
2300
|
sendProcessAct(task, 'Starting a fresh worker session because the warm session could not resume.');
|
|
2196
2301
|
r = await runWorkerAgent({
|
|
2197
2302
|
agent: task.agent ?? goal?.agent,
|
|
2198
|
-
prompt: workerPrompt(task, goal,
|
|
2303
|
+
prompt: workerPrompt(task, goal, null, workerAgent(task.agent ?? goal?.agent)), cwd: workDir, tools: WORKER_TOOLS,
|
|
2199
2304
|
permissionMode,
|
|
2200
2305
|
model: task.model ?? goal?.model, effort: task.effort ?? goal?.effort, onEvent: (line) => sendAct(task, line),
|
|
2201
2306
|
onTodos: (todos) => sendTodos(task, todos),
|
|
@@ -2234,12 +2339,14 @@ async function runTask(task) {
|
|
|
2234
2339
|
eph?.kill();
|
|
2235
2340
|
}
|
|
2236
2341
|
sendAct(task, `verify: ${verdict.pass ? 'PASS' : verdict.inconclusive ? 'INCONCLUSIVE (check could not run)' : 'FAIL'} — ${verdict.detail.slice(0, 120)}`);
|
|
2237
|
-
//
|
|
2238
|
-
//
|
|
2239
|
-
//
|
|
2240
|
-
//
|
|
2241
|
-
|
|
2242
|
-
|
|
2342
|
+
// Whatever the verdict, the worker is not sent back (Masa 2026-07-22).
|
|
2343
|
+
// A rework used to be triggered by a FAIL — and the check that produced
|
|
2344
|
+
// the FAIL is something this layer authored from the request, not from
|
|
2345
|
+
// the work. When it was wrong, the rework spent more than the whole
|
|
2346
|
+
// original run and taught the AI to chase the wrong target. The failing
|
|
2347
|
+
// check is reported in review instead; a human decides whether to ask
|
|
2348
|
+
// for another pass. (Inconclusive already stopped here, #487.)
|
|
2349
|
+
break;
|
|
2243
2350
|
} catch (e) {
|
|
2244
2351
|
sendAct(task, `verify: could not run — ${String(e.message ?? e).slice(0, 120)}`);
|
|
2245
2352
|
verdict = null;
|
|
@@ -2249,28 +2356,21 @@ async function runTask(task) {
|
|
|
2249
2356
|
|
|
2250
2357
|
if (goal?.cancelled) return; // deleted during the verify loop → don't resurrect the task
|
|
2251
2358
|
task.secs = Math.round((Date.now() - t0) / 1000);
|
|
2252
|
-
// Status decision, most-authoritative first:
|
|
2359
|
+
// Status decision, most-authoritative first (taskStatusAfterVerify in lib):
|
|
2253
2360
|
// 1. an independent verify PASS = verified success — wins even if the worker
|
|
2254
2361
|
// was force-stopped afterwards (the change is proven good).
|
|
2255
2362
|
// 2. a forced STOP (10-min timeout / SIGTERM, exit 143) = 'interrupted', NOT
|
|
2256
|
-
// 'failed' — it's a retryable halt, not "the worker's code was wrong".
|
|
2257
|
-
//
|
|
2258
|
-
//
|
|
2259
|
-
//
|
|
2260
|
-
//
|
|
2261
|
-
// verifier is at fault, not necessarily the change, #487) is NOT
|
|
2262
|
-
// authoritative: fall through to the exit code so a cleanly-finished
|
|
2263
|
-
// worker still reaches review for a human, instead of a false 'failed'.
|
|
2264
|
-
// 5. no verify = the exit code decides.
|
|
2363
|
+
// 'failed' — it's a retryable halt, not "the worker's code was wrong".
|
|
2364
|
+
// 3. otherwise the exit code decides. A check that ran and FAILED no longer
|
|
2365
|
+
// scores 'failed' (Masa 2026-07-22) — it is reported in review like an
|
|
2366
|
+
// inconclusive one. Our check can be wrong about the work; a cleanly
|
|
2367
|
+
// finished worker must not be marked failed by it.
|
|
2265
2368
|
const forcedStop = isForcedStop(code, timedOut);
|
|
2266
2369
|
// A verdict only counts as authoritative when the check actually judged the
|
|
2267
2370
|
// change. An inconclusive verdict (check threw / returned garbage) is treated
|
|
2268
|
-
// like "no verdict"
|
|
2371
|
+
// like "no verdict" for the proof below.
|
|
2269
2372
|
const conclusive = verdict && !verdict.inconclusive;
|
|
2270
|
-
task.status = verdict
|
|
2271
|
-
: forcedStop ? 'interrupted'
|
|
2272
|
-
: conclusive ? 'failed'
|
|
2273
|
-
: (code === 0 ? 'done' : 'failed');
|
|
2373
|
+
task.status = taskStatusAfterVerify({ verdict, code, timedOut });
|
|
2274
2374
|
// Freeze the worker's own final TodoWrite list (P0b): live `todos` are stripped
|
|
2275
2375
|
// on save, so snapshot them into `todosFinal` — persisted (blacklist saveTask /
|
|
2276
2376
|
// trimTaskActivityForState keep it) so the board/review can show what the AI
|
|
@@ -2323,6 +2423,7 @@ async function runTask(task) {
|
|
|
2323
2423
|
// deliverable, and it must not show up in the diff or the PR.
|
|
2324
2424
|
readRunDeclaration(task, workDir);
|
|
2325
2425
|
collectWorkerShots(task, workDir);
|
|
2426
|
+
reconcileComparePair(task);
|
|
2326
2427
|
const after = await gitChanges(workDir);
|
|
2327
2428
|
task.changedFiles = after.filter((l) => !before.includes(l)).map((l) => l.slice(3));
|
|
2328
2429
|
sendProcessAct(task, `Detected ${task.changedFiles.length} changed file${task.changedFiles.length === 1 ? '' : 's'} from this task.`);
|
|
@@ -2588,11 +2689,15 @@ async function summarizeForReview(goal, siblings, dir, reviewDefinition) {
|
|
|
2588
2689
|
const lang = reviewDefinition.language === 'auto' ? detectRequestLanguage(goal.text) : (reviewDefinition.language || 'ja');
|
|
2589
2690
|
const changed = [...new Set(siblings.flatMap((t) => t.changedFiles ?? []))].slice(0, 20);
|
|
2590
2691
|
const reports = siblings.filter((t) => !t.reply).map((t) => `- ${t.title}: ${(t.result ?? '').replace(/\s+/g, ' ').slice(0, 300)}`).join('\n');
|
|
2591
|
-
//
|
|
2592
|
-
//
|
|
2593
|
-
//
|
|
2692
|
+
// The name of the work, from the agent that did it (task.run.title). It wins
|
|
2693
|
+
// over both the summarizer and the request text: the summarizer only ever read
|
|
2694
|
+
// the same request the user typed, and the request text is the sentence the
|
|
2695
|
+
// title is supposed to be an answer to. Masa 2026-07-22.
|
|
2696
|
+
const declaredTitle = siblings.map((t) => t.run?.title).find(Boolean) ?? null;
|
|
2697
|
+
// fallback: the request text, still — but now only when nobody named the work
|
|
2698
|
+
// at all (an old worker, or one that wrote no declaration).
|
|
2594
2699
|
const fallback = {
|
|
2595
|
-
title: (goal.text ?? '').replace(/\s+/g, ' ').slice(0, 60),
|
|
2700
|
+
title: declaredTitle ?? (goal.text ?? '').replace(/\s+/g, ' ').slice(0, 60),
|
|
2596
2701
|
check: '',
|
|
2597
2702
|
changed: (goal.plan?.[0] ?? goal.text ?? '').replace(/\s+/g, ' ').slice(0, 80),
|
|
2598
2703
|
};
|
|
@@ -2600,7 +2705,8 @@ async function summarizeForReview(goal, siblings, dir, reviewDefinition) {
|
|
|
2600
2705
|
const prompt = buildReviewSummaryPrompt({ lang, goalText: goal.text, changed, reports });
|
|
2601
2706
|
try {
|
|
2602
2707
|
const r = await runUtility({ prompt, cwd: dir, tools: 'Read' });
|
|
2603
|
-
|
|
2708
|
+
const summary = parseReviewSummary(r.result, fallback);
|
|
2709
|
+
return declaredTitle ? { ...summary, title: declaredTitle } : summary;
|
|
2604
2710
|
} catch { /* fall through */ }
|
|
2605
2711
|
return fallback;
|
|
2606
2712
|
}
|
|
@@ -2734,7 +2840,7 @@ async function finishGoalIfComplete(goal, project, activityTask = null) {
|
|
|
2734
2840
|
// The target re-opens: it has new work to do, and createGoalPR's rework path
|
|
2735
2841
|
// will push the result onto the PR branch it already owns.
|
|
2736
2842
|
foldTarget.status = 'running';
|
|
2737
|
-
queueReplyTask(foldTarget, goal.text.slice(0, 8000));
|
|
2843
|
+
queueReplyTask(foldTarget, goal.text.slice(0, 8000), { from: 'you', via: 'composer' });
|
|
2738
2844
|
saveGoal(foldTarget);
|
|
2739
2845
|
// The folded goal keeps its row (PRD §3.5: a submission is never dropped) —
|
|
2740
2846
|
// it becomes a pointer at the goal that now carries its work.
|
|
@@ -3159,7 +3265,14 @@ const server = createServer(async (req, res) => {
|
|
|
3159
3265
|
price: await getBillingPrice(),
|
|
3160
3266
|
siteUrl: BILLING_API_URL || null,
|
|
3161
3267
|
};
|
|
3162
|
-
|
|
3268
|
+
// The branch each project is on — the Context Bar prints it next to the folder, and
|
|
3269
|
+
// it is read here rather than guessed (a branch nobody can see is not a branch).
|
|
3270
|
+
const projectsWithBranch = projects.map((p) => {
|
|
3271
|
+
let branch = null;
|
|
3272
|
+
try { branch = gitSync(p.dir, ['rev-parse', '--abbrev-ref', 'HEAD']); } catch { /* not a repo → no branch, and the bar shows none */ }
|
|
3273
|
+
return branch ? { ...p, branch } : p;
|
|
3274
|
+
});
|
|
3275
|
+
return json(res, 200, { projects: projectsWithBranch, goals: visibleGoals, tasks: trimTaskActivityForState(visibleTasks), models: MODELS, agentModels: { 'claude-code': MODELS, codex: CODEX_MODELS }, agentEfforts: { 'claude-code': CLAUDE_EFFORTS, codex: CODEX_EFFORTS }, agents: AVAILABLE_AGENTS, connectCommand, queueOrder, externalActivity, workflowColumns: projectColumns, reviewDefinitions: projectReviewDefs, runningCounts, parallelLimits, uiVersion: uiVersion(), billing, auth: publicAuth() });
|
|
3163
3276
|
}
|
|
3164
3277
|
|
|
3165
3278
|
// Billing (docs/BILLING-LAUNCH-PLAN.md): activate the license key a user
|
|
@@ -3287,6 +3400,16 @@ const server = createServer(async (req, res) => {
|
|
|
3287
3400
|
return json(res, r.action === 'busy' ? 409 : 200, r);
|
|
3288
3401
|
}
|
|
3289
3402
|
|
|
3403
|
+
// The folders a person could actually point a project at: the git repos sitting
|
|
3404
|
+
// directly under HOME. A browser cannot open an OS folder dialog that yields a real
|
|
3405
|
+
// path (showDirectoryPicker hands back a handle, never a path), so a detected list
|
|
3406
|
+
// plus typing a path IS the picker — and the detection already existed here, feeding
|
|
3407
|
+
// the "which folder?" question card. This endpoint only exposes what it already
|
|
3408
|
+
// finds; nothing new is scanned, invented, or ranked.
|
|
3409
|
+
if (url.pathname === '/api/repos' && req.method === 'GET') {
|
|
3410
|
+
return json(res, 200, { repos: detectRepos(HOME), home: HOME });
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3290
3413
|
if (url.pathname === '/api/projects' && req.method === 'POST') {
|
|
3291
3414
|
let body = '';
|
|
3292
3415
|
req.on('data', (d) => { body += d; });
|
|
@@ -3337,6 +3460,21 @@ const server = createServer(async (req, res) => {
|
|
|
3337
3460
|
try {
|
|
3338
3461
|
const input = JSON.parse(body || '{}');
|
|
3339
3462
|
if (typeof input.name === 'string' && input.name.trim()) project.name = input.name.trim().slice(0, 80);
|
|
3463
|
+
// Moving a project to another folder. Refused loudly when the path is not
|
|
3464
|
+
// somewhere work can happen: a folder that does not exist, or is HOME itself,
|
|
3465
|
+
// or is not a git repository. Accepting it here would look like it worked and
|
|
3466
|
+
// then fail silently on the next goal — the worst of the two failures, and the
|
|
3467
|
+
// reason the "which folder?" card exists at all.
|
|
3468
|
+
if (input.dir !== undefined) {
|
|
3469
|
+
const dir = String(input.dir ?? '').trim();
|
|
3470
|
+
if (!dir) return json(res, 400, { error: 'folder is required' });
|
|
3471
|
+
const abs = dir.startsWith('~') ? join(HOME, dir.slice(1)) : resolve(dir);
|
|
3472
|
+
if (!existsSync(abs)) return json(res, 400, { error: 'no such folder', dir: abs });
|
|
3473
|
+
if (needsProjectFolder({ dir: abs, homeDir: HOME, isRepo: isGitRepo(abs) })) {
|
|
3474
|
+
return json(res, 400, { error: 'not a git repository', dir: abs });
|
|
3475
|
+
}
|
|
3476
|
+
project.dir = abs;
|
|
3477
|
+
}
|
|
3340
3478
|
saveProjects();
|
|
3341
3479
|
send({ ev: 'projects', projects });
|
|
3342
3480
|
return json(res, 200, { project, projects });
|
|
@@ -3383,7 +3521,7 @@ const server = createServer(async (req, res) => {
|
|
|
3383
3521
|
req.on('data', (d) => { body += d; });
|
|
3384
3522
|
req.on('end', async () => {
|
|
3385
3523
|
try {
|
|
3386
|
-
const { projectId, text, pr, images, model, effort, source, pending, review, note, mode, skill, agent } = JSON.parse(body);
|
|
3524
|
+
const { projectId, text, pr, images, model, effort, source, pending, review, note, mode, skill, agent, worktree } = JSON.parse(body);
|
|
3387
3525
|
const project = projects.find((p) => p.id === projectId);
|
|
3388
3526
|
if (!project || !text?.trim()) return json(res, 400, { error: 'projectId and text required' });
|
|
3389
3527
|
// Chat-driven play/pause (Masa: "チャットで再生一時停止はおせる"). Deterministic
|
|
@@ -3401,6 +3539,32 @@ const server = createServer(async (req, res) => {
|
|
|
3401
3539
|
return json(res, 200, { kind: 'chat', reply: `${project.name} を再開しました。止めた作業を続きから進めます。` });
|
|
3402
3540
|
}
|
|
3403
3541
|
}
|
|
3542
|
+
// 宛先 (docs/design/ONE-CONVERSATION.md §1.2): 「#12 の件だけど…」と書けたら、
|
|
3543
|
+
// その番号のチケット宛て。決定論——我々の層は何も推測しない。
|
|
3544
|
+
//
|
|
3545
|
+
// Checked BEFORE the chat/task classifier on purpose: writing a number is an
|
|
3546
|
+
// explicit statement of where the words go, and a guess (however cheap) must
|
|
3547
|
+
// not be able to overrule it. "#12 これで合ってる?" reads as chat to the
|
|
3548
|
+
// heuristic; it is a follow-up on #12.
|
|
3549
|
+
//
|
|
3550
|
+
// Falls through silently when the number names nothing this person can act on
|
|
3551
|
+
// (unknown id, another project, someone else's goal, already finished). The
|
|
3552
|
+
// words then become a new ticket, which is what happens today anyway — a typo
|
|
3553
|
+
// must never make a request disappear.
|
|
3554
|
+
const identity = identityFor(req);
|
|
3555
|
+
if (!pending && !review) {
|
|
3556
|
+
const addr = parseGoalAddress(text);
|
|
3557
|
+
const target = addr && goals.find((g) => g.id === addr.goalId
|
|
3558
|
+
&& g.projectId === projectId
|
|
3559
|
+
&& goalVisibleTo(g, identity, MANAGER_OWNER_EMAIL)
|
|
3560
|
+
&& !['done', 'reverted', 'skipped', 'rejected'].includes(g.status));
|
|
3561
|
+
if (target) {
|
|
3562
|
+
// A follow-up on a goal already awaiting review re-opens work on it.
|
|
3563
|
+
if (target.status === 'review') { target.status = 'running'; saveGoal(target); }
|
|
3564
|
+
const replyTask = queueReplyTask(target, text.trim().slice(0, 8000), { from: 'you', via: 'composer' });
|
|
3565
|
+
return json(res, 200, { ...target, addressedTo: target.id, replyTaskId: replyTask.id });
|
|
3566
|
+
}
|
|
3567
|
+
}
|
|
3404
3568
|
// Onboarding (docs/HANDOFF-ONBOARDING-conversational.md, SLICE 2): the
|
|
3405
3569
|
// composer is conversation-first. A chat/help/settings message ("what can
|
|
3406
3570
|
// you do?", "reply in English", a greeting) gets a conversational reply
|
|
@@ -3427,29 +3591,14 @@ const server = createServer(async (req, res) => {
|
|
|
3427
3591
|
if (parsed.intent === 'chat') return json(res, 200, { kind: 'chat', reply: parsed.reply.slice(0, 2000), lang: intentLang });
|
|
3428
3592
|
} catch { /* LLM unavailable → fall through to goal creation */ }
|
|
3429
3593
|
}
|
|
3430
|
-
//
|
|
3431
|
-
//
|
|
3432
|
-
//
|
|
3433
|
-
//
|
|
3434
|
-
//
|
|
3435
|
-
//
|
|
3436
|
-
//
|
|
3437
|
-
//
|
|
3438
|
-
const identity = identityFor(req);
|
|
3439
|
-
if (!pending && !review) {
|
|
3440
|
-
// Stage 2: only fold into a goal this identity can actually see —
|
|
3441
|
-
// otherwise a near-duplicate message from user B could silently
|
|
3442
|
-
// attach as a reply task onto someone else's private goal (and
|
|
3443
|
-
// leak that goal's text back to B in the response).
|
|
3444
|
-
const candidates = goals.filter((g) => g.projectId === projectId && g.sessionId && ['running', 'review'].includes(g.status) && goalVisibleTo(g, identity, MANAGER_OWNER_EMAIL));
|
|
3445
|
-
const overlap = findOverlappingGoal(text.trim(), candidates);
|
|
3446
|
-
if (overlap) {
|
|
3447
|
-
// A follow-up on a goal already awaiting review re-opens work on it.
|
|
3448
|
-
if (overlap.goal.status === 'review') { overlap.goal.status = 'running'; saveGoal(overlap.goal); }
|
|
3449
|
-
const replyTask = queueReplyTask(overlap.goal, text.trim().slice(0, 8000));
|
|
3450
|
-
return json(res, 200, { ...overlap.goal, mergedInto: overlap.goal.id, replyTaskId: replyTask.id, overlapScore: overlap.score });
|
|
3451
|
-
}
|
|
3452
|
-
}
|
|
3594
|
+
// (REMOVED 2026-07-22, ONE-CONVERSATION.md §1.2) The 0.72 auto-merge used to
|
|
3595
|
+
// sit here: any new request whose WORDS looked ~72% like an in-flight goal was
|
|
3596
|
+
// silently folded into it as a follow-up. That was our layer guessing "this is
|
|
3597
|
+
// probably the same thing" — the exact move this product exists to stop doing.
|
|
3598
|
+
// When it was right nobody noticed; when it was wrong the request vanished into
|
|
3599
|
+
// someone else's ticket. Replaced by the address above: the person says which
|
|
3600
|
+
// ticket, or it becomes its own.
|
|
3601
|
+
//
|
|
3453
3602
|
// Billing (docs/BILLING-LAUNCH-PLAN.md §2/§5): gate actual new-goal
|
|
3454
3603
|
// creation on the free tier / paid entitlement. Placed after the
|
|
3455
3604
|
// dedupe fold-in above on purpose — folding into an existing goal as
|
|
@@ -3502,6 +3651,11 @@ const server = createServer(async (req, res) => {
|
|
|
3502
3651
|
mode: (!review && GOAL_MODES.includes(mode)) ? mode : 'auto',
|
|
3503
3652
|
// SKILL: an optional user/project skill (or command) to invoke first.
|
|
3504
3653
|
skill: (typeof skill === 'string' && skill.trim()) ? skill.trim().slice(0, 80) : null,
|
|
3654
|
+
// WORKTREE (Masa 2026-07-22, the Claude app's own checkbox): true/undefined =
|
|
3655
|
+
// a private copy per goal, which is what has always happened. Explicit false =
|
|
3656
|
+
// work in the folder the person is looking at. Only an explicit false is
|
|
3657
|
+
// stored, so every goal ever written keeps meaning what it meant.
|
|
3658
|
+
worktree: worktree === false ? false : undefined,
|
|
3505
3659
|
images: Array.isArray(images) ? images.slice(0, 6) : [],
|
|
3506
3660
|
source: resolveGoalSource(source), sourceRef: null,
|
|
3507
3661
|
executionPlan: buildExecutionPlan({
|
|
@@ -3517,6 +3671,10 @@ const server = createServer(async (req, res) => {
|
|
|
3517
3671
|
};
|
|
3518
3672
|
goals.push(goal);
|
|
3519
3673
|
saveGoal(goal);
|
|
3674
|
+
// The conversation starts with what the person actually asked for, so a
|
|
3675
|
+
// thread opened later reads from the beginning instead of starting at
|
|
3676
|
+
// the first follow-up (§1.1: 入口が違っても1本の列).
|
|
3677
|
+
addGoalMessage(goal, { from: 'you', via: 'composer', text: goal.text, at: goal.createdAt });
|
|
3520
3678
|
// pending = deliberately shelved (Phase 2 material): never planned,
|
|
3521
3679
|
// never queued, until POST /api/goals/:id/activate. review-only items
|
|
3522
3680
|
// are terminal-until-human too, so they also skip planGoal.
|
|
@@ -3669,6 +3827,17 @@ const server = createServer(async (req, res) => {
|
|
|
3669
3827
|
return json(res, 200, { lines: task.activity?.length ? task.activity : readActivityLog(task.id) });
|
|
3670
3828
|
}
|
|
3671
3829
|
|
|
3830
|
+
// The conversation on one goal, read on demand (see addGoalMessage above).
|
|
3831
|
+
// Deliberately NOT part of /api/state: every card would drag its whole thread
|
|
3832
|
+
// along on every poll. Same "only when asked" shape as the implementation log.
|
|
3833
|
+
const messagesMatch = url.pathname.match(/^\/api\/goals\/(\d+)\/messages$/);
|
|
3834
|
+
if (messagesMatch && req.method === 'GET') {
|
|
3835
|
+
const goal = goals.find((g) => g.id === Number(messagesMatch[1]));
|
|
3836
|
+
if (!goal) return json(res, 404, { error: 'goal not found' });
|
|
3837
|
+
if (!requireGoalOwnership(req, res, goal)) return;
|
|
3838
|
+
return json(res, 200, { messages: readGoalMessages(goal.id) });
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3672
3841
|
// close a stalled task without running it (failure-taxonomy: skipped)
|
|
3673
3842
|
const skipMatch = url.pathname.match(/^\/api\/tasks\/(\d+)\/skip$/);
|
|
3674
3843
|
if (skipMatch && req.method === 'POST') {
|
|
@@ -4008,7 +4177,7 @@ const server = createServer(async (req, res) => {
|
|
|
4008
4177
|
goal.blocked = null;
|
|
4009
4178
|
saveGoal(goal);
|
|
4010
4179
|
}
|
|
4011
|
-
json(res, 200, queueReplyTask(goal, text.trim()));
|
|
4180
|
+
json(res, 200, queueReplyTask(goal, text.trim(), { from: 'you', via: 'thread' }));
|
|
4012
4181
|
} catch { json(res, 400, { error: 'bad json' }); }
|
|
4013
4182
|
});
|
|
4014
4183
|
return;
|
|
@@ -4198,6 +4367,58 @@ const server = createServer(async (req, res) => {
|
|
|
4198
4367
|
return json(res, 200, payload);
|
|
4199
4368
|
}
|
|
4200
4369
|
|
|
4370
|
+
// 返事の行き先を AI 本人に決めてもらう (ONE-CONVERSATION.md §1.4)。
|
|
4371
|
+
//
|
|
4372
|
+
// 判定は1往復だけの軽い仕事なので、作業した本人ではなくユーティリティのモデルに
|
|
4373
|
+
// 聞く(答えを書く answer 本体は本人に聞く——あちらは中身を知っている必要がある)。
|
|
4374
|
+
// 呼べなかった時は 'unsure'。「たぶん continue」で走り出すより、人に1タップ選ばせる
|
|
4375
|
+
// ほうが安い。
|
|
4376
|
+
async function judgeReplyIntent(goal, reply) {
|
|
4377
|
+
let parsed;
|
|
4378
|
+
try {
|
|
4379
|
+
const r = await runUtility({ prompt: buildReplyIntentPrompt({ goalText: goal.text, reply }), cwd: ROOT, tools: 'Read' });
|
|
4380
|
+
parsed = parseReplyIntent(r.result);
|
|
4381
|
+
} catch { parsed = { outcome: 'unsure', read: false }; }
|
|
4382
|
+
// Could not ask at all → do what a reply has always done (continue). Blocking the
|
|
4383
|
+
// reply on four choices would leave a machine with no reachable agent unable to
|
|
4384
|
+
// send anything back, and an answer could not have been written there anyway.
|
|
4385
|
+
return parsed.read ? parsed.outcome : 'continue';
|
|
4386
|
+
}
|
|
4387
|
+
|
|
4388
|
+
// 「聞いてるだけ」への返事 (ONE-CONVERSATION.md §1.3 answer)。
|
|
4389
|
+
//
|
|
4390
|
+
// 答えるのは**作業した AI 本人**= goal.sessionId を resume する。状況一覧しか
|
|
4391
|
+
// 知らない別AIでは「なぜそうしたか」に答えられない(Masa確定 2026-07-22)。
|
|
4392
|
+
// コードは1文字も変わらない: ツールは Read だけ、permissionMode は 'plan'
|
|
4393
|
+
// (Codex 側は read-only サンドボックスに落ちる)。タスクも作らないので看板も
|
|
4394
|
+
// 動かない——answer は「何も動かさない」が仕様。
|
|
4395
|
+
// 失敗しても人が待ちぼうけにならないよう、理由を manager の発言として会話に残す。
|
|
4396
|
+
async function answerGoalQuestion(goal, question) {
|
|
4397
|
+
const project = projects.find((p) => p.id === goal.projectId);
|
|
4398
|
+
const cwd = project?.dir && existsSync(project.dir) ? project.dir : ROOT;
|
|
4399
|
+
const prompt = [
|
|
4400
|
+
'あなたが担当した作業について、依頼者から質問が来ています。',
|
|
4401
|
+
'コードは変更せず(読み取りしかできません)、質問にだけ簡潔に答えてください。',
|
|
4402
|
+
'これは作り直しの指示ではありません。答えだけを書いてください。',
|
|
4403
|
+
'',
|
|
4404
|
+
`依頼: ${String(goal.text ?? '').slice(0, 800)}`,
|
|
4405
|
+
`質問: ${question.slice(0, 1000)}`,
|
|
4406
|
+
].join('\n');
|
|
4407
|
+
try {
|
|
4408
|
+
const r = await runWorkerAgent({
|
|
4409
|
+
agent: goal.agent, model: goal.model, prompt, cwd,
|
|
4410
|
+
tools: 'Read', permissionMode: 'plan',
|
|
4411
|
+
resume: goal.sessionId ?? undefined,
|
|
4412
|
+
onChild: (c) => trackGoalWorker(goal.id, c),
|
|
4413
|
+
});
|
|
4414
|
+
const answer = String(r?.result ?? '').trim();
|
|
4415
|
+
if (answer) addGoalMessage(goal, { from: 'ai', via: 'review', text: answer });
|
|
4416
|
+
else addGoalMessage(goal, { from: 'manager', via: 'review', text: '答えが空でした。もう一度聞いてみてください。' });
|
|
4417
|
+
} catch (e) {
|
|
4418
|
+
addGoalMessage(goal, { from: 'manager', via: 'review', text: `答えられませんでした: ${String(e?.message ?? e).slice(0, 200)}` });
|
|
4419
|
+
}
|
|
4420
|
+
}
|
|
4421
|
+
|
|
4201
4422
|
// レビュー詳細パネルのDismissボタン: 修正指示(空でも「差し戻し」扱い)をgoalのスレッド
|
|
4202
4423
|
// 返信としてworkerに渡し、goalをrunning(doing相当)へ戻す。
|
|
4203
4424
|
const dismissMatch = url.pathname.match(/^\/api\/goals\/(\d+)\/dismiss$/);
|
|
@@ -4213,17 +4434,74 @@ const server = createServer(async (req, res) => {
|
|
|
4213
4434
|
saveGoal(goal);
|
|
4214
4435
|
return json(res, 200, { goal });
|
|
4215
4436
|
}
|
|
4216
|
-
|
|
4217
|
-
if (!result.ok) return json(res, 409, { error: result.error });
|
|
4437
|
+
if (goal.status !== 'review') return json(res, 409, { error: dismissGoal({ goalStatus: goal.status }).error });
|
|
4218
4438
|
let body = '';
|
|
4219
4439
|
req.on('data', (d) => { body += d; });
|
|
4220
|
-
req.on('end', () => {
|
|
4221
|
-
let text = '';
|
|
4222
|
-
try {
|
|
4440
|
+
req.on('end', async () => {
|
|
4441
|
+
let text = '', outcome = 'continue', auto = false;
|
|
4442
|
+
try {
|
|
4443
|
+
const parsed = JSON.parse(body || '{}');
|
|
4444
|
+
text = String(parsed.text ?? '').trim();
|
|
4445
|
+
if (REPLY_OUTCOMES.includes(parsed.outcome)) outcome = parsed.outcome;
|
|
4446
|
+
auto = parsed.outcome === 'auto';
|
|
4447
|
+
} catch {}
|
|
4448
|
+
|
|
4449
|
+
// outcome:'auto' = 決めるのは AI 本人 (§1.4)。人の言葉を1回だけ渡して、返って
|
|
4450
|
+
// きた行き先のとおりに配線する。我々はキーワードも類似度も見ない。
|
|
4451
|
+
// 迷ったと言われたら**ゴールに触らずに**選択肢を返す——ここで勝手に continue に
|
|
4452
|
+
// 倒すと、質問しただけの人のコードが動き出す(それが直したかった壊れ方)。
|
|
4453
|
+
if (auto) {
|
|
4454
|
+
if (!text) return json(res, 400, { error: 'text required' });
|
|
4455
|
+
const judged = await judgeReplyIntent(goal, text);
|
|
4456
|
+
if (judged === 'unsure') return json(res, 200, { goal, outcome: 'unsure', choices: REPLY_OUTCOMES });
|
|
4457
|
+
outcome = judged;
|
|
4458
|
+
}
|
|
4459
|
+
// 返事の行き先4種 (ONE-CONVERSATION.md §1.3). 既定は今までどおり continue なので、
|
|
4460
|
+
// outcome を送ってこない今の UI の挙動は1ミリも変わらない。
|
|
4461
|
+
const result = dismissGoal({ goalStatus: goal.status, outcome });
|
|
4462
|
+
if (!result.ok) return json(res, 409, { error: result.error });
|
|
4463
|
+
|
|
4464
|
+
// split: 元のゴールには触らない。新しいチケットが1枚生まれるだけ。
|
|
4465
|
+
if (result.splits) {
|
|
4466
|
+
if (!text) return json(res, 400, { error: 'text required to split' });
|
|
4467
|
+
// 新しいゴールが1枚増える=無料枠の対象。continue/rescope は増えないので通らない。
|
|
4468
|
+
const gate = await requireEntitlementGate(identityFor(req));
|
|
4469
|
+
if (!gate.allowed) return json(res, 402, { error: 'free-tier limit reached', blocked: gate.blocked });
|
|
4470
|
+
addGoalMessage(goal, { from: 'you', via: 'review', text });
|
|
4471
|
+
const born = createSplitGoal(goal, text, identityFor(req));
|
|
4472
|
+
return json(res, 200, { goal, outcome, splitInto: born.id, born });
|
|
4473
|
+
}
|
|
4474
|
+
|
|
4475
|
+
// answer: 聞かれただけ。ゴールは review のまま、ワーカーも起こさない(§1.3)。
|
|
4476
|
+
// 答えるのは**その作業をやった AI 本人**(goal.sessionId を resume)なので
|
|
4477
|
+
// 「なぜそうしたか」に答えられる。HTTP は待たせない——答えは会話に1発言
|
|
4478
|
+
// 積まれ、SSE の goal イベント(messageCount)で画面に出る。
|
|
4479
|
+
if (result.answers) {
|
|
4480
|
+
if (!text) return json(res, 400, { error: 'text required to answer' });
|
|
4481
|
+
addGoalMessage(goal, { from: 'you', via: 'review', text });
|
|
4482
|
+
json(res, 200, { goal, outcome, answering: true });
|
|
4483
|
+
answerGoalQuestion(goal, text);
|
|
4484
|
+
return;
|
|
4485
|
+
}
|
|
4486
|
+
|
|
4487
|
+
// rescope: チケットの文章が書き換わるのはここだけ。人が「そうじゃなくて、こう」と
|
|
4488
|
+
// 言い直した以上、古い依頼文を掲げたままにするのは嘘になる。元の言葉は会話に残る
|
|
4489
|
+
// (§1.1)ので失われない。
|
|
4490
|
+
// 断る判定はゴールに触る前に済ませる——400 を返しながら状態だけ動いていた、が
|
|
4491
|
+
// 一番たちの悪い壊れ方。
|
|
4492
|
+
if (result.rewritesText) {
|
|
4493
|
+
if (!text) return json(res, 400, { error: 'text required to rescope' });
|
|
4494
|
+
addGoalMessage(goal, { from: 'you', via: 'review', text });
|
|
4495
|
+
goal.text = text.slice(0, 8000);
|
|
4496
|
+
}
|
|
4223
4497
|
goal.status = result.status;
|
|
4224
4498
|
saveGoal(goal);
|
|
4225
|
-
|
|
4226
|
-
|
|
4499
|
+
// rescope はワーカーを起こさない——「いったん止めて考え直す」なので、走り出したら
|
|
4500
|
+
// 意味が無い。To Do の下で Start を待つ。
|
|
4501
|
+
if (!result.spawnsWorker) return json(res, 200, { goal, outcome });
|
|
4502
|
+
|
|
4503
|
+
const task = queueReplyTask(goal, text || '差し戻し。修正してください。', { from: text ? 'you' : 'manager', via: 'review' });
|
|
4504
|
+
json(res, 200, { goal, outcome, task });
|
|
4227
4505
|
});
|
|
4228
4506
|
return;
|
|
4229
4507
|
}
|