@h-rig/contracts 0.0.0-e2e-live.20260630085347
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/README.md +14 -0
- package/dist/index.cjs +3442 -0
- package/dist/index.mjs +3401 -0
- package/dist/src/agent-roles.d.ts +8 -0
- package/dist/src/agent-roles.js +1 -0
- package/dist/src/artifact.d.ts +13 -0
- package/dist/src/artifact.js +56 -0
- package/dist/src/baseSchemas.d.ts +63 -0
- package/dist/src/baseSchemas.js +72 -0
- package/dist/src/blocker-classifier.d.ts +21 -0
- package/dist/src/blocker-classifier.js +13 -0
- package/dist/src/browser.d.ts +80 -0
- package/dist/src/browser.js +13 -0
- package/dist/src/capability-id.d.ts +22 -0
- package/dist/src/capability-id.js +8 -0
- package/dist/src/cli-output.d.ts +348 -0
- package/dist/src/cli-output.js +190 -0
- package/dist/src/cli-runner.d.ts +43 -0
- package/dist/src/cli-runner.js +13 -0
- package/dist/src/cockpit.d.ts +58 -0
- package/dist/src/cockpit.js +13 -0
- package/dist/src/collab-session-viewer.d.ts +36 -0
- package/dist/src/collab-session-viewer.js +13 -0
- package/dist/src/config.d.ts +553 -0
- package/dist/src/config.js +822 -0
- package/dist/src/control-plane-types.d.ts +323 -0
- package/dist/src/control-plane-types.js +13 -0
- package/dist/src/conversation.d.ts +50 -0
- package/dist/src/conversation.js +98 -0
- package/dist/src/dependency-preflight.d.ts +43 -0
- package/dist/src/dependency-preflight.js +13 -0
- package/dist/src/docs-drift.d.ts +10 -0
- package/dist/src/docs-drift.js +12 -0
- package/dist/src/doctor.d.ts +90 -0
- package/dist/src/doctor.js +13 -0
- package/dist/src/drift.d.ts +28 -0
- package/dist/src/drift.js +69 -0
- package/dist/src/editor.d.ts +25 -0
- package/dist/src/editor.js +58 -0
- package/dist/src/errors.d.ts +13 -0
- package/dist/src/errors.js +17 -0
- package/dist/src/git.d.ts +152 -0
- package/dist/src/git.js +196 -0
- package/dist/src/github.d.ts +295 -0
- package/dist/src/github.js +17 -0
- package/dist/src/graph.d.ts +360 -0
- package/dist/src/graph.js +229 -0
- package/dist/src/guard.d.ts +118 -0
- package/dist/src/guard.js +15 -0
- package/dist/src/harness-events.d.ts +8 -0
- package/dist/src/harness-events.js +1 -0
- package/dist/src/harness-profile-state.d.ts +10 -0
- package/dist/src/harness-profile-state.js +13 -0
- package/dist/src/help-catalog.d.ts +41 -0
- package/dist/src/help-catalog.js +13 -0
- package/dist/src/host.d.ts +41 -0
- package/dist/src/host.js +13 -0
- package/dist/src/identity.d.ts +44 -0
- package/dist/src/identity.js +1 -0
- package/dist/src/index.d.ts +98 -0
- package/dist/src/index.js +3401 -0
- package/dist/src/isolation.d.ts +213 -0
- package/dist/src/isolation.js +13 -0
- package/dist/src/kernel.d.ts +200 -0
- package/dist/src/kernel.js +261 -0
- package/dist/src/keybindings.d.ts +71 -0
- package/dist/src/keybindings.js +122 -0
- package/dist/src/layout.d.ts +44 -0
- package/dist/src/layout.js +8 -0
- package/dist/src/lifecycle-capabilities.d.ts +224 -0
- package/dist/src/lifecycle-capabilities.js +45 -0
- package/dist/src/managed-repos.d.ts +339 -0
- package/dist/src/managed-repos.js +37 -0
- package/dist/src/memory.d.ts +199 -0
- package/dist/src/memory.js +15 -0
- package/dist/src/model.d.ts +13 -0
- package/dist/src/model.js +9 -0
- package/dist/src/native-toolchain.d.ts +46 -0
- package/dist/src/native-toolchain.js +13 -0
- package/dist/src/notify.d.ts +46 -0
- package/dist/src/notify.js +13 -0
- package/dist/src/orchestration.d.ts +43 -0
- package/dist/src/orchestration.js +98 -0
- package/dist/src/panel-protocol.d.ts +17 -0
- package/dist/src/panel-protocol.js +10 -0
- package/dist/src/pi-session.d.ts +113 -0
- package/dist/src/pi-session.js +1 -0
- package/dist/src/placement.d.ts +47 -0
- package/dist/src/placement.js +13 -0
- package/dist/src/planning.d.ts +64 -0
- package/dist/src/planning.js +90 -0
- package/dist/src/plugin-hooks.d.ts +51 -0
- package/dist/src/plugin-hooks.js +386 -0
- package/dist/src/plugin.d.ts +476 -0
- package/dist/src/plugin.js +384 -0
- package/dist/src/policy.d.ts +16 -0
- package/dist/src/policy.js +59 -0
- package/dist/src/product-entrypoint.d.ts +22 -0
- package/dist/src/product-entrypoint.js +13 -0
- package/dist/src/project.d.ts +71 -0
- package/dist/src/project.js +110 -0
- package/dist/src/prompt.d.ts +29 -0
- package/dist/src/prompt.js +13 -0
- package/dist/src/protocol-version.d.ts +21 -0
- package/dist/src/protocol-version.js +6 -0
- package/dist/src/provider-instructions.d.ts +41 -0
- package/dist/src/provider-instructions.js +13 -0
- package/dist/src/provider.d.ts +105 -0
- package/dist/src/provider.js +194 -0
- package/dist/src/remote-control.d.ts +93 -0
- package/dist/src/remote-control.js +26 -0
- package/dist/src/remote.d.ts +318 -0
- package/dist/src/remote.js +634 -0
- package/dist/src/review.d.ts +18 -0
- package/dist/src/review.js +61 -0
- package/dist/src/rollups.d.ts +41 -0
- package/dist/src/rollups.js +70 -0
- package/dist/src/run-control.d.ts +164 -0
- package/dist/src/run-control.js +13 -0
- package/dist/src/run-discovery.d.ts +83 -0
- package/dist/src/run-discovery.js +13 -0
- package/dist/src/run-dispatch.d.ts +34 -0
- package/dist/src/run-dispatch.js +13 -0
- package/dist/src/run-identity.d.ts +47 -0
- package/dist/src/run-identity.js +13 -0
- package/dist/src/run-journal.d.ts +694 -0
- package/dist/src/run-journal.js +569 -0
- package/dist/src/run-queue.d.ts +36 -0
- package/dist/src/run-queue.js +13 -0
- package/dist/src/run-read-model.d.ts +200 -0
- package/dist/src/run-read-model.js +13 -0
- package/dist/src/run-record.d.ts +45 -0
- package/dist/src/run-record.js +1 -0
- package/dist/src/run-registry-backbone.d.ts +56 -0
- package/dist/src/run-registry-backbone.js +13 -0
- package/dist/src/run-session-journal.d.ts +154 -0
- package/dist/src/run-session-journal.js +87 -0
- package/dist/src/run-status.d.ts +10 -0
- package/dist/src/run-status.js +27 -0
- package/dist/src/run-timeline.d.ts +7 -0
- package/dist/src/run-timeline.js +1 -0
- package/dist/src/runtime-secrets.d.ts +10 -0
- package/dist/src/runtime-secrets.js +13 -0
- package/dist/src/runtime-task-context.d.ts +82 -0
- package/dist/src/runtime-task-context.js +1 -0
- package/dist/src/runtime.d.ts +103 -0
- package/dist/src/runtime.js +210 -0
- package/dist/src/session-asset-materializer.d.ts +35 -0
- package/dist/src/session-asset-materializer.js +13 -0
- package/dist/src/session-hook-materializer.d.ts +41 -0
- package/dist/src/session-hook-materializer.js +13 -0
- package/dist/src/setup.d.ts +154 -0
- package/dist/src/setup.js +13 -0
- package/dist/src/stage.d.ts +245 -0
- package/dist/src/stage.js +169 -0
- package/dist/src/supervisor-journal.d.ts +204 -0
- package/dist/src/supervisor-journal.js +336 -0
- package/dist/src/supervisor-loop.d.ts +40 -0
- package/dist/src/supervisor-loop.js +13 -0
- package/dist/src/task-artifacts.d.ts +53 -0
- package/dist/src/task-artifacts.js +13 -0
- package/dist/src/task-config.d.ts +22 -0
- package/dist/src/task-config.js +1 -0
- package/dist/src/task-context-renderer.d.ts +29 -0
- package/dist/src/task-context-renderer.js +13 -0
- package/dist/src/task-data.d.ts +196 -0
- package/dist/src/task-data.js +13 -0
- package/dist/src/task-graph-primitives.d.ts +47 -0
- package/dist/src/task-graph-primitives.js +1 -0
- package/dist/src/task-source.d.ts +167 -0
- package/dist/src/task-source.js +25 -0
- package/dist/src/task-state-metadata.d.ts +21 -0
- package/dist/src/task-state-metadata.js +1 -0
- package/dist/src/task-state-paths.d.ts +14 -0
- package/dist/src/task-state-paths.js +13 -0
- package/dist/src/task-state-store.d.ts +36 -0
- package/dist/src/task-state-store.js +17 -0
- package/dist/src/task-tracker-state.d.ts +101 -0
- package/dist/src/task-tracker-state.js +39 -0
- package/dist/src/terminal.d.ts +130 -0
- package/dist/src/terminal.js +161 -0
- package/dist/src/tool-materializer.d.ts +36 -0
- package/dist/src/tool-materializer.js +13 -0
- package/dist/src/tool-registry.d.ts +3 -0
- package/dist/src/tool-registry.js +58 -0
- package/dist/src/toolchain-sources.d.ts +54 -0
- package/dist/src/toolchain-sources.js +17 -0
- package/dist/src/transport-config.d.ts +161 -0
- package/dist/src/transport-config.js +15 -0
- package/dist/src/validation.d.ts +14 -0
- package/dist/src/validation.js +63 -0
- package/dist/src/workflow-journal.d.ts +125 -0
- package/dist/src/workflow-journal.js +27 -0
- package/dist/src/workspace-config.d.ts +18 -0
- package/dist/src/workspace-config.js +13 -0
- package/dist/src/workspace-service.d.ts +16 -0
- package/dist/src/workspace-service.js +13 -0
- package/dist/src/workspace.d.ts +204 -0
- package/dist/src/workspace.js +195 -0
- package/package.json +79 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// packages/contracts/src/graph.ts
|
|
3
|
+
import { Schema as Schema2 } from "effect";
|
|
4
|
+
|
|
5
|
+
// packages/contracts/src/baseSchemas.ts
|
|
6
|
+
import { Schema } from "effect";
|
|
7
|
+
var TrimmedString = Schema.Trim;
|
|
8
|
+
var TrimmedNonEmptyString = TrimmedString.check(Schema.isNonEmpty());
|
|
9
|
+
var NonNegativeInt = Schema.Int.check(Schema.isGreaterThanOrEqualTo(0));
|
|
10
|
+
var PositiveInt = Schema.Int.check(Schema.isGreaterThanOrEqualTo(1));
|
|
11
|
+
var IsoDateTime = Schema.String;
|
|
12
|
+
var makeEntityId = (brand) => TrimmedNonEmptyString.pipe(Schema.brand(brand));
|
|
13
|
+
var ThreadId = makeEntityId("ThreadId");
|
|
14
|
+
var ProjectId = makeEntityId("ProjectId");
|
|
15
|
+
var WorkspaceId = makeEntityId("WorkspaceId");
|
|
16
|
+
var GraphId = makeEntityId("GraphId");
|
|
17
|
+
var TaskId = makeEntityId("TaskId");
|
|
18
|
+
var RunId = makeEntityId("RunId");
|
|
19
|
+
var SafePathSegment = TrimmedNonEmptyString.check(Schema.isPattern(/^[A-Za-z0-9][A-Za-z0-9._-]{0,127}$/)).pipe(Schema.brand("SafePathSegment"));
|
|
20
|
+
var SafeRunId = TrimmedNonEmptyString.check(Schema.isPattern(/^[A-Za-z0-9][A-Za-z0-9._:-]{0,127}$/)).pipe(Schema.brand("SafeRunId"));
|
|
21
|
+
var SafeGitRefComponent = TrimmedNonEmptyString.check(Schema.isPattern(/^[A-Za-z0-9][A-Za-z0-9._-]{0,127}$/)).pipe(Schema.brand("SafeGitRefComponent"));
|
|
22
|
+
var EngineRuntimeId = makeEntityId("EngineRuntimeId");
|
|
23
|
+
var ConversationId = makeEntityId("ConversationId");
|
|
24
|
+
var ActionId = makeEntityId("ActionId");
|
|
25
|
+
var ArtifactId = makeEntityId("ArtifactId");
|
|
26
|
+
var WorktreeId = makeEntityId("WorktreeId");
|
|
27
|
+
var ValidationResultId = makeEntityId("ValidationResultId");
|
|
28
|
+
var ReviewResultId = makeEntityId("ReviewResultId");
|
|
29
|
+
var CommandId = makeEntityId("CommandId");
|
|
30
|
+
var EventId = makeEntityId("EventId");
|
|
31
|
+
var MessageId = makeEntityId("MessageId");
|
|
32
|
+
var TurnId = makeEntityId("TurnId");
|
|
33
|
+
var ProviderItemId = makeEntityId("ProviderItemId");
|
|
34
|
+
var RuntimeSessionId = makeEntityId("RuntimeSessionId");
|
|
35
|
+
var RuntimeItemId = makeEntityId("RuntimeItemId");
|
|
36
|
+
var RuntimeRequestId = makeEntityId("RuntimeRequestId");
|
|
37
|
+
var RuntimeTaskId = makeEntityId("RuntimeTaskId");
|
|
38
|
+
var ApprovalRequestId = makeEntityId("ApprovalRequestId");
|
|
39
|
+
var CheckpointRef = makeEntityId("CheckpointRef");
|
|
40
|
+
var RemoteEndpointId = makeEntityId("RemoteEndpointId");
|
|
41
|
+
|
|
42
|
+
// packages/contracts/src/capability-id.ts
|
|
43
|
+
function makeCapabilityId(id) {
|
|
44
|
+
return id;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// packages/contracts/src/graph.ts
|
|
48
|
+
var TaskStatus = Schema2.Literals([
|
|
49
|
+
"draft",
|
|
50
|
+
"open",
|
|
51
|
+
"ready",
|
|
52
|
+
"queued",
|
|
53
|
+
"running",
|
|
54
|
+
"in_progress",
|
|
55
|
+
"under_review",
|
|
56
|
+
"blocked",
|
|
57
|
+
"unknown",
|
|
58
|
+
"completed",
|
|
59
|
+
"failed",
|
|
60
|
+
"cancelled",
|
|
61
|
+
"closed"
|
|
62
|
+
]);
|
|
63
|
+
var GraphSummary = Schema2.Struct({
|
|
64
|
+
id: GraphId,
|
|
65
|
+
workspaceId: WorkspaceId,
|
|
66
|
+
title: TrimmedNonEmptyString,
|
|
67
|
+
description: Schema2.NullOr(Schema2.String),
|
|
68
|
+
createdAt: IsoDateTime,
|
|
69
|
+
updatedAt: IsoDateTime
|
|
70
|
+
});
|
|
71
|
+
var TaskSummary = Schema2.Struct({
|
|
72
|
+
id: TaskId,
|
|
73
|
+
workspaceId: WorkspaceId,
|
|
74
|
+
graphId: Schema2.NullOr(GraphId),
|
|
75
|
+
externalId: Schema2.NullOr(TrimmedNonEmptyString),
|
|
76
|
+
title: TrimmedNonEmptyString,
|
|
77
|
+
description: Schema2.String,
|
|
78
|
+
status: TaskStatus,
|
|
79
|
+
priority: Schema2.NullOr(PositiveInt),
|
|
80
|
+
role: Schema2.NullOr(TrimmedNonEmptyString),
|
|
81
|
+
scope: Schema2.Array(TrimmedNonEmptyString),
|
|
82
|
+
validationKeys: Schema2.Array(TrimmedNonEmptyString),
|
|
83
|
+
sourceIssueId: Schema2.optional(Schema2.NullOr(TrimmedNonEmptyString)),
|
|
84
|
+
dependencies: Schema2.optional(Schema2.Array(TrimmedNonEmptyString)),
|
|
85
|
+
parentChildDeps: Schema2.optional(Schema2.Array(TrimmedNonEmptyString)),
|
|
86
|
+
metadata: Schema2.Unknown,
|
|
87
|
+
createdAt: IsoDateTime,
|
|
88
|
+
updatedAt: IsoDateTime
|
|
89
|
+
});
|
|
90
|
+
var QueueEntry = Schema2.Struct({
|
|
91
|
+
taskId: TaskId,
|
|
92
|
+
score: NonNegativeInt,
|
|
93
|
+
unblockCount: NonNegativeInt,
|
|
94
|
+
position: NonNegativeInt
|
|
95
|
+
});
|
|
96
|
+
var DependencyEdgeType = Schema2.Literals(["blocks", "parent-child", "related"]);
|
|
97
|
+
var DependencyEdge = Schema2.Struct({
|
|
98
|
+
fromTaskId: TaskId,
|
|
99
|
+
toTaskId: TaskId,
|
|
100
|
+
type: DependencyEdgeType
|
|
101
|
+
});
|
|
102
|
+
var BlockerClass = Schema2.Literals([
|
|
103
|
+
"not-blocked",
|
|
104
|
+
"task-blocked",
|
|
105
|
+
"human-decision",
|
|
106
|
+
"human-approval",
|
|
107
|
+
"external-input",
|
|
108
|
+
"unknown"
|
|
109
|
+
]);
|
|
110
|
+
var ActionRiskTier = Schema2.Literals(["t1-read", "t2-reversible", "t3-external", "t4-irreversible"]);
|
|
111
|
+
var BlockerClassification = Schema2.Struct({
|
|
112
|
+
taskId: TaskId,
|
|
113
|
+
blockerClass: BlockerClass,
|
|
114
|
+
actionRiskTier: Schema2.NullOr(ActionRiskTier),
|
|
115
|
+
rationale: Schema2.String,
|
|
116
|
+
source: Schema2.Literals(["elimination", "label", "status", "llm"]),
|
|
117
|
+
autoApplied: Schema2.Boolean
|
|
118
|
+
});
|
|
119
|
+
var DependencyNode = Schema2.Struct({
|
|
120
|
+
taskId: TaskId,
|
|
121
|
+
title: TrimmedNonEmptyString,
|
|
122
|
+
status: TaskStatus,
|
|
123
|
+
priority: Schema2.NullOr(PositiveInt),
|
|
124
|
+
assignee: Schema2.NullOr(TrimmedNonEmptyString),
|
|
125
|
+
blockedBy: Schema2.Array(TaskId),
|
|
126
|
+
blocks: Schema2.Array(TaskId),
|
|
127
|
+
blockingDepth: NonNegativeInt,
|
|
128
|
+
blockerClass: Schema2.NullOr(BlockerClass),
|
|
129
|
+
actionRiskTier: Schema2.NullOr(ActionRiskTier),
|
|
130
|
+
epicKey: Schema2.NullOr(TrimmedNonEmptyString),
|
|
131
|
+
groupKey: Schema2.optional(Schema2.NullOr(TrimmedNonEmptyString)),
|
|
132
|
+
externalId: Schema2.optional(Schema2.NullOr(TrimmedNonEmptyString)),
|
|
133
|
+
sourceIssueId: Schema2.optional(Schema2.NullOr(TrimmedNonEmptyString)),
|
|
134
|
+
scope: Schema2.optional(Schema2.Array(TrimmedNonEmptyString)),
|
|
135
|
+
validationKeys: Schema2.optional(Schema2.Array(TrimmedNonEmptyString))
|
|
136
|
+
});
|
|
137
|
+
var TaskGraphLane = Schema2.Struct({
|
|
138
|
+
key: TrimmedNonEmptyString,
|
|
139
|
+
label: TrimmedNonEmptyString,
|
|
140
|
+
rowIndex: NonNegativeInt,
|
|
141
|
+
x: Schema2.Number,
|
|
142
|
+
y: Schema2.Number,
|
|
143
|
+
width: NonNegativeInt,
|
|
144
|
+
height: NonNegativeInt,
|
|
145
|
+
color: Schema2.String,
|
|
146
|
+
taskCount: NonNegativeInt
|
|
147
|
+
});
|
|
148
|
+
var TaskGraphStage = Schema2.Struct({
|
|
149
|
+
index: NonNegativeInt,
|
|
150
|
+
label: TrimmedNonEmptyString,
|
|
151
|
+
x: Schema2.Number,
|
|
152
|
+
width: NonNegativeInt
|
|
153
|
+
});
|
|
154
|
+
var TaskGraphNode = Schema2.Struct({
|
|
155
|
+
id: TrimmedNonEmptyString,
|
|
156
|
+
taskId: TaskId,
|
|
157
|
+
task: Schema2.optional(TaskSummary),
|
|
158
|
+
rowKey: TrimmedNonEmptyString,
|
|
159
|
+
rowLabel: TrimmedNonEmptyString,
|
|
160
|
+
rowIndex: NonNegativeInt,
|
|
161
|
+
stage: NonNegativeInt,
|
|
162
|
+
x: Schema2.Number,
|
|
163
|
+
y: Schema2.Number,
|
|
164
|
+
width: NonNegativeInt,
|
|
165
|
+
height: NonNegativeInt,
|
|
166
|
+
color: Schema2.optional(Schema2.String),
|
|
167
|
+
taskCode: Schema2.optional(Schema2.NullOr(Schema2.String)),
|
|
168
|
+
strippedTitle: Schema2.optional(Schema2.String),
|
|
169
|
+
depsIn: Schema2.optional(NonNegativeInt),
|
|
170
|
+
depsOut: Schema2.optional(NonNegativeInt),
|
|
171
|
+
runCount: Schema2.optional(NonNegativeInt),
|
|
172
|
+
hasApprovals: Schema2.optional(Schema2.Boolean),
|
|
173
|
+
hasPendingUserInput: Schema2.optional(Schema2.Boolean),
|
|
174
|
+
hasRejectedReview: Schema2.optional(Schema2.Boolean),
|
|
175
|
+
hasFailedValidations: Schema2.optional(Schema2.Boolean),
|
|
176
|
+
artifactCount: Schema2.optional(NonNegativeInt)
|
|
177
|
+
});
|
|
178
|
+
var TaskGraphEdge = Schema2.Struct({
|
|
179
|
+
id: TrimmedNonEmptyString,
|
|
180
|
+
sourceId: TrimmedNonEmptyString,
|
|
181
|
+
targetId: TrimmedNonEmptyString,
|
|
182
|
+
color: Schema2.String,
|
|
183
|
+
kind: Schema2.Literals(["blocking", "parent-child"])
|
|
184
|
+
});
|
|
185
|
+
var TaskGraphLayout = Schema2.Struct({
|
|
186
|
+
lanes: Schema2.Array(TaskGraphLane),
|
|
187
|
+
stages: Schema2.Array(TaskGraphStage),
|
|
188
|
+
nodes: Schema2.Array(TaskGraphNode),
|
|
189
|
+
edges: Schema2.Array(TaskGraphEdge),
|
|
190
|
+
totalWidth: NonNegativeInt,
|
|
191
|
+
totalHeight: NonNegativeInt,
|
|
192
|
+
taskCount: NonNegativeInt
|
|
193
|
+
});
|
|
194
|
+
var DependencyGraphModel = Schema2.Struct({
|
|
195
|
+
graphId: GraphId,
|
|
196
|
+
nodes: Schema2.Array(DependencyNode),
|
|
197
|
+
edges: Schema2.Array(DependencyEdge),
|
|
198
|
+
layout: TaskGraphLayout,
|
|
199
|
+
cycles: Schema2.Array(Schema2.Array(TaskId)),
|
|
200
|
+
unresolvedRefs: Schema2.Array(TrimmedNonEmptyString),
|
|
201
|
+
degraded: Schema2.Boolean,
|
|
202
|
+
generatedAt: IsoDateTime
|
|
203
|
+
});
|
|
204
|
+
var GRAPH_PROJECT_CAPABILITY_ID = "rig.graph.project";
|
|
205
|
+
var GRAPH_PROJECT = makeCapabilityId(GRAPH_PROJECT_CAPABILITY_ID);
|
|
206
|
+
var TASK_SELECTION_CAPABILITY_ID = "cap:task-selection";
|
|
207
|
+
var TASK_SELECTION = makeCapabilityId(TASK_SELECTION_CAPABILITY_ID);
|
|
208
|
+
export {
|
|
209
|
+
TaskSummary,
|
|
210
|
+
TaskStatus,
|
|
211
|
+
TaskGraphStage,
|
|
212
|
+
TaskGraphNode,
|
|
213
|
+
TaskGraphLayout,
|
|
214
|
+
TaskGraphLane,
|
|
215
|
+
TaskGraphEdge,
|
|
216
|
+
TASK_SELECTION_CAPABILITY_ID,
|
|
217
|
+
TASK_SELECTION,
|
|
218
|
+
QueueEntry,
|
|
219
|
+
GraphSummary,
|
|
220
|
+
GRAPH_PROJECT_CAPABILITY_ID,
|
|
221
|
+
GRAPH_PROJECT,
|
|
222
|
+
DependencyNode,
|
|
223
|
+
DependencyGraphModel,
|
|
224
|
+
DependencyEdgeType,
|
|
225
|
+
DependencyEdge,
|
|
226
|
+
BlockerClassification,
|
|
227
|
+
BlockerClass,
|
|
228
|
+
ActionRiskTier
|
|
229
|
+
};
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import type { PolicyMode } from "./policy";
|
|
2
|
+
import type { CapabilityId } from "./capability-id";
|
|
3
|
+
export declare const POLICY_VERSION: 1;
|
|
4
|
+
export type PolicyVersion = typeof POLICY_VERSION;
|
|
5
|
+
export type { PolicyMode };
|
|
6
|
+
export type RuleCategory = "command" | "content" | "import" | "test-integrity";
|
|
7
|
+
export type RuleAction = "block" | "warn";
|
|
8
|
+
export type RuleAppliesTo = "test-files";
|
|
9
|
+
export type RuleMatch = {
|
|
10
|
+
pattern?: string;
|
|
11
|
+
regex?: string;
|
|
12
|
+
};
|
|
13
|
+
export type RuleUnless = {
|
|
14
|
+
regex?: string;
|
|
15
|
+
task_in?: string[];
|
|
16
|
+
};
|
|
17
|
+
export type PolicyRule = {
|
|
18
|
+
id: string;
|
|
19
|
+
category: RuleCategory;
|
|
20
|
+
description?: string;
|
|
21
|
+
match: RuleMatch;
|
|
22
|
+
unless?: RuleUnless;
|
|
23
|
+
action: RuleAction;
|
|
24
|
+
applies_to?: RuleAppliesTo;
|
|
25
|
+
compiledRegex?: RegExp;
|
|
26
|
+
compiledUnlessRegex?: RegExp;
|
|
27
|
+
};
|
|
28
|
+
export type ScopeConfig = {
|
|
29
|
+
fail_closed: boolean;
|
|
30
|
+
harness_paths_exempt: boolean;
|
|
31
|
+
runtime_paths_exempt: boolean;
|
|
32
|
+
};
|
|
33
|
+
export type SandboxConfig = {
|
|
34
|
+
mode: PolicyMode;
|
|
35
|
+
network: boolean;
|
|
36
|
+
read_deny: string[];
|
|
37
|
+
write_allow_from_runtime: boolean;
|
|
38
|
+
};
|
|
39
|
+
export type IsolationConfig = {
|
|
40
|
+
default_mode: "worktree";
|
|
41
|
+
repo_symlink_fallback: boolean;
|
|
42
|
+
strict_provisioning: boolean;
|
|
43
|
+
fail_closed_on_provision_error: boolean;
|
|
44
|
+
};
|
|
45
|
+
export type CompletionConfig = {
|
|
46
|
+
derive_checks_from_scope: boolean;
|
|
47
|
+
checks: string[];
|
|
48
|
+
typescript_config_probe: string[];
|
|
49
|
+
eslint_config_probe: string[];
|
|
50
|
+
};
|
|
51
|
+
export type RuntimeImageDeps = {
|
|
52
|
+
monorepo_install: boolean;
|
|
53
|
+
hp_next_install: boolean;
|
|
54
|
+
};
|
|
55
|
+
export type RuntimeImageConfig = {
|
|
56
|
+
deps: RuntimeImageDeps;
|
|
57
|
+
plugins_require_binaries: boolean;
|
|
58
|
+
};
|
|
59
|
+
export type RuntimeSnapshotConfig = {
|
|
60
|
+
enabled: boolean;
|
|
61
|
+
};
|
|
62
|
+
export type PolicyConfig = {
|
|
63
|
+
version: PolicyVersion;
|
|
64
|
+
mode: PolicyMode;
|
|
65
|
+
scope: ScopeConfig;
|
|
66
|
+
rules: PolicyRule[];
|
|
67
|
+
sandbox: SandboxConfig;
|
|
68
|
+
isolation: IsolationConfig;
|
|
69
|
+
completion: CompletionConfig;
|
|
70
|
+
runtime_image?: RuntimeImageConfig;
|
|
71
|
+
runtime_snapshot?: RuntimeSnapshotConfig;
|
|
72
|
+
};
|
|
73
|
+
export type ToolCallEvaluation = {
|
|
74
|
+
type: "tool-call";
|
|
75
|
+
tool_name: string;
|
|
76
|
+
tool_input: Record<string, unknown>;
|
|
77
|
+
};
|
|
78
|
+
export type CommandEvaluation = {
|
|
79
|
+
type: "command";
|
|
80
|
+
command: string;
|
|
81
|
+
};
|
|
82
|
+
export type ContentWriteEvaluation = {
|
|
83
|
+
type: "content-write";
|
|
84
|
+
file_path: string;
|
|
85
|
+
content: string;
|
|
86
|
+
};
|
|
87
|
+
export type FileAccessEvaluation = {
|
|
88
|
+
type: "file-access";
|
|
89
|
+
file_path: string;
|
|
90
|
+
access: "read" | "write";
|
|
91
|
+
};
|
|
92
|
+
export type GuardEvaluation = ToolCallEvaluation | CommandEvaluation | ContentWriteEvaluation | FileAccessEvaluation;
|
|
93
|
+
export type GuardContext = {
|
|
94
|
+
projectRoot: string;
|
|
95
|
+
monorepoRoot?: string;
|
|
96
|
+
taskId?: string;
|
|
97
|
+
taskScopes?: string[];
|
|
98
|
+
taskWorkspace?: string;
|
|
99
|
+
evaluation: GuardEvaluation;
|
|
100
|
+
};
|
|
101
|
+
export type MatchedRule = {
|
|
102
|
+
id: string;
|
|
103
|
+
category: RuleCategory;
|
|
104
|
+
description?: string;
|
|
105
|
+
reason: string;
|
|
106
|
+
};
|
|
107
|
+
export type GuardDecision = {
|
|
108
|
+
allowed: boolean;
|
|
109
|
+
matchedRules: MatchedRule[];
|
|
110
|
+
action: "allow" | "block" | "warn";
|
|
111
|
+
failClosed: boolean;
|
|
112
|
+
};
|
|
113
|
+
export interface GuardService {
|
|
114
|
+
readonly loadPolicy: (projectRoot: string) => PolicyConfig;
|
|
115
|
+
readonly evaluate: (context: GuardContext) => GuardDecision;
|
|
116
|
+
}
|
|
117
|
+
export declare const GUARD_CAPABILITY_ID = "rig.guard.service";
|
|
118
|
+
export declare const GUARD: CapabilityId<GuardService>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// packages/contracts/src/capability-id.ts
|
|
3
|
+
function makeCapabilityId(id) {
|
|
4
|
+
return id;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
// packages/contracts/src/guard.ts
|
|
8
|
+
var POLICY_VERSION = 1;
|
|
9
|
+
var GUARD_CAPABILITY_ID = "rig.guard.service";
|
|
10
|
+
var GUARD = makeCapabilityId(GUARD_CAPABILITY_ID);
|
|
11
|
+
export {
|
|
12
|
+
POLICY_VERSION,
|
|
13
|
+
GUARD_CAPABILITY_ID,
|
|
14
|
+
GUARD
|
|
15
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export type HarnessEventType = "runtime.init" | "command.received" | "policy.decision" | "command.started" | "command.finished" | "command.failed" | "plugin.loaded" | "plugin.error" | "validator.started" | "validator.finished" | "queue.started" | "queue.task.started" | "queue.task.finished" | "queue.finished" | "memory.command.requested" | "memory.command.applied" | "memory.command.failed";
|
|
2
|
+
export type HarnessEvent<TPayload = Record<string, unknown>> = {
|
|
3
|
+
id: string;
|
|
4
|
+
runId: string;
|
|
5
|
+
timestamp: string;
|
|
6
|
+
type: HarnessEventType;
|
|
7
|
+
payload: TPayload;
|
|
8
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// @bun
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { CapabilityId } from "./capability-id";
|
|
2
|
+
type JsonObject = object;
|
|
3
|
+
export interface HarnessProfileStateService {
|
|
4
|
+
harnessStateJsonPath(projectRoot: string, filename: string): string;
|
|
5
|
+
readHarnessStateJson<T extends JsonObject>(projectRoot: string, filename: string): Partial<T> | null;
|
|
6
|
+
writeHarnessStateJson<T extends JsonObject>(projectRoot: string, filename: string, value: T): string;
|
|
7
|
+
}
|
|
8
|
+
export declare const HARNESS_PROFILE_STATE_CAPABILITY_ID = "provider.harness-profile-state";
|
|
9
|
+
export declare const HARNESS_PROFILE_STATE: CapabilityId<HarnessProfileStateService>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// packages/contracts/src/capability-id.ts
|
|
3
|
+
function makeCapabilityId(id) {
|
|
4
|
+
return id;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
// packages/contracts/src/harness-profile-state.ts
|
|
8
|
+
var HARNESS_PROFILE_STATE_CAPABILITY_ID = "provider.harness-profile-state";
|
|
9
|
+
var HARNESS_PROFILE_STATE = makeCapabilityId(HARNESS_PROFILE_STATE_CAPABILITY_ID);
|
|
10
|
+
export {
|
|
11
|
+
HARNESS_PROFILE_STATE_CAPABILITY_ID,
|
|
12
|
+
HARNESS_PROFILE_STATE
|
|
13
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { CapabilityId } from "./capability-id";
|
|
2
|
+
export type HelpCommand = {
|
|
3
|
+
command: string;
|
|
4
|
+
description: string;
|
|
5
|
+
primary?: boolean;
|
|
6
|
+
/** Concrete invocations + variations (shown indented under the command). */
|
|
7
|
+
examples?: readonly string[];
|
|
8
|
+
/** When to reach for it (one line, shown after the description). */
|
|
9
|
+
usecase?: string;
|
|
10
|
+
};
|
|
11
|
+
export type HelpGroup = {
|
|
12
|
+
name: string;
|
|
13
|
+
summary: string;
|
|
14
|
+
usage: string[];
|
|
15
|
+
commands: HelpCommand[];
|
|
16
|
+
examples?: string[];
|
|
17
|
+
next?: string[];
|
|
18
|
+
advanced?: string[];
|
|
19
|
+
};
|
|
20
|
+
export type TopLevelSection = {
|
|
21
|
+
title: string;
|
|
22
|
+
subtitle: string;
|
|
23
|
+
commands: HelpCommand[];
|
|
24
|
+
};
|
|
25
|
+
/** The full help catalog payload: top-level sections + command groups. */
|
|
26
|
+
export type HelpCatalog = {
|
|
27
|
+
readonly sections: readonly TopLevelSection[];
|
|
28
|
+
readonly groups: readonly HelpGroup[];
|
|
29
|
+
/** Compatibility/internal commands shown only from advanced help. */
|
|
30
|
+
readonly advancedCommands?: readonly HelpCommand[];
|
|
31
|
+
/** Group names shown under advanced help; omitted means every group is shown. */
|
|
32
|
+
readonly advancedGroupNames?: readonly string[];
|
|
33
|
+
};
|
|
34
|
+
/** Capability id the CLI-surface plugin registers its help-catalog provider under. */
|
|
35
|
+
export declare const HELP_CATALOG_CAPABILITY_ID = "rig.help.catalog";
|
|
36
|
+
/** The cohesive help-catalog operation the cockpit depends on. Pure (data only). */
|
|
37
|
+
export interface HelpCatalogService {
|
|
38
|
+
helpCatalog(): HelpCatalog;
|
|
39
|
+
}
|
|
40
|
+
/** Typed capability id; string value is {@link HELP_CATALOG_CAPABILITY_ID}. */
|
|
41
|
+
export declare const HELP_CATALOG: CapabilityId<HelpCatalogService>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// packages/contracts/src/capability-id.ts
|
|
3
|
+
function makeCapabilityId(id) {
|
|
4
|
+
return id;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
// packages/contracts/src/help-catalog.ts
|
|
8
|
+
var HELP_CATALOG_CAPABILITY_ID = "rig.help.catalog";
|
|
9
|
+
var HELP_CATALOG = makeCapabilityId(HELP_CATALOG_CAPABILITY_ID);
|
|
10
|
+
export {
|
|
11
|
+
HELP_CATALOG_CAPABILITY_ID,
|
|
12
|
+
HELP_CATALOG
|
|
13
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* cap:host-run — the OMP run-host seam.
|
|
3
|
+
*
|
|
4
|
+
* `@rig/rig-host` is reclassified MOSTLY floor-neutral-exec (its generic
|
|
5
|
+
* session/pty/protocol/workspace launch plumbing is product-agnostic). The
|
|
6
|
+
* OMP-SPECIFIC runner (provision an isolated workspace + spawn the PTY-hosted
|
|
7
|
+
* OMP run process) is NOT baked into the floor — it is contributed as a host
|
|
8
|
+
* plugin capability under this id. Consumers (a dispatch surface) resolve this
|
|
9
|
+
* capability off the host instead of importing the runner impl.
|
|
10
|
+
*
|
|
11
|
+
* This file holds ONLY the pure seam vocabulary — no IO, no runner deps (those
|
|
12
|
+
* belong to the impl in `@rig/rig-host`, never to the cross-package seam).
|
|
13
|
+
*/
|
|
14
|
+
import type { CapabilityId } from "./capability-id";
|
|
15
|
+
/** Capability id the OMP run-host plugin registers its runner under. */
|
|
16
|
+
export declare const HOST_RUN_CAPABILITY_ID = "cap:host-run";
|
|
17
|
+
/** Pure input describing the run to host. */
|
|
18
|
+
export type HostRunProcessInput = {
|
|
19
|
+
readonly projectRoot?: string;
|
|
20
|
+
readonly taskId: string;
|
|
21
|
+
/** Dispatch/worktree handle (historical external name); not the OMP session id. */
|
|
22
|
+
readonly runId?: string;
|
|
23
|
+
readonly title?: string | null;
|
|
24
|
+
readonly model?: string | null;
|
|
25
|
+
readonly prompt?: string | null;
|
|
26
|
+
readonly forceSteerOnce?: boolean;
|
|
27
|
+
/** Optional sink for the bootstrap launcher's stdout. */
|
|
28
|
+
readonly writeStdout?: (text: string) => void;
|
|
29
|
+
};
|
|
30
|
+
/** Pure summary of a hosted run bootstrap (impl-internal runtime handle omitted). */
|
|
31
|
+
export type HostRunProcessResult = {
|
|
32
|
+
readonly dispatchHandle: string;
|
|
33
|
+
readonly pid: number;
|
|
34
|
+
readonly sessionName: string;
|
|
35
|
+
};
|
|
36
|
+
/** The cohesive run-host operation a dispatch surface depends on. Async (does IO). */
|
|
37
|
+
export interface HostRunService {
|
|
38
|
+
runHostProcess(input: HostRunProcessInput): Promise<HostRunProcessResult>;
|
|
39
|
+
}
|
|
40
|
+
/** Typed capability id; string value is {@link HOST_RUN_CAPABILITY_ID}. */
|
|
41
|
+
export declare const HOST_RUN: CapabilityId<HostRunService>;
|
package/dist/src/host.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// packages/contracts/src/capability-id.ts
|
|
3
|
+
function makeCapabilityId(id) {
|
|
4
|
+
return id;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
// packages/contracts/src/host.ts
|
|
8
|
+
var HOST_RUN_CAPABILITY_ID = "cap:host-run";
|
|
9
|
+
var HOST_RUN = makeCapabilityId(HOST_RUN_CAPABILITY_ID);
|
|
10
|
+
export {
|
|
11
|
+
HOST_RUN_CAPABILITY_ID,
|
|
12
|
+
HOST_RUN
|
|
13
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* identity.ts — pure structural vocabulary for Rig run identity resolution.
|
|
3
|
+
*
|
|
4
|
+
* The identity resolver implementation (`resolveRigIdentity` /
|
|
5
|
+
* `resolveRigIdentityFilter`) is the GitHub provider's SCM-identity domain and
|
|
6
|
+
* is exposed through the `RUN_IDENTITY_ENV` capability. Only the structural
|
|
7
|
+
* TYPES the resolver reads/returns live here, so any consumer can name the
|
|
8
|
+
* shapes without importing a plugin.
|
|
9
|
+
*
|
|
10
|
+
* The session-manager / auth-storage shapes are deliberately minimal
|
|
11
|
+
* (read-only, structural) so they stay decoupled from the concrete OMP
|
|
12
|
+
* session-manager class — exactly the slice the identity resolver needs.
|
|
13
|
+
*/
|
|
14
|
+
import type { RigWorkflowOwner } from "./workflow-journal";
|
|
15
|
+
/** Read-only slice of an OMP session manager the identity resolver reads. */
|
|
16
|
+
export type ReadonlySessionIdentityManager = {
|
|
17
|
+
getCwd(): string;
|
|
18
|
+
getSessionId(): string;
|
|
19
|
+
getBranch(): readonly {
|
|
20
|
+
type: string;
|
|
21
|
+
customType?: string;
|
|
22
|
+
data?: unknown;
|
|
23
|
+
}[];
|
|
24
|
+
};
|
|
25
|
+
/** Read-only slice of OMP auth storage the identity resolver probes for github-copilot identity. */
|
|
26
|
+
export type OmpAuthStorage = {
|
|
27
|
+
getOAuthAccountIdentity?: (provider: string, sessionId?: string) => unknown;
|
|
28
|
+
};
|
|
29
|
+
/** The structural context the Rig identity resolver reads to derive run owner identity. */
|
|
30
|
+
export type RigIdentityContext = {
|
|
31
|
+
sessionManager: ReadonlySessionIdentityManager;
|
|
32
|
+
modelRegistry?: {
|
|
33
|
+
authStorage?: OmpAuthStorage;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
/** A resolved Rig run identity: the selected repo and its github-derived owner. */
|
|
37
|
+
export type RigIdentity = {
|
|
38
|
+
selectedRepo: string;
|
|
39
|
+
owner: RigWorkflowOwner;
|
|
40
|
+
};
|
|
41
|
+
/** A `RigIdentity` annotated with the `+`-joined provenance of the inputs that produced it. */
|
|
42
|
+
export type RigResolvedIdentity = RigIdentity & {
|
|
43
|
+
source: string;
|
|
44
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// @bun
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
export { Schema } from "effect";
|
|
2
|
+
export * from "./baseSchemas";
|
|
3
|
+
export * from "./workspace";
|
|
4
|
+
export * from "./graph";
|
|
5
|
+
export * from "./runtime";
|
|
6
|
+
export * from "./run-journal";
|
|
7
|
+
export * from "./run-session-journal";
|
|
8
|
+
export * from "./workflow-journal";
|
|
9
|
+
export * from "./run-timeline";
|
|
10
|
+
export * from "./run-record";
|
|
11
|
+
export * from "./run-status";
|
|
12
|
+
export * from "./run-read-model";
|
|
13
|
+
export * from "./run-control";
|
|
14
|
+
export * from "./runtime-secrets";
|
|
15
|
+
export * from "./conversation";
|
|
16
|
+
export * from "./plugin";
|
|
17
|
+
export * from "./agent-roles";
|
|
18
|
+
export * from "./plugin-hooks";
|
|
19
|
+
export * from "./config";
|
|
20
|
+
export * from "./blocker-classifier";
|
|
21
|
+
export * from "./policy";
|
|
22
|
+
export * from "./guard";
|
|
23
|
+
export * from "./tool-registry";
|
|
24
|
+
export * from "./validation";
|
|
25
|
+
export * from "./review";
|
|
26
|
+
export * from "./artifact";
|
|
27
|
+
export * from "./remote";
|
|
28
|
+
export * from "./terminal";
|
|
29
|
+
export * from "./provider";
|
|
30
|
+
export * from "./model";
|
|
31
|
+
export * from "./keybindings";
|
|
32
|
+
export * from "./git";
|
|
33
|
+
export * from "./orchestration";
|
|
34
|
+
export * from "./editor";
|
|
35
|
+
export * from "./project";
|
|
36
|
+
export * from "./setup";
|
|
37
|
+
export * from "./host";
|
|
38
|
+
export * from "./run-identity";
|
|
39
|
+
export * from "./prompt";
|
|
40
|
+
export * from "./task-source";
|
|
41
|
+
export * from "./task-config";
|
|
42
|
+
export * from "./task-state-metadata";
|
|
43
|
+
export * from "./task-data";
|
|
44
|
+
export * from "./task-state-store";
|
|
45
|
+
export * from "./task-state-paths";
|
|
46
|
+
export * from "./task-artifacts";
|
|
47
|
+
export * from "./task-context-renderer";
|
|
48
|
+
export * from "./task-tracker-state";
|
|
49
|
+
export * from "./cli-output";
|
|
50
|
+
export * from "./pi-session";
|
|
51
|
+
export * from "./protocol-version";
|
|
52
|
+
export * from "./help-catalog";
|
|
53
|
+
export * from "./stage";
|
|
54
|
+
export * from "./kernel";
|
|
55
|
+
export * from "./supervisor-journal";
|
|
56
|
+
export * from "./planning";
|
|
57
|
+
export * from "./drift";
|
|
58
|
+
export * from "./rollups";
|
|
59
|
+
export * from "./panel-protocol";
|
|
60
|
+
export * from "./control-plane-types";
|
|
61
|
+
export * from "./capability-id";
|
|
62
|
+
export * from "./dependency-preflight";
|
|
63
|
+
export * from "./workspace-config";
|
|
64
|
+
export * from "./workspace-service";
|
|
65
|
+
export * from "./runtime-task-context";
|
|
66
|
+
export * from "./layout";
|
|
67
|
+
export * from "./errors";
|
|
68
|
+
export * from "./harness-events";
|
|
69
|
+
export * from "./lifecycle-capabilities";
|
|
70
|
+
export * from "./browser";
|
|
71
|
+
export * from "./memory";
|
|
72
|
+
export * from "./notify";
|
|
73
|
+
export * from "./collab-session-viewer";
|
|
74
|
+
export * from "./provider-instructions";
|
|
75
|
+
export * from "./session-asset-materializer";
|
|
76
|
+
export * from "./session-hook-materializer";
|
|
77
|
+
export * from "./isolation";
|
|
78
|
+
export * from "./managed-repos";
|
|
79
|
+
export * from "./task-graph-primitives";
|
|
80
|
+
export * from "./github";
|
|
81
|
+
export * from "./harness-profile-state";
|
|
82
|
+
export * from "./doctor";
|
|
83
|
+
export * from "./run-dispatch";
|
|
84
|
+
export * from "./transport-config";
|
|
85
|
+
export * from "./placement";
|
|
86
|
+
export * from "./run-queue";
|
|
87
|
+
export * from "./supervisor-loop";
|
|
88
|
+
export * from "./identity";
|
|
89
|
+
export * from "./run-discovery";
|
|
90
|
+
export * from "./run-registry-backbone";
|
|
91
|
+
export * from "./remote-control";
|
|
92
|
+
export * from "./tool-materializer";
|
|
93
|
+
export * from "./toolchain-sources";
|
|
94
|
+
export * from "./native-toolchain";
|
|
95
|
+
export * from "./cockpit";
|
|
96
|
+
export * from "./docs-drift";
|
|
97
|
+
export * from "./product-entrypoint";
|
|
98
|
+
export * from "./cli-runner";
|