Files
aryx/src/shared/domain/runTimeline.ts
T

952 lines
28 KiB
TypeScript

import type {
ApprovalCheckpointKind,
ApprovalDecision,
PendingApprovalRecord,
} from '@shared/domain/approval';
import type { ToolCallFileChangePreview } from '@shared/contracts/sidecar';
import type { PatternDefinition, ReasoningEffort } from '@shared/domain/pattern';
import type {
ProjectGitBaselineFile,
ProjectGitChangeSummary,
ProjectGitDiffPreview,
ProjectGitRunChangeCounts,
ProjectGitRunChangedFile,
ProjectGitRunChangeSummary,
ProjectGitWorkingTreeFile,
ProjectGitWorkingTreeFileStatus,
ProjectGitWorkingTreeSnapshot,
ProjectRecord,
} from '@shared/domain/project';
import { createId } from '@shared/utils/ids';
export type SessionRunStatus = 'running' | 'completed' | 'cancelled' | 'error';
export type SessionRunWorkspaceKind = 'project' | 'scratchpad';
export type RunTimelineEventKind =
| 'run-started'
| 'thinking'
| 'handoff'
| 'tool-call'
| 'approval'
| 'message'
| 'run-completed'
| 'run-cancelled'
| 'run-failed';
export type RunTimelineEventStatus = 'running' | 'completed' | 'error';
export interface RunTimelineAgentRecord {
agentId: string;
agentName: string;
model: string;
reasoningEffort?: ReasoningEffort;
}
export interface RunTimelineEventRecord {
id: string;
kind: RunTimelineEventKind;
occurredAt: string;
updatedAt?: string;
status: RunTimelineEventStatus;
agentId?: string;
agentName?: string;
sourceAgentId?: string;
sourceAgentName?: string;
targetAgentId?: string;
targetAgentName?: string;
toolName?: string;
toolCallId?: string;
fileChanges?: ToolCallFileChangePreview[];
approvalId?: string;
approvalKind?: ApprovalCheckpointKind;
approvalTitle?: string;
approvalDetail?: string;
permissionKind?: string;
decision?: ApprovalDecision;
messageId?: string;
content?: string;
error?: string;
}
export interface SessionRunRecord {
id: string;
requestId: string;
projectId: string;
projectPath: string;
workingDirectory?: string;
workspaceKind: SessionRunWorkspaceKind;
patternId: string;
patternName: string;
patternMode: PatternDefinition['mode'];
triggerMessageId: string;
startedAt: string;
completedAt?: string;
status: SessionRunStatus;
agents: RunTimelineAgentRecord[];
events: RunTimelineEventRecord[];
preRunGitSnapshot?: ProjectGitWorkingTreeSnapshot;
preRunGitBaselineFiles?: ProjectGitBaselineFile[];
postRunGitSummary?: ProjectGitRunChangeSummary;
}
export interface CreateSessionRunRecordInput {
requestId: string;
project: Pick<ProjectRecord, 'id' | 'path'>;
workingDirectory?: string;
workspaceKind: SessionRunWorkspaceKind;
pattern: Pick<PatternDefinition, 'id' | 'name' | 'mode' | 'agents'>;
triggerMessageId: string;
startedAt: string;
preRunGitSnapshot?: ProjectGitWorkingTreeSnapshot;
preRunGitBaselineFiles?: ProjectGitBaselineFile[];
}
export interface AppendRunActivityEventInput {
activityType: 'thinking' | 'tool-calling' | 'handoff';
occurredAt: string;
agentId?: string;
agentName?: string;
sourceAgentId?: string;
sourceAgentName?: string;
toolName?: string;
toolCallId?: string;
fileChanges?: ToolCallFileChangePreview[];
}
export interface UpsertRunMessageEventInput {
messageId: string;
occurredAt: string;
authorName?: string;
content?: string;
status: RunTimelineEventStatus;
error?: string;
}
function approvalStatusToRunStatus(status: PendingApprovalRecord['status']): RunTimelineEventStatus {
switch (status) {
case 'approved':
return 'completed';
case 'rejected':
return 'error';
default:
return 'running';
}
}
function normalizeOptionalString(value: string | undefined): string | undefined {
const trimmed = value?.trim();
return trimmed ? trimmed : undefined;
}
function normalizeOptionalPreviewText(value: string | undefined): string | undefined {
return value?.trim() ? value : undefined;
}
function normalizeNonNegativeInteger(value: number | undefined): number {
if (typeof value !== 'number' || !Number.isFinite(value)) {
return 0;
}
const normalized = Math.round(value);
return normalized >= 0 ? normalized : 0;
}
function normalizeWorkingTreeFileStatus(
value: ProjectGitWorkingTreeFileStatus | undefined,
): ProjectGitWorkingTreeFileStatus | undefined {
switch (value) {
case 'added':
case 'modified':
case 'deleted':
case 'renamed':
case 'copied':
case 'type-changed':
case 'unmerged':
case 'untracked':
return value;
default:
return undefined;
}
}
function normalizeWorkingTreeChangeSummary(
summary: Partial<ProjectGitChangeSummary> | undefined,
): ProjectGitChangeSummary {
return {
staged: normalizeNonNegativeInteger(summary?.staged),
unstaged: normalizeNonNegativeInteger(summary?.unstaged),
untracked: normalizeNonNegativeInteger(summary?.untracked),
conflicted: normalizeNonNegativeInteger(summary?.conflicted),
};
}
function normalizeWorkingTreeFile(
file: ProjectGitWorkingTreeFile,
): ProjectGitWorkingTreeFile | undefined {
const path = normalizeOptionalString(file.path);
if (!path) {
return undefined;
}
return {
path,
previousPath: normalizeOptionalString(file.previousPath),
stagedStatus: normalizeWorkingTreeFileStatus(file.stagedStatus),
unstagedStatus: normalizeWorkingTreeFileStatus(file.unstagedStatus),
...(file.isConflicted ? { isConflicted: true } : {}),
};
}
function normalizeWorkingTreeSnapshot(
snapshot: ProjectGitWorkingTreeSnapshot | undefined,
): ProjectGitWorkingTreeSnapshot | undefined {
if (!snapshot) {
return undefined;
}
const scannedAt = normalizeOptionalString(snapshot.scannedAt);
const repoRoot = normalizeOptionalString(snapshot.repoRoot);
if (!scannedAt || !repoRoot) {
return undefined;
}
const files = (snapshot.files ?? []).flatMap((file) => {
const normalized = normalizeWorkingTreeFile(file);
return normalized ? [normalized] : [];
});
return {
scannedAt,
repoRoot,
branch: normalizeOptionalString(snapshot.branch),
changedFileCount: normalizeNonNegativeInteger(snapshot.changedFileCount),
changes: normalizeWorkingTreeChangeSummary(snapshot.changes),
files,
};
}
function normalizeGitDiffPreview(
preview: ProjectGitDiffPreview,
): ProjectGitDiffPreview | undefined {
const path = normalizeOptionalString(preview.path);
if (!path) {
return undefined;
}
return {
path,
previousPath: normalizeOptionalString(preview.previousPath),
diff: normalizeOptionalPreviewText(preview.diff),
newFileContents: normalizeOptionalPreviewText(preview.newFileContents),
...(preview.isBinary ? { isBinary: true } : {}),
};
}
function normalizeGitBaselineFile(
file: ProjectGitBaselineFile,
): ProjectGitBaselineFile | undefined {
const path = normalizeOptionalString(file.path);
if (!path) {
return undefined;
}
return {
path,
previousPath: normalizeOptionalString(file.previousPath),
combinedDiff: normalizeOptionalPreviewText(file.combinedDiff),
untrackedContentBase64: normalizeOptionalString(file.untrackedContentBase64),
...(file.isBinary ? { isBinary: true } : {}),
};
}
function normalizeGitBaselineFiles(
files: readonly ProjectGitBaselineFile[] | undefined,
): ProjectGitBaselineFile[] | undefined {
if (!files || files.length === 0) {
return undefined;
}
const normalized = files.flatMap((file) => {
const nextFile = normalizeGitBaselineFile(file);
return nextFile ? [nextFile] : [];
});
return normalized.length > 0 ? normalized : undefined;
}
function normalizeGitRunChangeKind(
value: ProjectGitRunChangedFile['kind'] | undefined,
): ProjectGitRunChangedFile['kind'] | undefined {
switch (value) {
case 'cleaned':
return value;
case 'added':
case 'modified':
case 'deleted':
case 'renamed':
case 'copied':
case 'type-changed':
case 'unmerged':
case 'untracked':
return value;
default:
return undefined;
}
}
function normalizeGitRunChangeCounts(
counts: Partial<ProjectGitRunChangeCounts> | undefined,
): ProjectGitRunChangeCounts {
return {
added: normalizeNonNegativeInteger(counts?.added),
modified: normalizeNonNegativeInteger(counts?.modified),
deleted: normalizeNonNegativeInteger(counts?.deleted),
renamed: normalizeNonNegativeInteger(counts?.renamed),
copied: normalizeNonNegativeInteger(counts?.copied),
typeChanged: normalizeNonNegativeInteger(counts?.typeChanged),
unmerged: normalizeNonNegativeInteger(counts?.unmerged),
untracked: normalizeNonNegativeInteger(counts?.untracked),
cleaned: normalizeNonNegativeInteger(counts?.cleaned),
};
}
function normalizeGitRunChangedFile(
file: ProjectGitRunChangedFile,
): ProjectGitRunChangedFile | undefined {
const path = normalizeOptionalString(file.path);
const kind = normalizeGitRunChangeKind(file.kind);
if (!path || !kind) {
return undefined;
}
return {
path,
previousPath: normalizeOptionalString(file.previousPath),
kind,
origin: file.origin === 'pre-existing' ? 'pre-existing' : 'run-created',
stagedStatus: normalizeWorkingTreeFileStatus(file.stagedStatus),
unstagedStatus: normalizeWorkingTreeFileStatus(file.unstagedStatus),
...(file.isConflicted ? { isConflicted: true } : {}),
additions: normalizeNonNegativeInteger(file.additions),
deletions: normalizeNonNegativeInteger(file.deletions),
canRevert: file.canRevert === true,
preview: file.preview ? normalizeGitDiffPreview(file.preview) : undefined,
};
}
function normalizeGitRunChangeSummary(
summary: ProjectGitRunChangeSummary | undefined,
): ProjectGitRunChangeSummary | undefined {
if (!summary) {
return undefined;
}
const generatedAt = normalizeOptionalString(summary.generatedAt);
if (!generatedAt) {
return undefined;
}
const files = (summary.files ?? []).flatMap((file) => {
const normalized = normalizeGitRunChangedFile(file);
return normalized ? [normalized] : [];
});
return {
generatedAt,
branchAtStart: normalizeOptionalString(summary.branchAtStart),
branchAtEnd: normalizeOptionalString(summary.branchAtEnd),
...(summary.branchChanged ? { branchChanged: true } : {}),
fileCount: normalizeNonNegativeInteger(summary.fileCount),
additions: normalizeNonNegativeInteger(summary.additions),
deletions: normalizeNonNegativeInteger(summary.deletions),
counts: normalizeGitRunChangeCounts(summary.counts),
files,
};
}
function normalizeToolCallFileChange(
change: ToolCallFileChangePreview,
): ToolCallFileChangePreview | undefined {
const path = normalizeOptionalString(change.path);
if (!path) {
return undefined;
}
const diff = normalizeOptionalPreviewText(change.diff);
const newFileContents = normalizeOptionalPreviewText(change.newFileContents);
return {
path,
diff,
newFileContents,
};
}
function mergeToolCallFileChange(
existing: ToolCallFileChangePreview,
incoming: ToolCallFileChangePreview,
): ToolCallFileChangePreview {
return {
path: incoming.path,
diff: incoming.diff ?? existing.diff,
newFileContents: incoming.newFileContents ?? existing.newFileContents,
};
}
function normalizeToolCallFileChanges(
changes: readonly ToolCallFileChangePreview[] | undefined,
): ToolCallFileChangePreview[] | undefined {
if (!changes || changes.length === 0) {
return undefined;
}
const normalized = new Map<string, ToolCallFileChangePreview>();
for (const change of changes) {
const nextChange = normalizeToolCallFileChange(change);
if (!nextChange) {
continue;
}
const previous = normalized.get(nextChange.path);
normalized.set(
nextChange.path,
previous ? mergeToolCallFileChange(previous, nextChange) : nextChange,
);
}
return normalized.size > 0 ? [...normalized.values()] : undefined;
}
function mergeToolCallFileChanges(
existing: readonly ToolCallFileChangePreview[] | undefined,
incoming: readonly ToolCallFileChangePreview[] | undefined,
): ToolCallFileChangePreview[] | undefined {
const normalizedExisting = normalizeToolCallFileChanges(existing);
const normalizedIncoming = normalizeToolCallFileChanges(incoming);
if (!normalizedExisting) {
return normalizedIncoming;
}
if (!normalizedIncoming) {
return normalizedExisting;
}
const merged = new Map(
normalizedExisting.map((change) => [change.path, change] satisfies [string, ToolCallFileChangePreview]),
);
for (const change of normalizedIncoming) {
const previous = merged.get(change.path);
merged.set(change.path, previous ? mergeToolCallFileChange(previous, change) : change);
}
return [...merged.values()];
}
function normalizeRunTimelineAgent(
agent: RunTimelineAgentRecord,
): RunTimelineAgentRecord | undefined {
const agentId = normalizeOptionalString(agent.agentId);
const agentName = normalizeOptionalString(agent.agentName);
const model = normalizeOptionalString(agent.model);
if (!agentId || !agentName || !model) {
return undefined;
}
return {
agentId,
agentName,
model,
reasoningEffort: agent.reasoningEffort,
};
}
function normalizeRunTimelineEvent(
event: RunTimelineEventRecord,
): RunTimelineEventRecord | undefined {
const id = normalizeOptionalString(event.id);
const occurredAt = normalizeOptionalString(event.occurredAt);
if (!id || !occurredAt) {
return undefined;
}
return {
id,
kind: event.kind,
occurredAt,
updatedAt: normalizeOptionalString(event.updatedAt),
status: event.status,
agentId: normalizeOptionalString(event.agentId),
agentName: normalizeOptionalString(event.agentName),
sourceAgentId: normalizeOptionalString(event.sourceAgentId),
sourceAgentName: normalizeOptionalString(event.sourceAgentName),
targetAgentId: normalizeOptionalString(event.targetAgentId),
targetAgentName: normalizeOptionalString(event.targetAgentName),
toolName: normalizeOptionalString(event.toolName),
toolCallId: normalizeOptionalString(event.toolCallId),
fileChanges: normalizeToolCallFileChanges(event.fileChanges),
approvalId: normalizeOptionalString(event.approvalId),
approvalKind: event.approvalKind,
approvalTitle: normalizeOptionalString(event.approvalTitle),
approvalDetail: normalizeOptionalString(event.approvalDetail),
permissionKind: normalizeOptionalString(event.permissionKind),
decision: event.decision,
messageId: normalizeOptionalString(event.messageId),
content: event.content,
error: normalizeOptionalString(event.error),
};
}
function resolveRunTimelineAgent(
run: SessionRunRecord,
agentId?: string,
agentName?: string,
): Pick<RunTimelineEventRecord, 'agentId' | 'agentName'> {
const normalizedAgentId = normalizeOptionalString(agentId);
const normalizedAgentName = normalizeOptionalString(agentName);
if (normalizedAgentId) {
const matchedAgent = run.agents.find((agent) => agent.agentId === normalizedAgentId);
if (matchedAgent) {
return {
agentId: matchedAgent.agentId,
agentName: matchedAgent.agentName,
};
}
}
if (normalizedAgentName) {
const matchedAgent = run.agents.find((agent) => agent.agentName === normalizedAgentName);
if (matchedAgent) {
return {
agentId: matchedAgent.agentId,
agentName: matchedAgent.agentName,
};
}
}
return {
agentId: normalizedAgentId,
agentName: normalizedAgentName,
};
}
function appendRunTimelineEvent(
run: SessionRunRecord,
event: Omit<RunTimelineEventRecord, 'id'> & { id?: string },
): SessionRunRecord {
const nextEvent = normalizeRunTimelineEvent({
id: event.id ?? createId('run-event'),
...event,
});
if (!nextEvent) {
return run;
}
return {
...run,
events: [...run.events, nextEvent],
};
}
function upsertRunTimelineEventAt(
run: SessionRunRecord,
eventIndex: number,
event: RunTimelineEventRecord,
): SessionRunRecord {
if (eventIndex < 0 || eventIndex >= run.events.length) {
return appendRunTimelineEvent(run, event);
}
const nextEvent = normalizeRunTimelineEvent(event);
if (!nextEvent) {
return run;
}
const nextEvents = run.events.slice();
nextEvents[eventIndex] = nextEvent;
return {
...run,
events: nextEvents,
};
}
function settleOpenMessageEvents(
run: SessionRunRecord,
status: Extract<RunTimelineEventStatus, 'completed' | 'error'>,
occurredAt: string,
error?: string,
): SessionRunRecord {
let changed = false;
const normalizedError = normalizeOptionalString(error);
const nextEvents = run.events.map((event) => {
if (event.kind !== 'message' || event.status !== 'running') {
return event;
}
changed = true;
return {
...event,
status,
updatedAt: occurredAt,
error: normalizedError,
};
});
if (!changed) {
return run;
}
return {
...run,
events: nextEvents,
};
}
export function createSessionRunRecord(input: CreateSessionRunRecordInput): SessionRunRecord {
return {
id: createId('run'),
requestId: input.requestId,
projectId: input.project.id,
projectPath: input.project.path,
workingDirectory: normalizeOptionalString(input.workingDirectory),
workspaceKind: input.workspaceKind,
patternId: input.pattern.id,
patternName: input.pattern.name,
patternMode: input.pattern.mode,
triggerMessageId: input.triggerMessageId,
startedAt: input.startedAt,
status: 'running',
completedAt: undefined,
preRunGitSnapshot: normalizeWorkingTreeSnapshot(input.preRunGitSnapshot),
preRunGitBaselineFiles: normalizeGitBaselineFiles(input.preRunGitBaselineFiles),
postRunGitSummary: undefined,
agents: input.pattern.agents
.map((agent): RunTimelineAgentRecord => ({
agentId: agent.id,
agentName: agent.name,
model: agent.model,
reasoningEffort: agent.reasoningEffort,
}))
.flatMap((agent) => {
const normalized = normalizeRunTimelineAgent(agent);
return normalized ? [normalized] : [];
}),
events: [
{
id: createId('run-event'),
kind: 'run-started',
occurredAt: input.startedAt,
status: 'completed',
messageId: input.triggerMessageId,
},
],
};
}
export function normalizeSessionRunRecords(
runs: readonly SessionRunRecord[] | undefined,
): SessionRunRecord[] {
if (!runs || runs.length === 0) {
return [];
}
return runs.flatMap((run) => {
const id = normalizeOptionalString(run.id);
const requestId = normalizeOptionalString(run.requestId);
const projectId = normalizeOptionalString(run.projectId);
const projectPath = normalizeOptionalString(run.projectPath);
const workingDirectory = normalizeOptionalString(run.workingDirectory);
const patternId = normalizeOptionalString(run.patternId);
const patternName = normalizeOptionalString(run.patternName);
const triggerMessageId = normalizeOptionalString(run.triggerMessageId);
const startedAt = normalizeOptionalString(run.startedAt);
if (!id || !requestId || !projectId || !projectPath || !patternId || !patternName || !triggerMessageId || !startedAt) {
return [];
}
return [
{
id,
requestId,
projectId,
projectPath,
workingDirectory,
workspaceKind: run.workspaceKind === 'scratchpad' ? 'scratchpad' : 'project',
patternId,
patternName,
patternMode: run.patternMode,
triggerMessageId,
startedAt,
completedAt: normalizeOptionalString(run.completedAt),
status: run.status === 'error' ? 'error' : run.status === 'running' ? 'running' : run.status === 'cancelled' ? 'cancelled' : 'completed',
preRunGitSnapshot: normalizeWorkingTreeSnapshot(run.preRunGitSnapshot),
preRunGitBaselineFiles: normalizeGitBaselineFiles(run.preRunGitBaselineFiles),
postRunGitSummary: normalizeGitRunChangeSummary(run.postRunGitSummary),
agents: run.agents.flatMap((agent) => {
const normalized = normalizeRunTimelineAgent(agent);
return normalized ? [normalized] : [];
}),
events: run.events.flatMap((event) => {
const normalized = normalizeRunTimelineEvent(event);
return normalized ? [normalized] : [];
}),
},
];
});
}
export function upsertSessionRunRecord(
runs: readonly SessionRunRecord[],
nextRun: SessionRunRecord,
): SessionRunRecord[] {
const runIndex = runs.findIndex((run) => run.id === nextRun.id);
if (runIndex < 0) {
return [nextRun, ...runs];
}
const nextRuns = runs.slice();
nextRuns[runIndex] = nextRun;
return nextRuns;
}
export function upsertRunApprovalEvent(
run: SessionRunRecord,
approval: PendingApprovalRecord,
): SessionRunRecord {
const existingIndex = run.events.findIndex(
(event) => event.kind === 'approval' && event.approvalId === approval.id,
);
const nextStatus = approvalStatusToRunStatus(approval.status);
const nextEvent: RunTimelineEventRecord = {
id: existingIndex >= 0 ? run.events[existingIndex].id : createId('run-event'),
kind: 'approval',
occurredAt:
existingIndex >= 0 ? run.events[existingIndex].occurredAt : approval.requestedAt,
updatedAt: approval.status === 'pending' ? undefined : approval.resolvedAt,
status: nextStatus,
agentId: normalizeOptionalString(approval.agentId),
agentName: normalizeOptionalString(approval.agentName),
toolName: normalizeOptionalString(approval.toolName),
approvalId: approval.id,
approvalKind: approval.kind,
approvalTitle: approval.title,
approvalDetail: normalizeOptionalString(approval.detail),
permissionKind: normalizeOptionalString(approval.permissionKind),
decision: approval.status === 'pending' ? undefined : approval.status,
};
if (existingIndex < 0) {
return appendRunTimelineEvent(run, nextEvent);
}
const existingEvent = run.events[existingIndex];
if (
existingEvent.updatedAt === nextEvent.updatedAt
&& existingEvent.status === nextEvent.status
&& existingEvent.agentId === nextEvent.agentId
&& existingEvent.agentName === nextEvent.agentName
&& existingEvent.toolName === nextEvent.toolName
&& existingEvent.approvalKind === nextEvent.approvalKind
&& existingEvent.approvalTitle === nextEvent.approvalTitle
&& existingEvent.approvalDetail === nextEvent.approvalDetail
&& existingEvent.permissionKind === nextEvent.permissionKind
&& existingEvent.decision === nextEvent.decision
) {
return run;
}
const nextEvents = run.events.slice();
nextEvents[existingIndex] = nextEvent;
return {
...run,
events: nextEvents,
};
}
export function appendRunActivityEvent(
run: SessionRunRecord,
input: AppendRunActivityEventInput,
): SessionRunRecord {
switch (input.activityType) {
case 'thinking': {
const agent = resolveRunTimelineAgent(run, input.agentId, input.agentName);
return appendRunTimelineEvent(run, {
kind: 'thinking',
occurredAt: input.occurredAt,
status: 'completed',
...agent,
});
}
case 'tool-calling': {
const agent = resolveRunTimelineAgent(run, input.agentId, input.agentName);
const toolCallId = normalizeOptionalString(input.toolCallId);
const existingIndex = toolCallId
? run.events.findIndex((event) => event.kind === 'tool-call' && event.toolCallId === toolCallId)
: -1;
const existingEvent = existingIndex >= 0 ? run.events[existingIndex] : undefined;
const nextEvent: RunTimelineEventRecord = {
id: existingEvent?.id ?? createId('run-event'),
kind: 'tool-call',
occurredAt: existingEvent?.occurredAt ?? input.occurredAt,
updatedAt: existingEvent ? input.occurredAt : undefined,
status: 'completed',
agentId: agent.agentId ?? existingEvent?.agentId,
agentName: agent.agentName ?? existingEvent?.agentName,
toolName: normalizeOptionalString(input.toolName) ?? existingEvent?.toolName,
toolCallId,
fileChanges: mergeToolCallFileChanges(existingEvent?.fileChanges, input.fileChanges),
};
return existingIndex >= 0
? upsertRunTimelineEventAt(run, existingIndex, nextEvent)
: appendRunTimelineEvent(run, nextEvent);
}
case 'handoff': {
const sourceAgent = resolveRunTimelineAgent(run, input.sourceAgentId, input.sourceAgentName);
const targetAgent = resolveRunTimelineAgent(run, input.agentId, input.agentName);
return appendRunTimelineEvent(run, {
kind: 'handoff',
occurredAt: input.occurredAt,
status: 'completed',
agentId: sourceAgent.agentId,
agentName: sourceAgent.agentName,
sourceAgentId: sourceAgent.agentId,
sourceAgentName: sourceAgent.agentName,
targetAgentId: targetAgent.agentId,
targetAgentName: targetAgent.agentName,
});
}
}
}
export function upsertRunMessageEvent(
run: SessionRunRecord,
input: UpsertRunMessageEventInput,
): SessionRunRecord {
const messageId = normalizeOptionalString(input.messageId);
if (!messageId) {
return run;
}
const author = resolveRunTimelineAgent(run, undefined, input.authorName);
const existingIndex = run.events.findIndex((event) => event.kind === 'message' && event.messageId === messageId);
const normalizedError = normalizeOptionalString(input.error);
if (existingIndex < 0) {
return appendRunTimelineEvent(run, {
kind: 'message',
occurredAt: input.occurredAt,
updatedAt: input.occurredAt,
status: input.status,
messageId,
content: input.content,
error: normalizedError,
...author,
});
}
const existingEvent = run.events[existingIndex];
const nextEvent: RunTimelineEventRecord = {
...existingEvent,
agentId: existingEvent.agentId ?? author.agentId,
agentName: existingEvent.agentName ?? author.agentName,
updatedAt: input.occurredAt,
status: input.status,
content: input.content ?? existingEvent.content,
error: normalizedError,
};
if (
nextEvent.agentId === existingEvent.agentId
&& nextEvent.agentName === existingEvent.agentName
&& nextEvent.updatedAt === existingEvent.updatedAt
&& nextEvent.status === existingEvent.status
&& nextEvent.content === existingEvent.content
&& nextEvent.error === existingEvent.error
) {
return run;
}
const nextEvents = run.events.slice();
nextEvents[existingIndex] = nextEvent;
return {
...run,
events: nextEvents,
};
}
export function completeSessionRunRecord(
run: SessionRunRecord,
completedAt: string,
): SessionRunRecord {
const settledRun = settleOpenMessageEvents(run, 'completed', completedAt);
const completedRun: SessionRunRecord = {
...settledRun,
status: 'completed',
completedAt,
};
return appendRunTimelineEvent(completedRun, {
kind: 'run-completed',
occurredAt: completedAt,
status: 'completed',
});
}
export function cancelSessionRunRecord(
run: SessionRunRecord,
cancelledAt: string,
): SessionRunRecord {
const settledRun = settleOpenMessageEvents(run, 'completed', cancelledAt);
const cancelledRun: SessionRunRecord = {
...settledRun,
status: 'cancelled',
completedAt: cancelledAt,
};
return appendRunTimelineEvent(cancelledRun, {
kind: 'run-cancelled',
occurredAt: cancelledAt,
status: 'completed',
});
}
export function failSessionRunRecord(
run: SessionRunRecord,
failedAt: string,
error: string,
): SessionRunRecord {
const settledRun = settleOpenMessageEvents(run, 'error', failedAt, error);
const failedRun: SessionRunRecord = {
...settledRun,
status: 'error',
completedAt: failedAt,
};
return appendRunTimelineEvent(failedRun, {
kind: 'run-failed',
occurredAt: failedAt,
status: 'error',
error,
});
}
export function setSessionRunGitSummary(
run: SessionRunRecord,
summary: ProjectGitRunChangeSummary | undefined,
): SessionRunRecord {
const normalizedSummary = normalizeGitRunChangeSummary(summary);
if (normalizedSummary === undefined && run.postRunGitSummary === undefined) {
return run;
}
if (
normalizedSummary !== undefined
&& run.postRunGitSummary !== undefined
&& JSON.stringify(normalizedSummary) === JSON.stringify(run.postRunGitSummary)
) {
return run;
}
return {
...run,
postRunGitSummary: normalizedSummary,
};
}