286 lines
9.8 KiB
TypeScript
286 lines
9.8 KiB
TypeScript
/**
|
|
* dispatch.ts — Core dispatch logic shared by work_start, work_heartbeat, and projectTick.
|
|
*
|
|
* Handles: session lookup, spawn/reuse via Gateway RPC, task dispatch via CLI,
|
|
* state update (activateWorker), and audit logging.
|
|
*/
|
|
import { execFile, spawn } from "node:child_process";
|
|
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import { promisify } from "node:util";
|
|
import { log as auditLog } from "./audit.js";
|
|
import {
|
|
type Project,
|
|
activateWorker,
|
|
getSessionForTier,
|
|
getWorker,
|
|
} from "./projects.js";
|
|
import { TIER_EMOJI, isTier, resolveTierToModel } from "./tiers.js";
|
|
|
|
const execFileAsync = promisify(execFile);
|
|
|
|
export type DispatchOpts = {
|
|
workspaceDir: string;
|
|
agentId?: string;
|
|
groupId: string;
|
|
project: Project;
|
|
issueId: number;
|
|
issueTitle: string;
|
|
issueDescription: string;
|
|
issueUrl: string;
|
|
role: "dev" | "qa";
|
|
/** Developer tier (junior, medior, senior, qa) or raw model ID */
|
|
tier: string;
|
|
/** Label to transition FROM (e.g. "To Do", "To Test", "To Improve") */
|
|
fromLabel: string;
|
|
/** Label to transition TO (e.g. "Doing", "Testing") */
|
|
toLabel: string;
|
|
/** Function to transition labels (injected to avoid provider dependency) */
|
|
transitionLabel: (issueId: number, from: string, to: string) => Promise<void>;
|
|
/** Plugin config for model resolution */
|
|
pluginConfig?: Record<string, unknown>;
|
|
/** Orchestrator's session key (used as spawnedBy for subagent tracking) */
|
|
sessionKey?: string;
|
|
};
|
|
|
|
export type DispatchResult = {
|
|
sessionAction: "spawn" | "send";
|
|
sessionKey: string;
|
|
tier: string;
|
|
model: string;
|
|
announcement: string;
|
|
};
|
|
|
|
/**
|
|
* Build the task message sent to a worker session.
|
|
* Reads role-specific instructions from workspace/roles/<project>/<role>.md
|
|
* with fallback to workspace/roles/default/<role>.md.
|
|
*/
|
|
export async function buildTaskMessage(opts: {
|
|
workspaceDir: string;
|
|
projectName: string;
|
|
role: "dev" | "qa";
|
|
issueId: number;
|
|
issueTitle: string;
|
|
issueDescription: string;
|
|
issueUrl: string;
|
|
repo: string;
|
|
baseBranch: string;
|
|
groupId: string;
|
|
}): Promise<string> {
|
|
const {
|
|
workspaceDir, projectName, role, issueId, issueTitle,
|
|
issueDescription, issueUrl, repo, baseBranch, groupId,
|
|
} = opts;
|
|
|
|
const roleInstructions = await loadRoleInstructions(workspaceDir, projectName, role);
|
|
|
|
const availableResults =
|
|
role === "dev"
|
|
? '"done" (completed successfully) or "blocked" (cannot complete, need help)'
|
|
: '"pass" (approved), "fail" (issues found), "refine" (needs human input), or "blocked" (cannot complete)';
|
|
|
|
const parts = [
|
|
`${role.toUpperCase()} task for project "${projectName}" — Issue #${issueId}`,
|
|
``,
|
|
issueTitle,
|
|
issueDescription ? `\n${issueDescription}` : "",
|
|
``,
|
|
`Repo: ${repo} | Branch: ${baseBranch} | ${issueUrl}`,
|
|
`Project group ID: ${groupId}`,
|
|
];
|
|
|
|
if (roleInstructions) {
|
|
parts.push(``, `---`, ``, roleInstructions.trim());
|
|
}
|
|
|
|
parts.push(
|
|
``, `---`, ``,
|
|
`## MANDATORY: Task Completion`,
|
|
``,
|
|
`When you finish this task, you MUST call \`work_finish\` with:`,
|
|
`- \`role\`: "${role}"`,
|
|
`- \`projectGroupId\`: "${groupId}"`,
|
|
`- \`result\`: ${availableResults}`,
|
|
`- \`summary\`: brief description of what you did`,
|
|
``,
|
|
`⚠️ You MUST call work_finish even if you encounter errors or cannot finish.`,
|
|
`Use "blocked" with a summary explaining why you're stuck.`,
|
|
`Never end your session without calling work_finish.`,
|
|
);
|
|
|
|
return parts.join("\n");
|
|
}
|
|
|
|
/**
|
|
* Dispatch a task to a worker session.
|
|
*
|
|
* Flow: resolve model → build message → transition label → spawn/send session
|
|
* → update worker state → audit → build announcement.
|
|
*
|
|
* On dispatch failure: rolls back label transition.
|
|
* On state update failure after dispatch: logs warning (session IS running).
|
|
*/
|
|
export async function dispatchTask(
|
|
opts: DispatchOpts,
|
|
): Promise<DispatchResult> {
|
|
const {
|
|
workspaceDir, agentId, groupId, project, issueId, issueTitle,
|
|
issueDescription, issueUrl, role, tier, fromLabel, toLabel,
|
|
transitionLabel, pluginConfig,
|
|
} = opts;
|
|
|
|
const model = resolveTierToModel(tier, pluginConfig, role);
|
|
const worker = getWorker(project, role);
|
|
const existingSessionKey = getSessionForTier(worker, tier);
|
|
const sessionAction = existingSessionKey ? "send" : "spawn";
|
|
|
|
const taskMessage = await buildTaskMessage({
|
|
workspaceDir, projectName: project.name, role, issueId,
|
|
issueTitle, issueDescription, issueUrl,
|
|
repo: project.repo, baseBranch: project.baseBranch, groupId,
|
|
});
|
|
|
|
await transitionLabel(issueId, fromLabel, toLabel);
|
|
|
|
let sessionKey = existingSessionKey;
|
|
let dispatched = false;
|
|
|
|
try {
|
|
sessionKey = await ensureSession(sessionAction, sessionKey, {
|
|
agentId, projectName: project.name, role, tier, model,
|
|
});
|
|
|
|
await sendToAgent(sessionKey!, taskMessage, {
|
|
agentId, projectName: project.name, issueId, role,
|
|
orchestratorSessionKey: opts.sessionKey,
|
|
});
|
|
|
|
dispatched = true;
|
|
|
|
await recordWorkerState(workspaceDir, groupId, role, {
|
|
issueId, tier, sessionKey: sessionKey!, sessionAction,
|
|
});
|
|
} catch (err) {
|
|
if (dispatched) {
|
|
await auditLog(workspaceDir, "work_start", {
|
|
project: project.name, groupId, issue: issueId, role,
|
|
warning: "State update failed after successful dispatch",
|
|
error: (err as Error).message, sessionKey,
|
|
});
|
|
throw new Error(
|
|
`State update failed after successful session dispatch: ${(err as Error).message}. Session is running but projects.json was not updated.`,
|
|
);
|
|
}
|
|
try { await transitionLabel(issueId, toLabel, fromLabel); } catch { /* best-effort rollback */ }
|
|
throw new Error(
|
|
`Session dispatch failed: ${(err as Error).message}. Label reverted to "${fromLabel}".`,
|
|
);
|
|
}
|
|
|
|
await auditDispatch(workspaceDir, {
|
|
project: project.name, groupId, issueId, issueTitle,
|
|
role, tier, model, sessionAction, sessionKey: sessionKey!,
|
|
fromLabel, toLabel,
|
|
});
|
|
|
|
const announcement = buildAnnouncement(tier, role, sessionAction, issueId, issueTitle, issueUrl);
|
|
|
|
return { sessionAction, sessionKey: sessionKey!, tier, model, announcement };
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Private helpers — exist so dispatchTask reads as a sequence of steps
|
|
// ---------------------------------------------------------------------------
|
|
|
|
async function loadRoleInstructions(
|
|
workspaceDir: string, projectName: string, role: "dev" | "qa",
|
|
): Promise<string> {
|
|
const projectFile = path.join(workspaceDir, "roles", projectName, `${role}.md`);
|
|
const defaultFile = path.join(workspaceDir, "roles", "default", `${role}.md`);
|
|
try { return await fs.readFile(projectFile, "utf-8"); } catch { /* fallback */ }
|
|
try { return await fs.readFile(defaultFile, "utf-8"); } catch { /* none */ }
|
|
return "";
|
|
}
|
|
|
|
async function ensureSession(
|
|
action: "spawn" | "send",
|
|
existingKey: string | null,
|
|
opts: { agentId?: string; projectName: string; role: string; tier: string; model: string },
|
|
): Promise<string> {
|
|
if (action === "send") return existingKey!;
|
|
|
|
const sessionKey = `agent:${opts.agentId ?? "unknown"}:subagent:${opts.projectName}-${opts.role}-${opts.tier}`;
|
|
await execFileAsync(
|
|
"openclaw",
|
|
["gateway", "call", "sessions.patch", "--params", JSON.stringify({ key: sessionKey, model: opts.model })],
|
|
{ timeout: 30_000 },
|
|
);
|
|
return sessionKey;
|
|
}
|
|
|
|
function sendToAgent(
|
|
sessionKey: string, taskMessage: string,
|
|
opts: { agentId?: string; projectName: string; issueId: number; role: string; orchestratorSessionKey?: string },
|
|
): void {
|
|
const gatewayParams = JSON.stringify({
|
|
idempotencyKey: `devclaw-${opts.projectName}-${opts.issueId}-${opts.role}-${Date.now()}`,
|
|
agentId: opts.agentId ?? "devclaw",
|
|
sessionKey,
|
|
message: taskMessage,
|
|
deliver: false,
|
|
lane: "subagent",
|
|
...(opts.orchestratorSessionKey ? { spawnedBy: opts.orchestratorSessionKey } : {}),
|
|
});
|
|
const child = spawn(
|
|
"openclaw",
|
|
["gateway", "call", "agent", "--params", gatewayParams, "--expect-final", "--json"],
|
|
{ detached: true, stdio: "ignore" },
|
|
);
|
|
child.unref();
|
|
}
|
|
|
|
async function recordWorkerState(
|
|
workspaceDir: string, groupId: string, role: "dev" | "qa",
|
|
opts: { issueId: number; tier: string; sessionKey: string; sessionAction: "spawn" | "send" },
|
|
): Promise<void> {
|
|
const params: { issueId: string; tier: string; sessionKey?: string; startTime: string } = {
|
|
issueId: String(opts.issueId),
|
|
tier: opts.tier,
|
|
startTime: new Date().toISOString(), // Always reset startTime for new task assignment
|
|
};
|
|
if (opts.sessionAction === "spawn") {
|
|
params.sessionKey = opts.sessionKey;
|
|
}
|
|
await activateWorker(workspaceDir, groupId, role, params);
|
|
}
|
|
|
|
async function auditDispatch(
|
|
workspaceDir: string,
|
|
opts: {
|
|
project: string; groupId: string; issueId: number; issueTitle: string;
|
|
role: string; tier: string; model: string; sessionAction: string;
|
|
sessionKey: string; fromLabel: string; toLabel: string;
|
|
},
|
|
): Promise<void> {
|
|
await auditLog(workspaceDir, "work_start", {
|
|
project: opts.project, groupId: opts.groupId,
|
|
issue: opts.issueId, issueTitle: opts.issueTitle,
|
|
role: opts.role, tier: opts.tier,
|
|
sessionAction: opts.sessionAction, sessionKey: opts.sessionKey,
|
|
labelTransition: `${opts.fromLabel} → ${opts.toLabel}`,
|
|
});
|
|
await auditLog(workspaceDir, "model_selection", {
|
|
issue: opts.issueId, role: opts.role, tier: opts.tier, model: opts.model,
|
|
});
|
|
}
|
|
|
|
function buildAnnouncement(
|
|
tier: string, role: string, sessionAction: "spawn" | "send",
|
|
issueId: number, issueTitle: string, issueUrl: string,
|
|
): string {
|
|
const emoji = isTier(tier) ? TIER_EMOJI[tier] : role === "qa" ? "🔍" : "🔧";
|
|
const actionVerb = sessionAction === "spawn" ? "Spawning" : "Sending";
|
|
return `${emoji} ${actionVerb} ${role.toUpperCase()} (${tier}) for #${issueId}: ${issueTitle}\n🔗 ${issueUrl}`;
|
|
}
|