@tea-agent/loop-agent 0.10.0 → 0.12.0
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/AGENTS.md +10 -2
- package/CHANGELOG.md +91 -24
- package/README.md +84 -12
- package/dist/application/dag/args.js +1 -12
- package/dist/application/dag/generate-task-dag.js +38 -2
- package/dist/application/dag/run-dag.js +11 -27
- package/dist/application/dag/validate-dag.js +13 -2
- package/dist/application/loop/run-action.js +0 -4
- package/dist/cli/command-definitions.js +44 -16
- package/dist/cli/program.js +40 -23
- package/dist/cli/update/notifier.js +117 -0
- package/dist/cli/update/npm-client.js +151 -0
- package/dist/cli/update/policy.js +58 -0
- package/dist/cli/update/state.js +68 -0
- package/dist/cli.js +33 -0
- package/dist/commands/cursor-prompt.js +42 -82
- package/dist/commands/dag-approve.js +36 -0
- package/dist/commands/delegate.js +75 -77
- package/dist/commands/doctor.js +0 -18
- package/dist/commands/init.js +547 -95
- package/dist/commands/instructions.js +7 -10
- package/dist/commands/loop.js +4 -20
- package/dist/commands/plan.js +50 -0
- package/dist/executors/config-core.js +0 -51
- package/dist/executors/dag-pi-executor.js +1 -1
- package/dist/executors/dag.js +0 -1
- package/dist/executors/index.js +0 -2
- package/dist/executors/model-routing.js +9 -9
- package/dist/executors/shell-executor.js +1 -1
- package/dist/governance/checks.js +6 -3
- package/dist/governance/exec-plans.js +545 -0
- package/dist/governance/manifest-types.js +24 -2
- package/dist/infrastructure/harness/loop-action-store.js +0 -3
- package/dist/records/harvest.js +2 -23
- package/dist/records/one-shot-runs.js +1 -1
- package/dist/shared/artifacts-core.js +24 -5
- package/dist/shared/output-truncation.js +37 -0
- package/dist/shared/package-metadata.js +488 -0
- package/dist/{executors/cursor-executor.js → sidecars/cursor-prompt/executor.js} +2 -42
- package/dist/sidecars/cursor-prompt/index.js +3 -0
- package/dist/sidecars/cursor-prompt/stream.js +121 -0
- package/dist/task/config-types.js +29 -12
- package/dist/task/delegate.js +9 -21
- package/dist/task/runtime.js +1 -2
- package/dist/worker/cli.js +32 -3
- package/dist/worker/delivery/final-verification.js +47 -11
- package/dist/worker/delivery/package.js +63 -10
- package/dist/worker/feature/run.js +60 -8
- package/dist/worker/loop-agent/loop-agent-client.js +329 -126
- package/dist/worker/observability/event-history.js +216 -0
- package/dist/worker/observability/read-model.js +338 -83
- package/dist/worker/observe/paths.js +17 -0
- package/dist/worker/observe/routes.js +165 -21
- package/dist/worker/observe/server.js +59 -1
- package/dist/worker/observe/static/api.js +27 -0
- package/dist/worker/observe/static/app.js +120 -2317
- package/dist/worker/observe/static/constants.js +148 -0
- package/dist/worker/observe/static/copy.js +67 -0
- package/dist/worker/observe/static/dag-helpers.js +172 -0
- package/dist/worker/observe/static/dag-model.js +72 -0
- package/dist/worker/observe/static/dom.js +61 -0
- package/dist/worker/observe/static/format-pool.js +67 -0
- package/dist/worker/observe/static/format.js +292 -0
- package/dist/worker/observe/static/index.html +300 -82
- package/dist/worker/observe/static/kpi.js +94 -0
- package/dist/worker/observe/static/relations.js +128 -0
- package/dist/worker/observe/static/router.js +85 -0
- package/dist/worker/observe/static/run-processing.js +148 -0
- package/dist/worker/observe/static/shell-chrome.js +68 -0
- package/dist/worker/observe/static/state.js +253 -0
- package/dist/worker/observe/static/styles.css +1720 -495
- package/dist/worker/observe/static/views/batch.js +226 -0
- package/dist/worker/observe/static/views/dag-graph.js +172 -0
- package/dist/worker/observe/static/views/dag-inspector.js +477 -0
- package/dist/worker/observe/static/views/dag.js +362 -0
- package/dist/worker/observe/static/views/dashboard.js +442 -0
- package/dist/worker/observe/static/views/failures.js +143 -0
- package/dist/worker/observe/static/views/feature.js +453 -0
- package/dist/worker/observe/static/views/pool.js +347 -0
- package/dist/worker/observe/static/views/run.js +453 -0
- package/dist/worker/observe/static/views/session-timeline.js +205 -0
- package/dist/worker/observe/static/views/shell.js +7 -0
- package/dist/worker/observe/static/views/task.js +260 -0
- package/dist/worker/observe/static/views/timeline.js +163 -0
- package/dist/worker/preflight.js +49 -1
- package/dist/worker/run-task/run-task.js +22 -12
- package/dist/worker/runner/run-ready.js +76 -12
- package/dist/worker/task-spec/schema.js +0 -1
- package/dist/workflows/dag/controller-identity.js +104 -0
- package/dist/workflows/dag/convergence/controller.js +1 -1
- package/dist/workflows/dag/executor-registry.js +0 -2
- package/dist/workflows/dag/init-hybrid.js +797 -27
- package/dist/workflows/dag/node-execution.js +183 -35
- package/dist/workflows/dag/repair-artifact.js +91 -0
- package/dist/workflows/dag/report.js +50 -0
- package/dist/workflows/dag/retry-policy.js +138 -0
- package/dist/workflows/dag/runner.js +77 -17
- package/dist/workflows/dag/runtime-contract.js +87 -0
- package/dist/workflows/dag/scheduler.js +7 -2
- package/dist/workflows/dag/sdd-embedded.js +128 -0
- package/dist/workflows/dag/skill-instructions.js +5 -4
- package/dist/workflows/dag/skill-snapshot.js +529 -0
- package/dist/workflows/dag/types.js +86 -10
- package/dist/workflows/dag/validate.js +73 -12
- package/dist/workflows/loop/actions/dag-action.js +0 -2
- package/dist/workflows/loop/actions/shared.js +1 -1
- package/dist/workflows/loop/actions.js +14 -31
- package/dist/workflows/loop/benchmark.js +1 -1
- package/dist/workflows/loop/index.js +1 -1
- package/dist/workflows/loop/policy/auto-policy.js +22 -14
- package/dist/workflows/loop/policy/path-patterns.js +13 -0
- package/docs/README.md +36 -33
- package/docs/agent-dag-recovery-playbook.md +1 -1
- package/docs/agent-dag-runner.md +28 -3
- package/docs/architecture/README.md +26 -0
- package/docs/architecture/dag-execution.md +140 -0
- package/docs/architecture/evolution.md +53 -0
- package/docs/architecture/facts-and-state.md +58 -0
- package/docs/architecture/runtime-boundaries.md +45 -17
- package/docs/architecture/system-overview.md +93 -0
- package/docs/architecture/worker-and-feature.md +81 -0
- package/docs/cursor-prompt-sidecar.md +36 -0
- package/docs/decisions/README.md +13 -1
- package/docs/design/README.md +43 -21
- package/docs/development-principles.md +2 -2
- package/docs/exec-plans/active/README.md +1 -3
- package/docs/exec-plans/completed/README.md +23 -0
- package/docs/feature-workflow.md +78 -4
- package/docs/harness-methodology-debugging.md +1 -1
- package/docs/harness-methodology-tdd.md +3 -3
- package/docs/init-surface.manifest.json +60 -25
- package/docs/loop-agent-harness.md +28 -4
- package/docs/progress/README.md +50 -1
- package/docs/reports/README.md +90 -18
- package/docs/skills/README.md +2 -1
- package/docs/skills/vetted-skill-registry.md +2 -1
- package/docs/templates/agent-dag-report.schema.json +23 -6
- package/docs/templates/agent-dag.base.json +0 -5
- package/docs/templates/agent-dag.final-verification.json +0 -5
- package/docs/templates/agent-dag.schema.json +70 -3
- package/docs/templates/agent-dag.supervised-implementation.json +9 -8
- package/docs/templates/backend-test-dag.generate-pytest.prompt.md +139 -0
- package/docs/templates/backend-test-dag.json +276 -0
- package/docs/templates/backend-test-dag.retrospect.prompt.md +125 -0
- package/docs/templates/backend-test-dag.review-cases.prompt.md +81 -0
- package/docs/templates/frontend-design-contract.md +33 -0
- package/docs/templates/frontend-task-constraints.md +25 -0
- package/docs/templates/frontend-task-requirement.md +61 -0
- package/docs/templates/harness.schema.json +10 -12
- package/docs/templates/hybrid-dag.json +1 -6
- package/docs/templates/interactive-ui-round2-experiment.md +1 -1
- package/docs/templates/product-line/task.yaml +0 -1
- package/docs/templates/project-start-checklist.md +2 -2
- package/docs/templates/worker-dogfood-evidence.md +28 -0
- package/docs/templates/worker-dogfood-setup.md +20 -0
- package/docs/verification-matrix.md +10 -0
- package/examples/decision-gate-agent-dag.json +87 -33
- package/examples/example-dag.json +0 -5
- package/examples/hybrid-loop-agent-dag.json +0 -5
- package/harness.json +7 -15
- package/package.json +22 -46
- package/scripts/check-product-line-docs.sh +10 -7
- package/skills/agent-worker/SKILL.md +37 -0
- package/skills/agent-worker/references/agent-worker-operator.md +43 -0
- package/skills/frontend-design-review/SKILL.md +59 -0
- package/skills/frontend-design-review/references/review-checklist.md +37 -0
- package/skills/frontend-implementation/SKILL.md +51 -0
- package/skills/frontend-implementation/references/code-standards.md +34 -0
- package/skills/frontend-implementation/references/design-spec.md +46 -0
- package/skills/frontend-implementation/references/node-contracts.md +32 -0
- package/skills/frontend-review/SKILL.md +53 -0
- package/skills/frontend-review/references/review-findings.md +42 -0
- package/skills/frontend-verification/SKILL.md +40 -0
- package/skills/frontend-verification/references/verification-checklist.md +56 -0
- package/skills/grill-me/SKILL.md +10 -0
- package/skills/grill-with-docs/SKILL.md +88 -0
- package/skills/grill-with-docs/adr-format.md +47 -0
- package/skills/grill-with-docs/context-format.md +60 -0
- package/skills/loop-agent/SKILL.md +11 -9
- package/skills/loop-agent/references/command-reference.md +14 -15
- package/skills/loop-agent/references/docs-converge.md +126 -0
- package/skills/loop-agent/references/harness-policy.md +7 -7
- package/skills/loop-agent/references/hybrid-dag.md +36 -20
- package/skills/loop-agent/references/long-running-loop.md +4 -6
- package/skills/loop-agent/references/multi-worktree.md +6 -6
- package/skills/loop-agent/references/orchestrator-and-interventions.md +3 -3
- package/skills/loop-agent/references/pi-subagent-assisted-mode.md +14 -11
- package/skills/loop-agent/references/task-workflow.md +1 -1
- package/skills/loop-agent/references/verification-and-failure-handling.md +6 -0
- package/skills/using-git-worktrees/SKILL.md +215 -0
- package/dist/commands/cursor-worker.js +0 -43
- package/dist/cursor-worker-entry.js +0 -8
- package/dist/executors/cursor-artifacts.js +0 -33
- package/dist/executors/cursor-execution-log.js +0 -81
- package/dist/executors/cursor-executor-artifacts.js +0 -134
- package/dist/executors/cursor-run.js +0 -115
- package/dist/executors/cursor-tool.js +0 -94
- package/dist/executors/cursor-worker-client.js +0 -223
- package/dist/executors/cursor-worker-protocol.js +0 -18
- package/dist/executors/cursor-worker-server.js +0 -54
- package/dist/executors/cursor-worker.js +0 -3
- package/dist/executors/cursor.js +0 -6
- package/dist/executors/dag-cursor-executor.js +0 -87
- package/dist/workflows/loop/actions/cursor-fix.js +0 -191
- package/dist/workflows/loop/policy/cursor-fix-policy.js +0 -31
- package/docs/cursor-executor-usage.md +0 -25
- package/docs/dynamic-workflow-dag-engine-roadmap.md +0 -1749
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
/** Observe UI view module (R5). */
|
|
2
|
+
import {
|
|
3
|
+
UI_TEXT,
|
|
4
|
+
LIVENESS_LABELS,
|
|
5
|
+
ARTIFACT_LABELS,
|
|
6
|
+
ARTIFACT_KEYS,
|
|
7
|
+
STEP_LABELS,
|
|
8
|
+
STEP_ORDER,
|
|
9
|
+
DAG_INSPECTOR_DEFAULT_WIDTH,
|
|
10
|
+
DAG_INSPECTOR_MIN_WIDTH,
|
|
11
|
+
DAG_INSPECTOR_MAX_WIDTH,
|
|
12
|
+
DAG_INSPECTOR_RIGHT_OFFSET,
|
|
13
|
+
DAG_INSPECTOR_VIEWPORT_MARGIN,
|
|
14
|
+
DAG_INSPECTOR_KEYBOARD_STEP,
|
|
15
|
+
TERMINAL_RUN_STATUSES,
|
|
16
|
+
DAG_EFFECTIVE_STATUS_LABELS,
|
|
17
|
+
STATUS_LABELS,
|
|
18
|
+
} from "../constants.js";
|
|
19
|
+
import { clearNode, el, metaGrid, buildTable } from "../dom.js";
|
|
20
|
+
import {
|
|
21
|
+
badge,
|
|
22
|
+
badgeClass,
|
|
23
|
+
statusLabel,
|
|
24
|
+
formatTs,
|
|
25
|
+
formatMs,
|
|
26
|
+
formatDuration,
|
|
27
|
+
formatAgo,
|
|
28
|
+
dagStatusBadge,
|
|
29
|
+
livenessBadge,
|
|
30
|
+
displayDurationMs,
|
|
31
|
+
derivedDurationMs,
|
|
32
|
+
summaryText,
|
|
33
|
+
truncateText,
|
|
34
|
+
repoBaseName,
|
|
35
|
+
parseMarkdownBlocks,
|
|
36
|
+
markdownLinkHref,
|
|
37
|
+
} from "../format.js";
|
|
38
|
+
import { parseRoute, navigate, buildHashPath } from "../router.js";
|
|
39
|
+
import {
|
|
40
|
+
fetchJson,
|
|
41
|
+
artifactUrl,
|
|
42
|
+
parseArtifactPreviewResponse,
|
|
43
|
+
} from "../api.js";
|
|
44
|
+
import {
|
|
45
|
+
objectRouteLink,
|
|
46
|
+
findFeatureInSnapshot,
|
|
47
|
+
featureLookupState,
|
|
48
|
+
buildObjectRelations,
|
|
49
|
+
renderObjectRelationBar,
|
|
50
|
+
} from "../relations.js";
|
|
51
|
+
import { copyText, renderRecommendedCommand } from "../copy.js";
|
|
52
|
+
import {
|
|
53
|
+
isPageVisible,
|
|
54
|
+
detailPollDelay,
|
|
55
|
+
dashboardPollDelay,
|
|
56
|
+
captureDagGraphViewportState,
|
|
57
|
+
updateDagGraphViewportState,
|
|
58
|
+
updateDagTimelineViewportState,
|
|
59
|
+
computeFollowLatest,
|
|
60
|
+
updateDagOutputViewportState,
|
|
61
|
+
renderViewState,
|
|
62
|
+
mountViewState,
|
|
63
|
+
} from "../state.js";
|
|
64
|
+
import { uiState } from "../state.js";
|
|
65
|
+
import { sortPoolTasks } from "../format-pool.js";
|
|
66
|
+
import {
|
|
67
|
+
dagMetaVisibility,
|
|
68
|
+
isDagRunActive,
|
|
69
|
+
dashboardVisibleFeatures,
|
|
70
|
+
findDagForRun,
|
|
71
|
+
} from "../dag-model.js";
|
|
72
|
+
import { layoutDag } from "../dag-layout.js";
|
|
73
|
+
import {
|
|
74
|
+
showView,
|
|
75
|
+
setBreadcrumb,
|
|
76
|
+
updateHeaderRefresh,
|
|
77
|
+
mountRelationBar,
|
|
78
|
+
} from "../shell-chrome.js";
|
|
79
|
+
import { dagProgress } from "../dag-helpers.js";
|
|
80
|
+
import {
|
|
81
|
+
findBatchRunIdForTask,
|
|
82
|
+
buildStepStates,
|
|
83
|
+
stepMarker,
|
|
84
|
+
getCurrentCommand,
|
|
85
|
+
getOutputTail,
|
|
86
|
+
collectArtifacts,
|
|
87
|
+
} from "../run-processing.js";
|
|
88
|
+
|
|
89
|
+
export async function mergeRunEvents(workerRunId) {
|
|
90
|
+
const page = await fetchJson(
|
|
91
|
+
`/api/runs/${encodeURIComponent(workerRunId)}/events?after=${uiState.runEventOffset}`,
|
|
92
|
+
);
|
|
93
|
+
if (!page?.events) return;
|
|
94
|
+
uiState.runEvents = uiState.runEvents.concat(page.events);
|
|
95
|
+
uiState.runEventOffset += page.events.length;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export function renderInlineArtifactList(container, artifacts) {
|
|
99
|
+
if (!artifacts || artifacts.size === 0) {
|
|
100
|
+
container.appendChild(el("p", "empty", UI_TEXT.noArtifacts));
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
const list = el("ul", "artifact-list artifact-preview-list");
|
|
104
|
+
for (const [label, artifactPath] of artifacts) {
|
|
105
|
+
const li = document.createElement("li");
|
|
106
|
+
li.className = "artifact-preview-item";
|
|
107
|
+
const head = el("div", "artifact-preview-head");
|
|
108
|
+
const title = el(
|
|
109
|
+
"span",
|
|
110
|
+
"artifact-preview-label",
|
|
111
|
+
`${label}: ${artifactPath}`,
|
|
112
|
+
);
|
|
113
|
+
const open = document.createElement("a");
|
|
114
|
+
open.href = artifactUrl(artifactPath);
|
|
115
|
+
open.textContent = "打开";
|
|
116
|
+
open.target = "_blank";
|
|
117
|
+
open.rel = "noopener";
|
|
118
|
+
open.className = "artifact-link";
|
|
119
|
+
open.addEventListener("click", (e) => e.stopPropagation());
|
|
120
|
+
head.appendChild(title);
|
|
121
|
+
head.appendChild(document.createTextNode(" "));
|
|
122
|
+
head.appendChild(open);
|
|
123
|
+
const pre = el("pre", "output-block artifact-preview-body", "加载中…");
|
|
124
|
+
li.appendChild(head);
|
|
125
|
+
li.appendChild(pre);
|
|
126
|
+
list.appendChild(li);
|
|
127
|
+
void (async () => {
|
|
128
|
+
try {
|
|
129
|
+
const res = await fetch(artifactUrl(artifactPath));
|
|
130
|
+
const text = await res.text();
|
|
131
|
+
if (!res.ok) {
|
|
132
|
+
let message = text;
|
|
133
|
+
try {
|
|
134
|
+
const parsed = JSON.parse(text);
|
|
135
|
+
if (parsed && typeof parsed.message === "string") {
|
|
136
|
+
message = parsed.message;
|
|
137
|
+
} else if (parsed && typeof parsed.error === "string") {
|
|
138
|
+
message = parsed.error;
|
|
139
|
+
}
|
|
140
|
+
} catch {
|
|
141
|
+
/* keep raw */
|
|
142
|
+
}
|
|
143
|
+
pre.textContent = `无法读取 (${res.status}): ${message || "未知错误"}`;
|
|
144
|
+
pre.classList.add("artifact-preview-error");
|
|
145
|
+
return;
|
|
146
|
+
}
|
|
147
|
+
const preview = parseArtifactPreviewResponse(text);
|
|
148
|
+
pre.textContent = preview.content || "(空)";
|
|
149
|
+
if (preview.truncated) {
|
|
150
|
+
pre.appendChild(document.createTextNode("\n\n[预览已截断]"));
|
|
151
|
+
}
|
|
152
|
+
} catch (err) {
|
|
153
|
+
pre.textContent = `无法读取: ${err?.message ?? String(err)}`;
|
|
154
|
+
pre.classList.add("artifact-preview-error");
|
|
155
|
+
}
|
|
156
|
+
})();
|
|
157
|
+
}
|
|
158
|
+
container.appendChild(list);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export function renderRunDagProgress(task, snapshot) {
|
|
162
|
+
const panel = document.getElementById("run-dag-progress");
|
|
163
|
+
clearNode(panel);
|
|
164
|
+
const dag = findDagForRun(snapshot, task.workerRunId, task);
|
|
165
|
+
if (!dag) return;
|
|
166
|
+
|
|
167
|
+
const progress = dagProgress(dag);
|
|
168
|
+
panel.appendChild(el("h3", null, "DAG 节点进度"));
|
|
169
|
+
panel.appendChild(
|
|
170
|
+
metaGrid([
|
|
171
|
+
["DAG", dag.title || dag.dagRunId],
|
|
172
|
+
["当前状态", dagStatusBadge(dag.effectiveStatus ?? dag.status)],
|
|
173
|
+
["进度", `${progress.finished}/${progress.total} 个节点`],
|
|
174
|
+
[
|
|
175
|
+
"详情",
|
|
176
|
+
(() => {
|
|
177
|
+
const a = el("a", "link", "查看 DAG 详情 →");
|
|
178
|
+
a.href = `#/dag/${encodeURIComponent(dag.dagRunId)}`;
|
|
179
|
+
a.addEventListener("click", (e) => {
|
|
180
|
+
e.preventDefault();
|
|
181
|
+
navigate(`/dag/${encodeURIComponent(dag.dagRunId)}`);
|
|
182
|
+
});
|
|
183
|
+
return a;
|
|
184
|
+
})(),
|
|
185
|
+
],
|
|
186
|
+
]),
|
|
187
|
+
);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export function renderRunPanels(task, events, snapshot) {
|
|
191
|
+
const metaEl = document.getElementById("run-meta");
|
|
192
|
+
const stepsEl = document.getElementById("run-steps");
|
|
193
|
+
const commandEl = document.getElementById("run-command");
|
|
194
|
+
const outputEl = document.getElementById("run-output");
|
|
195
|
+
const artifactsEl = document.getElementById("run-artifacts");
|
|
196
|
+
const diagnosisEl = document.getElementById("run-diagnosis");
|
|
197
|
+
|
|
198
|
+
const nowMs = Date.now();
|
|
199
|
+
const livenessNode = livenessBadge(task.liveness);
|
|
200
|
+
const statusCell = livenessNode
|
|
201
|
+
? (() => {
|
|
202
|
+
const wrap = document.createDocumentFragment();
|
|
203
|
+
wrap.appendChild(badge(task.status));
|
|
204
|
+
wrap.appendChild(document.createTextNode(" "));
|
|
205
|
+
wrap.appendChild(livenessNode);
|
|
206
|
+
return wrap;
|
|
207
|
+
})()
|
|
208
|
+
: badge(task.status);
|
|
209
|
+
|
|
210
|
+
const dag = findDagForRun(snapshot, task.workerRunId, task);
|
|
211
|
+
const batchRunId =
|
|
212
|
+
task.batchRunId ?? findBatchRunIdForTask(snapshot, task) ?? null;
|
|
213
|
+
const runDuration = displayDurationMs(task);
|
|
214
|
+
|
|
215
|
+
mountRelationBar(
|
|
216
|
+
"run-relations",
|
|
217
|
+
{
|
|
218
|
+
featureId: task.featureId,
|
|
219
|
+
taskId: task.taskId,
|
|
220
|
+
batchRunId: batchRunId ?? undefined,
|
|
221
|
+
workerRunId: task.workerRunId,
|
|
222
|
+
dagRunId: dag?.dagRunId ?? task.dagRunId,
|
|
223
|
+
},
|
|
224
|
+
snapshot,
|
|
225
|
+
);
|
|
226
|
+
|
|
227
|
+
clearNode(metaEl);
|
|
228
|
+
metaEl.appendChild(el("h3", "layer-primary", "主事实"));
|
|
229
|
+
metaEl.appendChild(
|
|
230
|
+
metaGrid([
|
|
231
|
+
["Worker 运行 ID", task.workerRunId ?? "—"],
|
|
232
|
+
["Task", objectRouteLink("task", task.taskId, snapshot)],
|
|
233
|
+
[
|
|
234
|
+
"Feature",
|
|
235
|
+
task.featureId
|
|
236
|
+
? objectRouteLink("feature", task.featureId, snapshot)
|
|
237
|
+
: el("span", "muted", "—"),
|
|
238
|
+
],
|
|
239
|
+
["状态", statusCell],
|
|
240
|
+
[
|
|
241
|
+
"Batch",
|
|
242
|
+
batchRunId
|
|
243
|
+
? objectRouteLink("batch", batchRunId, snapshot)
|
|
244
|
+
: el("span", "muted", "缺失"),
|
|
245
|
+
],
|
|
246
|
+
[
|
|
247
|
+
"DAG",
|
|
248
|
+
dag
|
|
249
|
+
? objectRouteLink("dag", dag.dagRunId, snapshot)
|
|
250
|
+
: task.dagRunId
|
|
251
|
+
? el("span", "muted", task.dagRunId)
|
|
252
|
+
: el("span", "muted", "缺失"),
|
|
253
|
+
],
|
|
254
|
+
["开始时间", formatTs(task.startedAt)],
|
|
255
|
+
["结束时间", formatTs(task.finishedAt)],
|
|
256
|
+
["派生耗时", formatMs(runDuration)],
|
|
257
|
+
["已用时", formatDuration(task.elapsedMs)],
|
|
258
|
+
["上次心跳", formatAgo(task.lastHeartbeatAt, nowMs)],
|
|
259
|
+
["上次输出", formatAgo(task.lastOutputAt, nowMs)],
|
|
260
|
+
[
|
|
261
|
+
"超时截止",
|
|
262
|
+
task.timeoutAt
|
|
263
|
+
? formatAgo(task.timeoutAt, nowMs)
|
|
264
|
+
: task.pid !== undefined
|
|
265
|
+
? `pid ${task.pid}`
|
|
266
|
+
: "—",
|
|
267
|
+
],
|
|
268
|
+
]),
|
|
269
|
+
);
|
|
270
|
+
|
|
271
|
+
renderRunDagProgress(task, snapshot);
|
|
272
|
+
|
|
273
|
+
const steps = buildStepStates(events);
|
|
274
|
+
clearNode(stepsEl);
|
|
275
|
+
const stepsHeading = el("h3", null, "执行过程 · 步骤");
|
|
276
|
+
stepsEl.appendChild(stepsHeading);
|
|
277
|
+
if (steps.every((s) => s.status === "pending")) {
|
|
278
|
+
stepsEl.appendChild(el("p", "empty", "暂无步骤事件"));
|
|
279
|
+
}
|
|
280
|
+
const ul = el("ul", "step-timeline");
|
|
281
|
+
for (const step of steps) {
|
|
282
|
+
const li = document.createElement("li");
|
|
283
|
+
const marker = el(
|
|
284
|
+
"span",
|
|
285
|
+
`step-marker ${step.status}`,
|
|
286
|
+
stepMarker(step.status),
|
|
287
|
+
);
|
|
288
|
+
const name = el("span", "step-name", step.display);
|
|
289
|
+
const dur = el(
|
|
290
|
+
"span",
|
|
291
|
+
"step-duration",
|
|
292
|
+
step.durationMs !== undefined ? formatMs(step.durationMs) : "",
|
|
293
|
+
);
|
|
294
|
+
li.appendChild(marker);
|
|
295
|
+
if (step.label === "run-dag" && dag?.dagRunId) {
|
|
296
|
+
const link = document.createElement("a");
|
|
297
|
+
link.href = `#/dag/${encodeURIComponent(dag.dagRunId)}`;
|
|
298
|
+
link.className = "step-link";
|
|
299
|
+
link.textContent = "DAG →";
|
|
300
|
+
link.addEventListener("click", (e) => {
|
|
301
|
+
e.preventDefault();
|
|
302
|
+
navigate(`/dag/${encodeURIComponent(dag.dagRunId)}`);
|
|
303
|
+
});
|
|
304
|
+
li.appendChild(name);
|
|
305
|
+
li.appendChild(link);
|
|
306
|
+
} else {
|
|
307
|
+
li.appendChild(name);
|
|
308
|
+
}
|
|
309
|
+
li.appendChild(dur);
|
|
310
|
+
ul.appendChild(li);
|
|
311
|
+
}
|
|
312
|
+
stepsEl.appendChild(ul);
|
|
313
|
+
|
|
314
|
+
const cmd = getCurrentCommand(events);
|
|
315
|
+
clearNode(commandEl);
|
|
316
|
+
commandEl.appendChild(el("h3", null, "当前命令"));
|
|
317
|
+
if (!cmd) {
|
|
318
|
+
commandEl.appendChild(el("p", "empty", UI_TEXT.noActiveCommand));
|
|
319
|
+
} else {
|
|
320
|
+
commandEl.appendChild(
|
|
321
|
+
metaGrid([
|
|
322
|
+
["标签", cmd.label ?? "—"],
|
|
323
|
+
["命令", (cmd.command ?? []).join(" ") || "—"],
|
|
324
|
+
["PID", cmd.pid !== undefined ? String(cmd.pid) : "—"],
|
|
325
|
+
[
|
|
326
|
+
"超时上限",
|
|
327
|
+
cmd.timeoutMs !== undefined ? formatMs(cmd.timeoutMs) : "—",
|
|
328
|
+
],
|
|
329
|
+
[
|
|
330
|
+
"已用时间",
|
|
331
|
+
cmd.elapsedMs !== undefined ? formatMs(cmd.elapsedMs) : "—",
|
|
332
|
+
],
|
|
333
|
+
]),
|
|
334
|
+
);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
const outputLabel = cmd?.label;
|
|
338
|
+
const tail = getOutputTail(events, outputLabel);
|
|
339
|
+
const existingPre = outputEl.querySelector("pre.output-block");
|
|
340
|
+
let followRunOutput = true;
|
|
341
|
+
let runOutputScrollLeft = 0;
|
|
342
|
+
let runOutputScrollTop = 0;
|
|
343
|
+
if (existingPre) {
|
|
344
|
+
followRunOutput = computeFollowLatest(
|
|
345
|
+
existingPre.scrollTop,
|
|
346
|
+
existingPre.scrollHeight,
|
|
347
|
+
existingPre.clientHeight,
|
|
348
|
+
);
|
|
349
|
+
runOutputScrollLeft = existingPre.scrollLeft;
|
|
350
|
+
runOutputScrollTop = existingPre.scrollTop;
|
|
351
|
+
}
|
|
352
|
+
const nextOutput = tail || "暂无输出";
|
|
353
|
+
// let pre = existingPre — preserve pre identity across polls when present.
|
|
354
|
+
let pre = existingPre;
|
|
355
|
+
if (!pre) {
|
|
356
|
+
clearNode(outputEl);
|
|
357
|
+
outputEl.appendChild(el("h3", null, "最新输出 (tail)"));
|
|
358
|
+
pre = el("pre", "output-block", nextOutput);
|
|
359
|
+
outputEl.appendChild(pre);
|
|
360
|
+
} else if (pre.textContent !== nextOutput) {
|
|
361
|
+
pre.textContent = nextOutput;
|
|
362
|
+
}
|
|
363
|
+
if (followRunOutput) {
|
|
364
|
+
pre.scrollTop = pre.scrollHeight;
|
|
365
|
+
} else {
|
|
366
|
+
pre.scrollTop = runOutputScrollTop;
|
|
367
|
+
}
|
|
368
|
+
pre.scrollLeft = runOutputScrollLeft;
|
|
369
|
+
const runRegionKey = `run:${task.workerRunId ?? task.taskId}:output`;
|
|
370
|
+
uiState.runOutputViewportState = updateDagOutputViewportState(
|
|
371
|
+
uiState.runOutputViewportState,
|
|
372
|
+
runRegionKey,
|
|
373
|
+
pre.scrollLeft,
|
|
374
|
+
pre.scrollTop,
|
|
375
|
+
followRunOutput,
|
|
376
|
+
);
|
|
377
|
+
|
|
378
|
+
let diagnosisHeader = diagnosisEl?.querySelector(".run-diagnosis-header");
|
|
379
|
+
if (diagnosisEl && !diagnosisHeader) {
|
|
380
|
+
diagnosisHeader = el("div", "run-diagnosis-header panel panel-meta");
|
|
381
|
+
diagnosisEl.insertBefore(diagnosisHeader, diagnosisEl.firstChild);
|
|
382
|
+
}
|
|
383
|
+
if (diagnosisHeader) {
|
|
384
|
+
clearNode(diagnosisHeader);
|
|
385
|
+
diagnosisHeader.appendChild(el("h3", "layer-diagnostic", "诊断证据"));
|
|
386
|
+
diagnosisHeader.appendChild(
|
|
387
|
+
metaGrid([
|
|
388
|
+
["失败分类", task.failureCategory ?? "—"],
|
|
389
|
+
["建议跟进", task.recommendedFollowUp ?? "—"],
|
|
390
|
+
]),
|
|
391
|
+
);
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
const artifacts = collectArtifacts(task, events);
|
|
395
|
+
clearNode(artifactsEl);
|
|
396
|
+
artifactsEl.appendChild(el("h3", null, "产物预览"));
|
|
397
|
+
renderInlineArtifactList(artifactsEl, artifacts);
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
export async function renderRun(workerRunId, initial = true) {
|
|
401
|
+
showView("run");
|
|
402
|
+
setBreadcrumb([
|
|
403
|
+
{ label: UI_TEXT.dashboard, href: "#/" },
|
|
404
|
+
{ label: workerRunId },
|
|
405
|
+
]);
|
|
406
|
+
|
|
407
|
+
if (initial) {
|
|
408
|
+
uiState.runEvents = [];
|
|
409
|
+
uiState.runEventOffset = 0;
|
|
410
|
+
uiState.currentRunId = workerRunId;
|
|
411
|
+
const runMeta = document.getElementById("run-meta");
|
|
412
|
+
if (runMeta) mountViewState(runMeta, "loading", "加载运行…");
|
|
413
|
+
} else if (uiState.currentRunId && uiState.currentRunId !== workerRunId) {
|
|
414
|
+
return false;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
const [task, snapshot] = await Promise.all([
|
|
418
|
+
fetchJson(`/api/runs/${encodeURIComponent(workerRunId)}`),
|
|
419
|
+
fetchJson("/api/snapshot"),
|
|
420
|
+
]);
|
|
421
|
+
if (!task) {
|
|
422
|
+
if (initial) {
|
|
423
|
+
const runMeta = document.getElementById("run-meta");
|
|
424
|
+
if (runMeta) mountViewState(runMeta, "error", "找不到该运行。");
|
|
425
|
+
}
|
|
426
|
+
return false;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
if (snapshot) {
|
|
430
|
+
uiState.lastSnapshot = snapshot;
|
|
431
|
+
updateHeaderRefresh(snapshot.generatedAt);
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
uiState.currentBatchRunId = task.batchRunId ?? uiState.currentBatchRunId;
|
|
435
|
+
await mergeRunEvents(workerRunId);
|
|
436
|
+
renderRunPanels(task, uiState.runEvents, snapshot ?? uiState.lastSnapshot);
|
|
437
|
+
return !TERMINAL_RUN_STATUSES.has((task.status ?? "").toLowerCase());
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
export function startRunPolling(workerRunId, initial = true) {
|
|
441
|
+
if (uiState.runPollTimer) clearTimeout(uiState.runPollTimer);
|
|
442
|
+
const generation = ++uiState.pollingGeneration;
|
|
443
|
+
const poll = async (isInitial) => {
|
|
444
|
+
const active = await renderRun(workerRunId, isInitial);
|
|
445
|
+
if (generation !== uiState.pollingGeneration || !active) return;
|
|
446
|
+
const delay = detailPollDelay("running", isPageVisible());
|
|
447
|
+
uiState.runPollTimer = setTimeout(() => {
|
|
448
|
+
uiState.runPollTimer = null;
|
|
449
|
+
void poll(false);
|
|
450
|
+
}, delay);
|
|
451
|
+
};
|
|
452
|
+
void poll(initial);
|
|
453
|
+
}
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
/** Session event timeline helpers (Observe UI R5). */
|
|
2
|
+
import { UI_TEXT } from "../constants.js";
|
|
3
|
+
import { el } from "../dom.js";
|
|
4
|
+
import { formatTs } from "../format.js";
|
|
5
|
+
import { fetchJson } from "../api.js";
|
|
6
|
+
import {
|
|
7
|
+
uiState,
|
|
8
|
+
updateDagTimelineViewportState,
|
|
9
|
+
computeFollowLatest,
|
|
10
|
+
} from "../state.js";
|
|
11
|
+
|
|
12
|
+
export function extractAssistantSummary(event) {
|
|
13
|
+
if (!event || typeof event !== "object") return "—";
|
|
14
|
+
const record = event;
|
|
15
|
+
if (record.message && typeof record.message === "object") {
|
|
16
|
+
const content = record.message.content;
|
|
17
|
+
if (Array.isArray(content)) {
|
|
18
|
+
return (
|
|
19
|
+
content
|
|
20
|
+
.filter(
|
|
21
|
+
(part) => part?.type === "text" && typeof part.text === "string",
|
|
22
|
+
)
|
|
23
|
+
.map((part) => part.text)
|
|
24
|
+
.join(" ") || "—"
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
if (typeof record.message.content === "string") {
|
|
28
|
+
return record.message.content;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
if (typeof record.text === "string") return record.text;
|
|
32
|
+
if (typeof record.outputPreview === "string") return record.outputPreview;
|
|
33
|
+
return "—";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export function formatSessionEventLabel(event) {
|
|
37
|
+
if (!event || typeof event !== "object") return "未知类型";
|
|
38
|
+
const type = typeof event.type === "string" ? event.type : "unknown";
|
|
39
|
+
const toolName = event.toolName ?? event.name ?? "—";
|
|
40
|
+
if (type === "agent_start") return "Agent 已启动";
|
|
41
|
+
if (type === "agent_end") return "Agent 已结束";
|
|
42
|
+
if (type === "agent_settled") return "Agent 已稳定";
|
|
43
|
+
if (type === "turn_start") return "开始新一轮处理";
|
|
44
|
+
if (type === "tool_execution_start" || type === "tool_start") {
|
|
45
|
+
return `调用工具 · ${toolName}`;
|
|
46
|
+
}
|
|
47
|
+
if (type === "tool_execution_end" || type === "tool_end") {
|
|
48
|
+
return `工具调用完成 · ${toolName}`;
|
|
49
|
+
}
|
|
50
|
+
if (
|
|
51
|
+
type === "turn_end" ||
|
|
52
|
+
type === "assistant" ||
|
|
53
|
+
type === "assistant_message"
|
|
54
|
+
) {
|
|
55
|
+
return `AI 回复摘要 · ${truncateText(extractAssistantSummary(event), 120)}`;
|
|
56
|
+
}
|
|
57
|
+
return type;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function sessionEventTimestamp(event) {
|
|
61
|
+
if (!event || typeof event !== "object") return "";
|
|
62
|
+
const ts =
|
|
63
|
+
(typeof event.timestamp === "string" && event.timestamp) ||
|
|
64
|
+
(typeof event.at === "string" && event.at) ||
|
|
65
|
+
(typeof event.recordedAt === "string" && event.recordedAt);
|
|
66
|
+
return ts || "";
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export function formatSessionEventTime(event) {
|
|
70
|
+
const ts = sessionEventTimestamp(event);
|
|
71
|
+
if (!ts) return "未记录时间";
|
|
72
|
+
return formatTs(ts).replace(/\s.*/, "") || formatTs(ts);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function sessionEventKind(event) {
|
|
76
|
+
const type = typeof event?.type === "string" ? event.type : "unknown";
|
|
77
|
+
if (type === "tool_execution_start" || type === "tool_start")
|
|
78
|
+
return "tool-start";
|
|
79
|
+
if (type === "tool_execution_end" || type === "tool_end") return "tool-end";
|
|
80
|
+
if (
|
|
81
|
+
type === "turn_end" ||
|
|
82
|
+
type === "assistant" ||
|
|
83
|
+
type === "assistant_message"
|
|
84
|
+
) {
|
|
85
|
+
return "assistant";
|
|
86
|
+
}
|
|
87
|
+
if (type.startsWith("agent_") || type === "turn_start") return "lifecycle";
|
|
88
|
+
return "protocol";
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export function buildSessionTimelineItems(events) {
|
|
92
|
+
const items = [];
|
|
93
|
+
for (let index = 0; index < events.length; index += 1) {
|
|
94
|
+
const event = events[index];
|
|
95
|
+
const type = typeof event?.type === "string" ? event.type : "unknown";
|
|
96
|
+
if (type === "message_start" || type === "message_end") {
|
|
97
|
+
let count = 1;
|
|
98
|
+
while (index + 1 < events.length) {
|
|
99
|
+
const nextType = events[index + 1]?.type;
|
|
100
|
+
if (nextType !== "message_start" && nextType !== "message_end") break;
|
|
101
|
+
count += 1;
|
|
102
|
+
index += 1;
|
|
103
|
+
}
|
|
104
|
+
items.push({ event, kind: "protocol", protocolCount: count });
|
|
105
|
+
continue;
|
|
106
|
+
}
|
|
107
|
+
items.push({ event, kind: sessionEventKind(event) });
|
|
108
|
+
}
|
|
109
|
+
return items;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export async function mergeSessionEvents(dagRunId, nodeId) {
|
|
113
|
+
if (!dagRunId || !nodeId) return;
|
|
114
|
+
const page = await fetchJson(
|
|
115
|
+
`/api/dag-runs/${encodeURIComponent(dagRunId)}/nodes/${encodeURIComponent(nodeId)}/session-events?after=${uiState.sessionEventOffset}`,
|
|
116
|
+
);
|
|
117
|
+
if (!page) return;
|
|
118
|
+
if (Array.isArray(page.events) && page.events.length > 0) {
|
|
119
|
+
uiState.sessionEvents = uiState.sessionEvents.concat(page.events);
|
|
120
|
+
}
|
|
121
|
+
if (typeof page.nextOffset === "number") {
|
|
122
|
+
uiState.sessionEventOffset = page.nextOffset;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export function renderSessionTimeline(content, nodeId) {
|
|
127
|
+
content.dataset.dagRunId = uiState.currentDagRunId ?? "";
|
|
128
|
+
content.dataset.nodeId = nodeId ?? "";
|
|
129
|
+
content.classList.add("process-timeline-scroll");
|
|
130
|
+
if (!nodeId || uiState.sessionEvents.length === 0) {
|
|
131
|
+
content.appendChild(el("p", "empty", UI_TEXT.noSessionEvents));
|
|
132
|
+
return;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
const timelineItems = buildSessionTimelineItems(uiState.sessionEvents);
|
|
136
|
+
const hasEventTimes = uiState.sessionEvents.some((event) =>
|
|
137
|
+
Boolean(sessionEventTimestamp(event)),
|
|
138
|
+
);
|
|
139
|
+
if (!hasEventTimes) {
|
|
140
|
+
content.appendChild(
|
|
141
|
+
el(
|
|
142
|
+
"p",
|
|
143
|
+
"process-timeline-note",
|
|
144
|
+
"事件未记录具体时间,以下按采集顺序展示。",
|
|
145
|
+
),
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
const ul = el("ul", "process-timeline");
|
|
149
|
+
for (let index = 0; index < timelineItems.length; index += 1) {
|
|
150
|
+
const item = timelineItems[index];
|
|
151
|
+
const li = el(
|
|
152
|
+
"li",
|
|
153
|
+
`process-timeline-item process-timeline-${item.kind}${hasEventTimes ? " has-time" : ""}`,
|
|
154
|
+
);
|
|
155
|
+
if (index === 0) li.classList.add("is-first");
|
|
156
|
+
if (index === timelineItems.length - 1) li.classList.add("is-last");
|
|
157
|
+
const rail = el("span", "process-timeline-rail");
|
|
158
|
+
rail.appendChild(el("span", "process-timeline-dot"));
|
|
159
|
+
li.appendChild(rail);
|
|
160
|
+
if (hasEventTimes) {
|
|
161
|
+
li.appendChild(
|
|
162
|
+
el("span", "process-timeline-time", formatSessionEventTime(item.event)),
|
|
163
|
+
);
|
|
164
|
+
}
|
|
165
|
+
const label =
|
|
166
|
+
item.protocolCount > 1
|
|
167
|
+
? `消息收发 · 已合并 ${item.protocolCount} 条协议事件`
|
|
168
|
+
: formatSessionEventLabel(item.event);
|
|
169
|
+
li.appendChild(el("span", "process-timeline-label", label));
|
|
170
|
+
ul.appendChild(li);
|
|
171
|
+
}
|
|
172
|
+
content.appendChild(ul);
|
|
173
|
+
|
|
174
|
+
const timelineState =
|
|
175
|
+
uiState.dagTimelineViewportState?.dagRunId === uiState.currentDagRunId &&
|
|
176
|
+
uiState.dagTimelineViewportState.nodeId === nodeId
|
|
177
|
+
? uiState.dagTimelineViewportState
|
|
178
|
+
: null;
|
|
179
|
+
content.addEventListener(
|
|
180
|
+
"scroll",
|
|
181
|
+
() => {
|
|
182
|
+
const followLatest = computeFollowLatest(
|
|
183
|
+
content.scrollTop,
|
|
184
|
+
content.scrollHeight,
|
|
185
|
+
content.clientHeight,
|
|
186
|
+
);
|
|
187
|
+
uiState.dagTimelineViewportState = updateDagTimelineViewportState(
|
|
188
|
+
uiState.dagTimelineViewportState,
|
|
189
|
+
uiState.currentDagRunId,
|
|
190
|
+
nodeId,
|
|
191
|
+
content.scrollLeft,
|
|
192
|
+
content.scrollTop,
|
|
193
|
+
followLatest,
|
|
194
|
+
);
|
|
195
|
+
},
|
|
196
|
+
{ passive: true },
|
|
197
|
+
);
|
|
198
|
+
if (timelineState?.followLatest ?? true) {
|
|
199
|
+
content.scrollLeft = timelineState?.scrollLeft ?? 0;
|
|
200
|
+
content.scrollTop = content.scrollHeight;
|
|
201
|
+
} else {
|
|
202
|
+
content.scrollLeft = timelineState.scrollLeft;
|
|
203
|
+
content.scrollTop = timelineState.scrollTop;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shell service locator removed in R5 boundary final (BND-02).
|
|
3
|
+
* Views import focused modules directly (shell-chrome, kpi, dag-helpers, run-processing).
|
|
4
|
+
* This file is retained only so historical bundle paths do not 404; do not reintroduce getShell.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
export {};
|