pi-crew 0.1.46 → 0.1.49
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/CHANGELOG.md +97 -0
- package/agents/analyst.md +11 -11
- package/agents/critic.md +11 -11
- package/agents/executor.md +11 -11
- package/agents/explorer.md +11 -11
- package/agents/planner.md +11 -11
- package/agents/reviewer.md +11 -11
- package/agents/security-reviewer.md +11 -11
- package/agents/test-engineer.md +11 -11
- package/agents/verifier.md +11 -11
- package/agents/writer.md +11 -11
- package/docs/next-upgrade-roadmap.md +117 -42
- package/docs/refactor-tasks-phase3.md +394 -394
- package/docs/refactor-tasks-phase4.md +564 -564
- package/docs/refactor-tasks-phase5.md +402 -402
- package/docs/refactor-tasks-phase6.md +662 -662
- package/docs/research/AGENT-EXECUTION-ARCHITECTURE.md +261 -0
- package/docs/research/AGENT-LIFECYCLE-COMPARISON.md +111 -0
- package/docs/research/AUDIT_OH_MY_PI.md +261 -0
- package/docs/research/AUDIT_PI_CREW.md +457 -0
- package/docs/research/CAVEMAN-DEEP-RESEARCH.md +281 -0
- package/docs/research/COMPARISON_OH_MY_PI_VS_PI_CREW.md +264 -0
- package/docs/research/DEEP-RESEARCH-PI-POWERBAR.md +343 -0
- package/docs/research/DEEP_RESEARCH_SUBAGENT_ARCHITECTURE.md +480 -0
- package/docs/research/GAP_CLOSURE_IMPLEMENTATION_PLAN.md +354 -0
- package/docs/research/IMPLEMENTATION_PLAN.md +385 -0
- package/docs/research/LIVE-SESSION-PRODUCTION-READY-PLAN.md +502 -0
- package/docs/research/OH-MY-PI-DEEP-RESEARCH-v14.7.6.md +266 -0
- package/docs/research/REMAINING-GAPS-PLAN.md +363 -0
- package/docs/research/SESSION-SUMMARY-2026-05-08.md +146 -0
- package/docs/research/UI-RESPONSIVENESS-AUDIT.md +173 -0
- package/docs/research-awesome-agent-skills-distillation.md +100 -100
- package/docs/research-extension-examples.md +297 -297
- package/docs/research-extension-system.md +324 -324
- package/docs/research-oh-my-pi-distillation.md +56 -9
- package/docs/research-optimization-plan.md +548 -548
- package/docs/research-phase10-distillation.md +198 -198
- package/docs/research-phase11-distillation.md +201 -201
- package/docs/research-pi-coding-agent.md +357 -357
- package/docs/research-source-pi-crew-reference.md +174 -174
- package/docs/runtime-flow.md +148 -148
- package/docs/source-runtime-refactor-map.md +107 -107
- package/index.ts +6 -6
- package/package.json +99 -98
- package/schema.json +8 -0
- package/skills/async-worker-recovery/SKILL.md +42 -42
- package/skills/context-artifact-hygiene/SKILL.md +52 -52
- package/skills/delegation-patterns/SKILL.md +54 -54
- package/skills/mailbox-interactive/SKILL.md +40 -40
- package/skills/model-routing-context/SKILL.md +39 -39
- package/skills/multi-perspective-review/SKILL.md +58 -58
- package/skills/observability-reliability/SKILL.md +41 -41
- package/skills/orchestration/SKILL.md +157 -0
- package/skills/ownership-session-security/SKILL.md +41 -41
- package/skills/pi-extension-lifecycle/SKILL.md +39 -39
- package/skills/requirements-to-task-packet/SKILL.md +63 -63
- package/skills/resource-discovery-config/SKILL.md +41 -41
- package/skills/runtime-state-reader/SKILL.md +44 -44
- package/skills/secure-agent-orchestration-review/SKILL.md +45 -45
- package/skills/state-mutation-locking/SKILL.md +42 -42
- package/skills/systematic-debugging/SKILL.md +67 -67
- package/skills/ui-render-performance/SKILL.md +39 -39
- package/skills/verification-before-done/SKILL.md +57 -57
- package/skills/worktree-isolation/SKILL.md +39 -39
- package/src/agents/agent-config.ts +6 -0
- package/src/agents/agent-search.ts +98 -0
- package/src/agents/agent-serializer.ts +4 -0
- package/src/agents/discover-agents.ts +17 -4
- package/src/config/config.ts +24 -0
- package/src/config/defaults.ts +11 -0
- package/src/extension/autonomous-policy.ts +26 -33
- package/src/extension/cross-extension-rpc.ts +82 -82
- package/src/extension/help.ts +1 -0
- package/src/extension/management.ts +5 -0
- package/src/extension/register.ts +58 -13
- package/src/extension/registration/commands.ts +33 -1
- package/src/extension/registration/compaction-guard.ts +125 -125
- package/src/extension/registration/team-tool.ts +6 -4
- package/src/extension/run-bundle-schema.ts +89 -89
- package/src/extension/run-index.ts +24 -18
- package/src/extension/run-maintenance.ts +68 -62
- package/src/extension/team-tool/api.ts +23 -2
- package/src/extension/team-tool/cancel.ts +86 -11
- package/src/extension/team-tool/context.ts +3 -0
- package/src/extension/team-tool/handle-settings.ts +188 -188
- package/src/extension/team-tool/inspect.ts +41 -41
- package/src/extension/team-tool/intent-policy.ts +42 -0
- package/src/extension/team-tool/lifecycle-actions.ts +47 -18
- package/src/extension/team-tool/parallel-dispatch.ts +156 -0
- package/src/extension/team-tool/plan.ts +19 -19
- package/src/extension/team-tool/respond.ts +10 -2
- package/src/extension/team-tool/run.ts +3 -2
- package/src/extension/team-tool/status.ts +1 -1
- package/src/extension/team-tool-types.ts +1 -0
- package/src/extension/team-tool.ts +13 -3
- package/src/hooks/registry.ts +61 -0
- package/src/hooks/types.ts +41 -0
- package/src/i18n.ts +184 -184
- package/src/observability/exporters/otlp-exporter.ts +77 -77
- package/src/prompt/prompt-runtime.ts +72 -72
- package/src/runtime/agent-control.ts +108 -2
- package/src/runtime/agent-memory.ts +72 -72
- package/src/runtime/agent-observability.ts +114 -114
- package/src/runtime/async-marker.ts +26 -26
- package/src/runtime/async-runner.ts +3 -1
- package/src/runtime/attention-events.ts +28 -28
- package/src/runtime/background-runner.ts +19 -0
- package/src/runtime/cancellation-token.ts +89 -0
- package/src/runtime/cancellation.ts +61 -51
- package/src/runtime/capability-inventory.ts +116 -0
- package/src/runtime/child-pi.ts +2 -1
- package/src/runtime/code-summary.ts +247 -0
- package/src/runtime/completion-guard.ts +190 -190
- package/src/runtime/crash-recovery.ts +181 -0
- package/src/runtime/crew-agent-records.ts +35 -7
- package/src/runtime/crew-agent-runtime.ts +1 -0
- package/src/runtime/custom-tools/irc-tool.ts +201 -0
- package/src/runtime/custom-tools/submit-result-tool.ts +90 -0
- package/src/runtime/delivery-coordinator.ts +3 -1
- package/src/runtime/direct-run.ts +35 -35
- package/src/runtime/effectiveness.ts +81 -76
- package/src/runtime/event-stream-bridge.ts +90 -0
- package/src/runtime/foreground-control.ts +82 -82
- package/src/runtime/green-contract.ts +46 -46
- package/src/runtime/group-join.ts +106 -106
- package/src/runtime/heartbeat-gradient.ts +28 -28
- package/src/runtime/heartbeat-watcher.ts +124 -124
- package/src/runtime/live-agent-control.ts +88 -88
- package/src/runtime/live-agent-manager.ts +78 -2
- package/src/runtime/live-control-realtime.ts +36 -36
- package/src/runtime/live-extension-bridge.ts +150 -0
- package/src/runtime/live-irc.ts +92 -0
- package/src/runtime/live-session-health.ts +100 -0
- package/src/runtime/live-session-runtime.ts +297 -7
- package/src/runtime/mcp-proxy.ts +113 -0
- package/src/runtime/notebook-helpers.ts +90 -0
- package/src/runtime/orphan-sentinel.ts +7 -0
- package/src/runtime/output-validator.ts +187 -0
- package/src/runtime/parallel-research.ts +44 -44
- package/src/runtime/parallel-utils.ts +57 -0
- package/src/runtime/parent-guard.ts +80 -0
- package/src/runtime/pi-json-output.ts +111 -111
- package/src/runtime/policy-engine.ts +79 -79
- package/src/runtime/progress-event-coalescer.ts +43 -43
- package/src/runtime/prose-compressor.ts +164 -0
- package/src/runtime/recovery-recipes.ts +74 -74
- package/src/runtime/result-extractor.ts +121 -0
- package/src/runtime/role-permission.ts +39 -39
- package/src/runtime/runtime-resolver.ts +1 -4
- package/src/runtime/semaphore.ts +131 -0
- package/src/runtime/sensitive-paths.ts +92 -0
- package/src/runtime/session-resources.ts +25 -25
- package/src/runtime/session-snapshot.ts +59 -59
- package/src/runtime/session-usage.ts +79 -79
- package/src/runtime/sidechain-output.ts +29 -29
- package/src/runtime/stream-preview.ts +177 -0
- package/src/runtime/subagent-manager.ts +3 -2
- package/src/runtime/subprocess-tool-registry.ts +67 -0
- package/src/runtime/supervisor-contact.ts +59 -59
- package/src/runtime/task-display.ts +38 -38
- package/src/runtime/task-output-context.ts +59 -9
- package/src/runtime/task-runner/capabilities.ts +78 -78
- package/src/runtime/task-runner/live-executor.ts +2 -0
- package/src/runtime/task-runner/progress.ts +119 -119
- package/src/runtime/task-runner/prompt-builder.ts +70 -8
- package/src/runtime/task-runner/prompt-pipeline.ts +64 -64
- package/src/runtime/task-runner/result-utils.ts +14 -14
- package/src/runtime/task-runner/run-projection.ts +104 -0
- package/src/runtime/task-runner/state-helpers.ts +22 -22
- package/src/runtime/task-runner.ts +75 -4
- package/src/runtime/team-runner.ts +60 -8
- package/src/runtime/worker-heartbeat.ts +21 -21
- package/src/runtime/worker-startup.ts +57 -57
- package/src/runtime/workspace-tree.ts +298 -0
- package/src/runtime/yield-handler.ts +189 -0
- package/src/schema/config-schema.ts +6 -0
- package/src/schema/team-tool-schema.ts +11 -1
- package/src/skills/discover-skills.ts +67 -0
- package/src/state/active-run-registry.ts +4 -2
- package/src/state/artifact-store.ts +4 -1
- package/src/state/atomic-write.ts +50 -1
- package/src/state/blob-store.ts +117 -0
- package/src/state/contracts.ts +1 -0
- package/src/state/event-log-rotation.ts +158 -0
- package/src/state/event-log.ts +52 -2
- package/src/state/mailbox.ts +87 -7
- package/src/state/state-store.ts +24 -4
- package/src/state/task-claims.ts +44 -44
- package/src/state/types.ts +20 -0
- package/src/state/usage.ts +29 -29
- package/src/subagents/async-entry.ts +1 -1
- package/src/subagents/index.ts +3 -3
- package/src/subagents/live/control.ts +1 -1
- package/src/subagents/live/manager.ts +1 -1
- package/src/subagents/live/realtime.ts +1 -1
- package/src/subagents/live/session-runtime.ts +1 -1
- package/src/subagents/manager.ts +1 -1
- package/src/subagents/spawn.ts +1 -1
- package/src/teams/team-serializer.ts +38 -38
- package/src/types/diff.d.ts +18 -18
- package/src/ui/agent-management-overlay.ts +144 -0
- package/src/ui/crew-footer.ts +101 -101
- package/src/ui/crew-select-list.ts +111 -111
- package/src/ui/crew-widget.ts +11 -2
- package/src/ui/dashboard-panes/cancellation-pane.ts +43 -0
- package/src/ui/dashboard-panes/capability-pane.ts +60 -0
- package/src/ui/dashboard-panes/mailbox-pane.ts +35 -11
- package/src/ui/dashboard-panes/metrics-pane.ts +34 -34
- package/src/ui/dynamic-border.ts +25 -25
- package/src/ui/layout-primitives.ts +106 -106
- package/src/ui/live-run-sidebar.ts +4 -0
- package/src/ui/loaders.ts +158 -158
- package/src/ui/powerbar-publisher.ts +77 -15
- package/src/ui/render-coalescer.ts +51 -0
- package/src/ui/render-diff.ts +119 -119
- package/src/ui/render-scheduler.ts +143 -143
- package/src/ui/run-dashboard.ts +4 -0
- package/src/ui/run-event-bus.ts +209 -0
- package/src/ui/run-snapshot-cache.ts +68 -16
- package/src/ui/snapshot-types.ts +8 -0
- package/src/ui/spinner.ts +17 -17
- package/src/ui/status-colors.ts +58 -58
- package/src/ui/syntax-highlight.ts +116 -116
- package/src/ui/transcript-entries.ts +258 -0
- package/src/utils/atomic-write.ts +33 -33
- package/src/utils/completion-dedupe.ts +63 -63
- package/src/utils/frontmatter.ts +68 -68
- package/src/utils/git.ts +262 -262
- package/src/utils/ids.ts +17 -12
- package/src/utils/incremental-reader.ts +104 -0
- package/src/utils/names.ts +27 -27
- package/src/utils/redaction.ts +44 -44
- package/src/utils/safe-paths.ts +47 -47
- package/src/utils/scan-cache.ts +137 -0
- package/src/utils/sleep.ts +32 -32
- package/src/utils/sse-parser.ts +134 -0
- package/src/utils/task-name-generator.ts +337 -0
- package/src/utils/visual.ts +33 -2
- package/src/workflows/validate-workflow.ts +40 -40
- package/src/worktree/branch-freshness.ts +45 -45
- package/src/worktree/cleanup.ts +2 -1
- package/teams/default.team.md +12 -12
- package/teams/fast-fix.team.md +11 -11
- package/teams/implementation.team.md +18 -18
- package/teams/parallel-research.team.md +14 -14
- package/teams/research.team.md +11 -11
- package/teams/review.team.md +12 -12
- package/workflows/default.workflow.md +29 -29
- package/workflows/fast-fix.workflow.md +22 -22
- package/workflows/implementation.workflow.md +38 -38
- package/workflows/parallel-research.workflow.md +46 -46
- package/workflows/research.workflow.md +22 -22
- package/workflows/review.workflow.md +30 -30
|
@@ -1,125 +1,125 @@
|
|
|
1
|
-
import type { ExtensionAPI, ExtensionContext } from "@mariozechner/pi-coding-agent";
|
|
2
|
-
import { listRecentRuns } from "../run-index.ts";
|
|
3
|
-
import type { ArtifactDescriptor, TeamRunManifest } from "../../state/types.ts";
|
|
4
|
-
|
|
5
|
-
export interface RegisterCompactionGuardOptions {
|
|
6
|
-
foregroundControllers:
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
const TRIGGER_RATIO = 0.75;
|
|
10
|
-
const HARD_RATIO = 0.95;
|
|
11
|
-
const DEFAULT_CONTEXT_WINDOW = 200_000;
|
|
12
|
-
const MAX_ARTIFACT_INDEX_RUNS = 10;
|
|
13
|
-
const MAX_ARTIFACT_INDEX_ITEMS = 80;
|
|
14
|
-
|
|
15
|
-
function contextWindow(ctx: { model?: { contextWindow?: number } }): number {
|
|
16
|
-
const value = ctx.model?.contextWindow;
|
|
17
|
-
return typeof value === "number" && Number.isFinite(value) && value > 0 ? value : DEFAULT_CONTEXT_WINDOW;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
function usageRatio(ctx: { getContextUsage(): { tokens: number | null } | undefined; model?: { contextWindow?: number } }): number | undefined {
|
|
21
|
-
const tokens = ctx.getContextUsage()?.tokens;
|
|
22
|
-
if (tokens === null || tokens === undefined || !Number.isFinite(tokens)) return undefined;
|
|
23
|
-
return tokens / contextWindow(ctx);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
interface CrewArtifactIndexEntry {
|
|
27
|
-
runId: string;
|
|
28
|
-
status: TeamRunManifest["status"];
|
|
29
|
-
team: string;
|
|
30
|
-
workflow?: string;
|
|
31
|
-
goal: string;
|
|
32
|
-
artifact: Pick<ArtifactDescriptor, "kind" | "path" | "producer" | "sizeBytes" | "createdAt">;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
function collectCrewArtifactIndex(cwd: string): CrewArtifactIndexEntry[] {
|
|
36
|
-
const entries: CrewArtifactIndexEntry[] = [];
|
|
37
|
-
for (const run of listRecentRuns(cwd, MAX_ARTIFACT_INDEX_RUNS)) {
|
|
38
|
-
for (const artifact of run.artifacts) {
|
|
39
|
-
entries.push({
|
|
40
|
-
runId: run.runId,
|
|
41
|
-
status: run.status,
|
|
42
|
-
team: run.team,
|
|
43
|
-
workflow: run.workflow,
|
|
44
|
-
goal: run.goal,
|
|
45
|
-
artifact: {
|
|
46
|
-
kind: artifact.kind,
|
|
47
|
-
path: artifact.path,
|
|
48
|
-
producer: artifact.producer,
|
|
49
|
-
sizeBytes: artifact.sizeBytes,
|
|
50
|
-
createdAt: artifact.createdAt,
|
|
51
|
-
},
|
|
52
|
-
});
|
|
53
|
-
if (entries.length >= MAX_ARTIFACT_INDEX_ITEMS) return entries;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
return entries;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
function formatCrewArtifactIndex(entries: CrewArtifactIndexEntry[]): string {
|
|
60
|
-
if (!entries.length) return "";
|
|
61
|
-
const lines = ["", "# pi-crew artifact index", "Preserve these run artifact references in the compaction summary:"];
|
|
62
|
-
for (const entry of entries) {
|
|
63
|
-
lines.push(`- ${entry.artifact.kind}: ${entry.artifact.path} (run=${entry.runId}, status=${entry.status}, team=${entry.team}, workflow=${entry.workflow ?? "none"}, producer=${entry.artifact.producer})`);
|
|
64
|
-
}
|
|
65
|
-
return lines.join("\n");
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
export function registerCompactionGuard(pi: ExtensionAPI, options: RegisterCompactionGuardOptions): void {
|
|
69
|
-
let pendingCompactReason: string | null = null;
|
|
70
|
-
let compactionInProgress = false;
|
|
71
|
-
|
|
72
|
-
const startCompact = (ctx: ExtensionContext, reason: string): void => {
|
|
73
|
-
if (compactionInProgress) return;
|
|
74
|
-
compactionInProgress = true;
|
|
75
|
-
const artifactIndex = collectCrewArtifactIndex(ctx.cwd);
|
|
76
|
-
if (artifactIndex.length > 0) {
|
|
77
|
-
pi.appendEntry("crew:artifact-index", {
|
|
78
|
-
reason,
|
|
79
|
-
createdAt: new Date().toISOString(),
|
|
80
|
-
artifacts: artifactIndex,
|
|
81
|
-
});
|
|
82
|
-
}
|
|
83
|
-
ctx.compact({
|
|
84
|
-
customInstructions: `Prioritize keeping pi-crew run state, task results, artifact references, run IDs, and next actions. Keep completed-task detail concise.${formatCrewArtifactIndex(artifactIndex)}`,
|
|
85
|
-
onComplete: () => {
|
|
86
|
-
compactionInProgress = false;
|
|
87
|
-
ctx.ui.notify(reason === "deferred" ? "Deferred compaction completed" : "Auto-compacted context during team run", "info");
|
|
88
|
-
},
|
|
89
|
-
onError: (error) => {
|
|
90
|
-
compactionInProgress = false;
|
|
91
|
-
ctx.ui.notify(`${reason === "deferred" ? "Deferred" : "Auto"} compaction failed: ${error.message}`, "error");
|
|
92
|
-
},
|
|
93
|
-
});
|
|
94
|
-
};
|
|
95
|
-
|
|
96
|
-
// Phase 1.2: Defer compaction during foreground runs unless context is critically full.
|
|
97
|
-
pi.on("session_before_compact", async (_event, ctx) => {
|
|
98
|
-
if (options.foregroundControllers.size === 0) return;
|
|
99
|
-
const ratio = usageRatio(ctx);
|
|
100
|
-
if (ratio !== undefined && ratio >= HARD_RATIO) {
|
|
101
|
-
ctx.ui.notify("Compaction allowed despite foreground run: context is critically full", "warning");
|
|
102
|
-
return;
|
|
103
|
-
}
|
|
104
|
-
pendingCompactReason = "deferred-during-foreground-run";
|
|
105
|
-
ctx.ui.notify("Compaction deferred: foreground team run in progress", "info");
|
|
106
|
-
return { cancel: true };
|
|
107
|
-
});
|
|
108
|
-
|
|
109
|
-
// Phase 2.1: Proactive compaction with dynamic threshold based on model context window.
|
|
110
|
-
pi.on("turn_end", (_event, ctx) => {
|
|
111
|
-
if (compactionInProgress) return;
|
|
112
|
-
if (options.foregroundControllers.size === 0 && pendingCompactReason) {
|
|
113
|
-
pendingCompactReason = null;
|
|
114
|
-
startCompact(ctx, "deferred");
|
|
115
|
-
return;
|
|
116
|
-
}
|
|
117
|
-
const ratio = usageRatio(ctx);
|
|
118
|
-
if (ratio === undefined || ratio < TRIGGER_RATIO) return;
|
|
119
|
-
if (options.foregroundControllers.size > 0) {
|
|
120
|
-
pendingCompactReason = "threshold-during-foreground-run";
|
|
121
|
-
return;
|
|
122
|
-
}
|
|
123
|
-
startCompact(ctx, "threshold");
|
|
124
|
-
});
|
|
125
|
-
}
|
|
1
|
+
import type { ExtensionAPI, ExtensionContext } from "@mariozechner/pi-coding-agent";
|
|
2
|
+
import { listRecentRuns } from "../run-index.ts";
|
|
3
|
+
import type { ArtifactDescriptor, TeamRunManifest } from "../../state/types.ts";
|
|
4
|
+
|
|
5
|
+
export interface RegisterCompactionGuardOptions {
|
|
6
|
+
foregroundControllers: Map<string | symbol, AbortController>;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const TRIGGER_RATIO = 0.75;
|
|
10
|
+
const HARD_RATIO = 0.95;
|
|
11
|
+
const DEFAULT_CONTEXT_WINDOW = 200_000;
|
|
12
|
+
const MAX_ARTIFACT_INDEX_RUNS = 10;
|
|
13
|
+
const MAX_ARTIFACT_INDEX_ITEMS = 80;
|
|
14
|
+
|
|
15
|
+
function contextWindow(ctx: { model?: { contextWindow?: number } }): number {
|
|
16
|
+
const value = ctx.model?.contextWindow;
|
|
17
|
+
return typeof value === "number" && Number.isFinite(value) && value > 0 ? value : DEFAULT_CONTEXT_WINDOW;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function usageRatio(ctx: { getContextUsage(): { tokens: number | null } | undefined; model?: { contextWindow?: number } }): number | undefined {
|
|
21
|
+
const tokens = ctx.getContextUsage()?.tokens;
|
|
22
|
+
if (tokens === null || tokens === undefined || !Number.isFinite(tokens)) return undefined;
|
|
23
|
+
return tokens / contextWindow(ctx);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
interface CrewArtifactIndexEntry {
|
|
27
|
+
runId: string;
|
|
28
|
+
status: TeamRunManifest["status"];
|
|
29
|
+
team: string;
|
|
30
|
+
workflow?: string;
|
|
31
|
+
goal: string;
|
|
32
|
+
artifact: Pick<ArtifactDescriptor, "kind" | "path" | "producer" | "sizeBytes" | "createdAt">;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function collectCrewArtifactIndex(cwd: string): CrewArtifactIndexEntry[] {
|
|
36
|
+
const entries: CrewArtifactIndexEntry[] = [];
|
|
37
|
+
for (const run of listRecentRuns(cwd, MAX_ARTIFACT_INDEX_RUNS)) {
|
|
38
|
+
for (const artifact of run.artifacts) {
|
|
39
|
+
entries.push({
|
|
40
|
+
runId: run.runId,
|
|
41
|
+
status: run.status,
|
|
42
|
+
team: run.team,
|
|
43
|
+
workflow: run.workflow,
|
|
44
|
+
goal: run.goal,
|
|
45
|
+
artifact: {
|
|
46
|
+
kind: artifact.kind,
|
|
47
|
+
path: artifact.path,
|
|
48
|
+
producer: artifact.producer,
|
|
49
|
+
sizeBytes: artifact.sizeBytes,
|
|
50
|
+
createdAt: artifact.createdAt,
|
|
51
|
+
},
|
|
52
|
+
});
|
|
53
|
+
if (entries.length >= MAX_ARTIFACT_INDEX_ITEMS) return entries;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
return entries;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function formatCrewArtifactIndex(entries: CrewArtifactIndexEntry[]): string {
|
|
60
|
+
if (!entries.length) return "";
|
|
61
|
+
const lines = ["", "# pi-crew artifact index", "Preserve these run artifact references in the compaction summary:"];
|
|
62
|
+
for (const entry of entries) {
|
|
63
|
+
lines.push(`- ${entry.artifact.kind}: ${entry.artifact.path} (run=${entry.runId}, status=${entry.status}, team=${entry.team}, workflow=${entry.workflow ?? "none"}, producer=${entry.artifact.producer})`);
|
|
64
|
+
}
|
|
65
|
+
return lines.join("\n");
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function registerCompactionGuard(pi: ExtensionAPI, options: RegisterCompactionGuardOptions): void {
|
|
69
|
+
let pendingCompactReason: string | null = null;
|
|
70
|
+
let compactionInProgress = false;
|
|
71
|
+
|
|
72
|
+
const startCompact = (ctx: ExtensionContext, reason: string): void => {
|
|
73
|
+
if (compactionInProgress) return;
|
|
74
|
+
compactionInProgress = true;
|
|
75
|
+
const artifactIndex = collectCrewArtifactIndex(ctx.cwd);
|
|
76
|
+
if (artifactIndex.length > 0) {
|
|
77
|
+
pi.appendEntry("crew:artifact-index", {
|
|
78
|
+
reason,
|
|
79
|
+
createdAt: new Date().toISOString(),
|
|
80
|
+
artifacts: artifactIndex,
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
ctx.compact({
|
|
84
|
+
customInstructions: `Prioritize keeping pi-crew run state, task results, artifact references, run IDs, and next actions. Keep completed-task detail concise.${formatCrewArtifactIndex(artifactIndex)}`,
|
|
85
|
+
onComplete: () => {
|
|
86
|
+
compactionInProgress = false;
|
|
87
|
+
ctx.ui.notify(reason === "deferred" ? "Deferred compaction completed" : "Auto-compacted context during team run", "info");
|
|
88
|
+
},
|
|
89
|
+
onError: (error) => {
|
|
90
|
+
compactionInProgress = false;
|
|
91
|
+
ctx.ui.notify(`${reason === "deferred" ? "Deferred" : "Auto"} compaction failed: ${error.message}`, "error");
|
|
92
|
+
},
|
|
93
|
+
});
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
// Phase 1.2: Defer compaction during foreground runs unless context is critically full.
|
|
97
|
+
pi.on("session_before_compact", async (_event, ctx) => {
|
|
98
|
+
if (options.foregroundControllers.size === 0) return;
|
|
99
|
+
const ratio = usageRatio(ctx);
|
|
100
|
+
if (ratio !== undefined && ratio >= HARD_RATIO) {
|
|
101
|
+
ctx.ui.notify("Compaction allowed despite foreground run: context is critically full", "warning");
|
|
102
|
+
return;
|
|
103
|
+
}
|
|
104
|
+
pendingCompactReason = "deferred-during-foreground-run";
|
|
105
|
+
ctx.ui.notify("Compaction deferred: foreground team run in progress", "info");
|
|
106
|
+
return { cancel: true };
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
// Phase 2.1: Proactive compaction with dynamic threshold based on model context window.
|
|
110
|
+
pi.on("turn_end", (_event, ctx) => {
|
|
111
|
+
if (compactionInProgress) return;
|
|
112
|
+
if (options.foregroundControllers.size === 0 && pendingCompactReason) {
|
|
113
|
+
pendingCompactReason = null;
|
|
114
|
+
startCompact(ctx, "deferred");
|
|
115
|
+
return;
|
|
116
|
+
}
|
|
117
|
+
const ratio = usageRatio(ctx);
|
|
118
|
+
if (ratio === undefined || ratio < TRIGGER_RATIO) return;
|
|
119
|
+
if (options.foregroundControllers.size > 0) {
|
|
120
|
+
pendingCompactReason = "threshold-during-foreground-run";
|
|
121
|
+
return;
|
|
122
|
+
}
|
|
123
|
+
startCompact(ctx, "threshold");
|
|
124
|
+
});
|
|
125
|
+
}
|
|
@@ -14,8 +14,9 @@ import { withSessionId } from "../team-tool/context.ts";
|
|
|
14
14
|
import { toolResult } from "../tool-result.ts";
|
|
15
15
|
|
|
16
16
|
export interface RegisterTeamToolDeps {
|
|
17
|
-
foregroundControllers:
|
|
17
|
+
foregroundControllers: Map<string | symbol, AbortController>;
|
|
18
18
|
startForegroundRun: (ctx: ExtensionContext, runner: (signal?: AbortSignal) => Promise<void>, runId?: string) => void;
|
|
19
|
+
abortForegroundRun: (runId: string) => boolean;
|
|
19
20
|
openLiveSidebar: (ctx: ExtensionContext, runId: string) => void;
|
|
20
21
|
getManifestCache: (cwd: string) => ReturnType<typeof createManifestCache>;
|
|
21
22
|
getRunSnapshotCache?: (cwd: string) => ReturnType<typeof createRunSnapshotCache>;
|
|
@@ -46,7 +47,8 @@ export function registerTeamTool(pi: ExtensionAPI, deps: RegisterTeamToolDeps):
|
|
|
46
47
|
parameters: TeamToolParams as never,
|
|
47
48
|
async execute(_id, params, signal, _onUpdate, ctx) {
|
|
48
49
|
const controller = new AbortController();
|
|
49
|
-
|
|
50
|
+
const toolKey = Symbol();
|
|
51
|
+
deps.foregroundControllers.set(toolKey, controller);
|
|
50
52
|
const abort = (): void => controller.abort();
|
|
51
53
|
signal?.addEventListener("abort", abort, { once: true });
|
|
52
54
|
try {
|
|
@@ -59,7 +61,7 @@ export function registerTeamTool(pi: ExtensionAPI, deps: RegisterTeamToolDeps):
|
|
|
59
61
|
const runLabel = resolved.team ?? resolved.agent ?? "direct";
|
|
60
62
|
pi.setSessionName(`pi-crew: ${runLabel}/${resolved.workflow ?? "default"} — ${resolved.goal.slice(0, 60)}`);
|
|
61
63
|
}
|
|
62
|
-
const output = await handleTeamTool(resolved, { ...toolCtx, signal: controller.signal, metricRegistry: deps.getMetricRegistry?.(), startForegroundRun: (runner, runId) => deps.startForegroundRun(toolCtx, runner, runId), onRunStarted: (runId) => deps.openLiveSidebar(toolCtx, runId), onJsonEvent: deps.onJsonEvent });
|
|
64
|
+
const output = await handleTeamTool(resolved, { ...toolCtx, signal: controller.signal, metricRegistry: deps.getMetricRegistry?.(), startForegroundRun: (runner, runId) => deps.startForegroundRun(toolCtx, runner, runId), abortForegroundRun: deps.abortForegroundRun, onRunStarted: (runId) => deps.openLiveSidebar(toolCtx, runId), onJsonEvent: deps.onJsonEvent });
|
|
63
65
|
if (resolved.action === "run" && !output.isError && typeof output.details?.runId === "string") {
|
|
64
66
|
pi.appendEntry("crew:run-started", {
|
|
65
67
|
runId: output.details.runId,
|
|
@@ -79,7 +81,7 @@ export function registerTeamTool(pi: ExtensionAPI, deps: RegisterTeamToolDeps):
|
|
|
79
81
|
return output;
|
|
80
82
|
} finally {
|
|
81
83
|
signal?.removeEventListener("abort", abort);
|
|
82
|
-
deps.foregroundControllers.delete(
|
|
84
|
+
deps.foregroundControllers.delete(toolKey);
|
|
83
85
|
}
|
|
84
86
|
},
|
|
85
87
|
};
|
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
import { isTeamRunStatus, isTeamTaskStatus } from "../state/contracts.ts";
|
|
2
|
-
import type { TeamRunManifest, TeamTaskState, ArtifactDescriptor } from "../state/types.ts";
|
|
3
|
-
import type { TeamEvent } from "../state/event-log.ts";
|
|
4
|
-
import type { ExportedRunBundle } from "./run-export.ts";
|
|
5
|
-
|
|
6
|
-
export interface BundleValidationResult {
|
|
7
|
-
ok: boolean;
|
|
8
|
-
errors: string[];
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
function isRecord(value: unknown): value is Record<string, unknown> {
|
|
12
|
-
return Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
function validateArtifact(value: unknown, index: number, errors: string[]): value is ArtifactDescriptor {
|
|
16
|
-
if (!isRecord(value)) {
|
|
17
|
-
errors.push(`manifest.artifacts[${index}] must be an object.`);
|
|
18
|
-
return false;
|
|
19
|
-
}
|
|
20
|
-
const before = errors.length;
|
|
21
|
-
if (typeof value.kind !== "string") errors.push(`manifest.artifacts[${index}].kind must be a string.`);
|
|
22
|
-
if (typeof value.path !== "string") errors.push(`manifest.artifacts[${index}].path must be a string.`);
|
|
23
|
-
if (typeof value.createdAt !== "string") errors.push(`manifest.artifacts[${index}].createdAt must be a string.`);
|
|
24
|
-
if (typeof value.producer !== "string") errors.push(`manifest.artifacts[${index}].producer must be a string.`);
|
|
25
|
-
if (value.retention !== "run" && value.retention !== "project" && value.retention !== "temporary") errors.push(`manifest.artifacts[${index}].retention is invalid.`);
|
|
26
|
-
return errors.length === before;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
function validateManifest(value: unknown, errors: string[]): value is TeamRunManifest {
|
|
30
|
-
if (!isRecord(value)) {
|
|
31
|
-
errors.push("manifest must be an object.");
|
|
32
|
-
return false;
|
|
33
|
-
}
|
|
34
|
-
const before = errors.length;
|
|
35
|
-
if (value.schemaVersion !== 1) errors.push("manifest.schemaVersion must be 1.");
|
|
36
|
-
for (const field of ["runId", "team", "goal", "createdAt", "updatedAt", "cwd", "stateRoot", "artifactsRoot", "tasksPath", "eventsPath"] as const) {
|
|
37
|
-
if (typeof value[field] !== "string") errors.push(`manifest.${field} must be a string.`);
|
|
38
|
-
}
|
|
39
|
-
if (!isTeamRunStatus(value.status)) errors.push("manifest.status is invalid.");
|
|
40
|
-
if (value.workspaceMode !== "single" && value.workspaceMode !== "worktree") errors.push("manifest.workspaceMode must be single or worktree.");
|
|
41
|
-
if (!Array.isArray(value.artifacts)) errors.push("manifest.artifacts must be an array.");
|
|
42
|
-
else value.artifacts.forEach((artifact, index) => validateArtifact(artifact, index, errors));
|
|
43
|
-
return errors.length === before;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
function validateTask(value: unknown, index: number, errors: string[]): value is TeamTaskState {
|
|
47
|
-
if (!isRecord(value)) {
|
|
48
|
-
errors.push(`tasks[${index}] must be an object.`);
|
|
49
|
-
return false;
|
|
50
|
-
}
|
|
51
|
-
const before = errors.length;
|
|
52
|
-
for (const field of ["id", "runId", "role", "agent", "title", "cwd"] as const) {
|
|
53
|
-
if (typeof value[field] !== "string") errors.push(`tasks[${index}].${field} must be a string.`);
|
|
54
|
-
}
|
|
55
|
-
if (!isTeamTaskStatus(value.status)) errors.push(`tasks[${index}].status is invalid.`);
|
|
56
|
-
if (!Array.isArray(value.dependsOn)) errors.push(`tasks[${index}].dependsOn must be an array.`);
|
|
57
|
-
return errors.length === before;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
function validateEvent(value: unknown, index: number, errors: string[]): value is TeamEvent {
|
|
61
|
-
if (!isRecord(value)) {
|
|
62
|
-
errors.push(`events[${index}] must be an object.`);
|
|
63
|
-
return false;
|
|
64
|
-
}
|
|
65
|
-
const before = errors.length;
|
|
66
|
-
for (const field of ["time", "type", "runId"] as const) {
|
|
67
|
-
if (typeof value[field] !== "string") errors.push(`events[${index}].${field} must be a string.`);
|
|
68
|
-
}
|
|
69
|
-
return errors.length === before;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export function validateRunBundle(value: unknown): BundleValidationResult {
|
|
73
|
-
const errors: string[] = [];
|
|
74
|
-
if (!isRecord(value)) return { ok: false, errors: ["bundle must be an object."] };
|
|
75
|
-
if (value.schemaVersion !== 1) errors.push("schemaVersion must be 1.");
|
|
76
|
-
if (typeof value.exportedAt !== "string") errors.push("exportedAt must be a string.");
|
|
77
|
-
validateManifest(value.manifest, errors);
|
|
78
|
-
if (!Array.isArray(value.tasks)) errors.push("tasks must be an array.");
|
|
79
|
-
else value.tasks.forEach((task, index) => validateTask(task, index, errors));
|
|
80
|
-
if (!Array.isArray(value.events)) errors.push("events must be an array.");
|
|
81
|
-
else value.events.forEach((event, index) => validateEvent(event, index, errors));
|
|
82
|
-
if (!Array.isArray(value.artifactPaths) || !value.artifactPaths.every((item) => typeof item === "string")) errors.push("artifactPaths must be an array of strings.");
|
|
83
|
-
return { ok: errors.length === 0, errors };
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export function assertRunBundle(value: unknown): asserts value is ExportedRunBundle {
|
|
87
|
-
const validation = validateRunBundle(value);
|
|
88
|
-
if (!validation.ok) throw new Error(`File is not a valid pi-crew exported run bundle:\n${validation.errors.map((error) => `- ${error}`).join("\n")}`);
|
|
89
|
-
}
|
|
1
|
+
import { isTeamRunStatus, isTeamTaskStatus } from "../state/contracts.ts";
|
|
2
|
+
import type { TeamRunManifest, TeamTaskState, ArtifactDescriptor } from "../state/types.ts";
|
|
3
|
+
import type { TeamEvent } from "../state/event-log.ts";
|
|
4
|
+
import type { ExportedRunBundle } from "./run-export.ts";
|
|
5
|
+
|
|
6
|
+
export interface BundleValidationResult {
|
|
7
|
+
ok: boolean;
|
|
8
|
+
errors: string[];
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
function isRecord(value: unknown): value is Record<string, unknown> {
|
|
12
|
+
return Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
function validateArtifact(value: unknown, index: number, errors: string[]): value is ArtifactDescriptor {
|
|
16
|
+
if (!isRecord(value)) {
|
|
17
|
+
errors.push(`manifest.artifacts[${index}] must be an object.`);
|
|
18
|
+
return false;
|
|
19
|
+
}
|
|
20
|
+
const before = errors.length;
|
|
21
|
+
if (typeof value.kind !== "string") errors.push(`manifest.artifacts[${index}].kind must be a string.`);
|
|
22
|
+
if (typeof value.path !== "string") errors.push(`manifest.artifacts[${index}].path must be a string.`);
|
|
23
|
+
if (typeof value.createdAt !== "string") errors.push(`manifest.artifacts[${index}].createdAt must be a string.`);
|
|
24
|
+
if (typeof value.producer !== "string") errors.push(`manifest.artifacts[${index}].producer must be a string.`);
|
|
25
|
+
if (value.retention !== "run" && value.retention !== "project" && value.retention !== "temporary") errors.push(`manifest.artifacts[${index}].retention is invalid.`);
|
|
26
|
+
return errors.length === before;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
function validateManifest(value: unknown, errors: string[]): value is TeamRunManifest {
|
|
30
|
+
if (!isRecord(value)) {
|
|
31
|
+
errors.push("manifest must be an object.");
|
|
32
|
+
return false;
|
|
33
|
+
}
|
|
34
|
+
const before = errors.length;
|
|
35
|
+
if (value.schemaVersion !== 1) errors.push("manifest.schemaVersion must be 1.");
|
|
36
|
+
for (const field of ["runId", "team", "goal", "createdAt", "updatedAt", "cwd", "stateRoot", "artifactsRoot", "tasksPath", "eventsPath"] as const) {
|
|
37
|
+
if (typeof value[field] !== "string") errors.push(`manifest.${field} must be a string.`);
|
|
38
|
+
}
|
|
39
|
+
if (!isTeamRunStatus(value.status)) errors.push("manifest.status is invalid.");
|
|
40
|
+
if (value.workspaceMode !== "single" && value.workspaceMode !== "worktree") errors.push("manifest.workspaceMode must be single or worktree.");
|
|
41
|
+
if (!Array.isArray(value.artifacts)) errors.push("manifest.artifacts must be an array.");
|
|
42
|
+
else value.artifacts.forEach((artifact, index) => validateArtifact(artifact, index, errors));
|
|
43
|
+
return errors.length === before;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function validateTask(value: unknown, index: number, errors: string[]): value is TeamTaskState {
|
|
47
|
+
if (!isRecord(value)) {
|
|
48
|
+
errors.push(`tasks[${index}] must be an object.`);
|
|
49
|
+
return false;
|
|
50
|
+
}
|
|
51
|
+
const before = errors.length;
|
|
52
|
+
for (const field of ["id", "runId", "role", "agent", "title", "cwd"] as const) {
|
|
53
|
+
if (typeof value[field] !== "string") errors.push(`tasks[${index}].${field} must be a string.`);
|
|
54
|
+
}
|
|
55
|
+
if (!isTeamTaskStatus(value.status)) errors.push(`tasks[${index}].status is invalid.`);
|
|
56
|
+
if (!Array.isArray(value.dependsOn)) errors.push(`tasks[${index}].dependsOn must be an array.`);
|
|
57
|
+
return errors.length === before;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function validateEvent(value: unknown, index: number, errors: string[]): value is TeamEvent {
|
|
61
|
+
if (!isRecord(value)) {
|
|
62
|
+
errors.push(`events[${index}] must be an object.`);
|
|
63
|
+
return false;
|
|
64
|
+
}
|
|
65
|
+
const before = errors.length;
|
|
66
|
+
for (const field of ["time", "type", "runId"] as const) {
|
|
67
|
+
if (typeof value[field] !== "string") errors.push(`events[${index}].${field} must be a string.`);
|
|
68
|
+
}
|
|
69
|
+
return errors.length === before;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function validateRunBundle(value: unknown): BundleValidationResult {
|
|
73
|
+
const errors: string[] = [];
|
|
74
|
+
if (!isRecord(value)) return { ok: false, errors: ["bundle must be an object."] };
|
|
75
|
+
if (value.schemaVersion !== 1) errors.push("schemaVersion must be 1.");
|
|
76
|
+
if (typeof value.exportedAt !== "string") errors.push("exportedAt must be a string.");
|
|
77
|
+
validateManifest(value.manifest, errors);
|
|
78
|
+
if (!Array.isArray(value.tasks)) errors.push("tasks must be an array.");
|
|
79
|
+
else value.tasks.forEach((task, index) => validateTask(task, index, errors));
|
|
80
|
+
if (!Array.isArray(value.events)) errors.push("events must be an array.");
|
|
81
|
+
else value.events.forEach((event, index) => validateEvent(event, index, errors));
|
|
82
|
+
if (!Array.isArray(value.artifactPaths) || !value.artifactPaths.every((item) => typeof item === "string")) errors.push("artifactPaths must be an array of strings.");
|
|
83
|
+
return { ok: errors.length === 0, errors };
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export function assertRunBundle(value: unknown): asserts value is ExportedRunBundle {
|
|
87
|
+
const validation = validateRunBundle(value);
|
|
88
|
+
if (!validation.ok) throw new Error(`File is not a valid pi-crew exported run bundle:\n${validation.errors.map((error) => `- ${error}`).join("\n")}`);
|
|
89
|
+
}
|
|
@@ -5,8 +5,12 @@ import { DEFAULT_PATHS } from "../config/defaults.ts";
|
|
|
5
5
|
import { findRepoRoot, projectCrewRoot, userCrewRoot } from "../utils/paths.ts";
|
|
6
6
|
import { activeRunEntries } from "../state/active-run-registry.ts";
|
|
7
7
|
import { isSafePathId, resolveRealContainedPath } from "../utils/safe-paths.ts";
|
|
8
|
+
import { sharedScanCache } from "../utils/scan-cache.ts";
|
|
9
|
+
import { CancellationToken, createCancellationToken } from "../runtime/cancellation-token.ts";
|
|
8
10
|
|
|
9
11
|
function readManifest(filePath: string): TeamRunManifest | undefined {
|
|
12
|
+
const cached = sharedScanCache.readAndCache("manifests", filePath, filePath);
|
|
13
|
+
if (cached) return cached.raw as TeamRunManifest;
|
|
10
14
|
try {
|
|
11
15
|
return JSON.parse(fs.readFileSync(filePath, "utf-8")) as TeamRunManifest;
|
|
12
16
|
} catch {
|
|
@@ -14,23 +18,25 @@ function readManifest(filePath: string): TeamRunManifest | undefined {
|
|
|
14
18
|
}
|
|
15
19
|
}
|
|
16
20
|
|
|
17
|
-
function collectRuns(root: string, maxEntries?: number): TeamRunManifest[] {
|
|
21
|
+
function collectRuns(root: string, maxEntries?: number, signal?: AbortSignal): TeamRunManifest[] {
|
|
18
22
|
const runsRoot = path.join(root, DEFAULT_PATHS.state.runsSubdir);
|
|
19
23
|
if (!fs.existsSync(runsRoot)) return [];
|
|
24
|
+
if (signal?.aborted) return [];
|
|
25
|
+
const token = createCancellationToken({ signal });
|
|
20
26
|
const entries = fs.readdirSync(runsRoot, { withFileTypes: true })
|
|
21
27
|
.filter((entry) => entry.isDirectory() && isSafePathId(entry.name))
|
|
22
28
|
.map((entry) => entry.name)
|
|
23
29
|
.sort((a, b) => b.localeCompare(a));
|
|
24
30
|
const selected = maxEntries !== undefined ? entries.slice(0, Math.max(0, maxEntries)) : entries;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
const results: TeamRunManifest[] = [];
|
|
32
|
+
for (let i = 0; i < selected.length; i++) {
|
|
33
|
+
if (i % 10 === 0) token.heartbeat(`collectRuns:${i}/${selected.length}`);
|
|
34
|
+
try {
|
|
35
|
+
const manifest = readManifest(path.join(resolveRealContainedPath(runsRoot, selected[i]), DEFAULT_PATHS.state.manifestFile));
|
|
36
|
+
if (manifest) results.push(manifest);
|
|
37
|
+
} catch { /* skip unreadable manifests */ }
|
|
38
|
+
}
|
|
39
|
+
return results;
|
|
34
40
|
}
|
|
35
41
|
|
|
36
42
|
function mergeRuns(runSets: TeamRunManifest[][], max?: number): TeamRunManifest[] {
|
|
@@ -54,14 +60,14 @@ function collectActiveRuns(): TeamRunManifest[] {
|
|
|
54
60
|
.filter((manifest): manifest is TeamRunManifest => manifest !== undefined);
|
|
55
61
|
}
|
|
56
62
|
|
|
57
|
-
export function listRuns(cwd: string): TeamRunManifest[] {
|
|
63
|
+
export function listRuns(cwd: string, signal?: AbortSignal): TeamRunManifest[] {
|
|
58
64
|
const roots = scopedRunRoots(cwd);
|
|
59
|
-
return mergeRuns([...roots.map((root) => collectRuns(root)), collectActiveRuns()]);
|
|
65
|
+
return mergeRuns([...roots.map((root) => collectRuns(root, undefined, signal)), collectActiveRuns()]);
|
|
60
66
|
}
|
|
61
67
|
|
|
62
|
-
export function listRecentRuns(cwd: string, max = 20): TeamRunManifest[] {
|
|
68
|
+
export function listRecentRuns(cwd: string, max = 20, signal?: AbortSignal): TeamRunManifest[] {
|
|
63
69
|
const roots = scopedRunRoots(cwd);
|
|
64
|
-
return mergeRuns([...roots.map((root) => collectRuns(root, max)), collectActiveRuns()], max);
|
|
70
|
+
return mergeRuns([...roots.map((root) => collectRuns(root, max, signal)), collectActiveRuns()], max);
|
|
65
71
|
}
|
|
66
72
|
|
|
67
73
|
/**
|
|
@@ -70,15 +76,15 @@ export function listRecentRuns(cwd: string, max = 20): TeamRunManifest[] {
|
|
|
70
76
|
* - "user": only runs in the user crew root
|
|
71
77
|
* - "all" (default): merge both scopes (current behavior)
|
|
72
78
|
*/
|
|
73
|
-
export function listRunsByScope(cwd: string, scope: "project" | "user" | "all" = "all", max?: number): TeamRunManifest[] {
|
|
79
|
+
export function listRunsByScope(cwd: string, scope: "project" | "user" | "all" = "all", max?: number, signal?: AbortSignal): TeamRunManifest[] {
|
|
74
80
|
const projectRoot = findRepoRoot(cwd);
|
|
75
81
|
switch (scope) {
|
|
76
82
|
case "project":
|
|
77
|
-
return projectRoot ? collectRuns(projectCrewRoot(cwd), max) : [];
|
|
83
|
+
return projectRoot ? collectRuns(projectCrewRoot(cwd), max, signal) : [];
|
|
78
84
|
case "user":
|
|
79
|
-
return collectRuns(userCrewRoot(), max);
|
|
85
|
+
return collectRuns(userCrewRoot(), max, signal);
|
|
80
86
|
case "all":
|
|
81
87
|
default:
|
|
82
|
-
return max !== undefined ? listRecentRuns(cwd, max) : listRuns(cwd);
|
|
88
|
+
return max !== undefined ? listRecentRuns(cwd, max, signal) : listRuns(cwd, signal);
|
|
83
89
|
}
|
|
84
90
|
}
|