@h-rig/contracts 0.0.6-alpha.18 → 0.0.6-alpha.181
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/dist/index.cjs +3442 -0
- package/dist/index.mjs +3401 -0
- package/dist/src/agent-roles.d.ts +8 -0
- package/dist/src/artifact.d.ts +13 -0
- package/dist/src/artifact.js +3 -0
- package/dist/src/baseSchemas.d.ts +63 -0
- package/dist/src/baseSchemas.js +6 -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 +767 -162
- 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 +3 -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 +3 -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 +3 -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 +137 -1
- 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 +2605 -3752
- 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 +3 -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 +3 -58
- 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 +28 -961
- 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 +346 -64
- package/dist/src/policy.d.ts +16 -0
- package/dist/src/policy.js +3 -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 +3 -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 +16 -835
- 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 +238 -1078
- package/dist/src/review.d.ts +18 -0
- package/dist/src/review.js +3 -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 +73 -906
- 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 +24 -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 +3 -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 +3 -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 +76 -911
- package/package.json +55 -4
- package/dist/src/engine.js +0 -2278
- package/dist/src/providerRuntime.js +0 -1630
- package/dist/src/rig.js +0 -2374
- package/dist/src/server.js +0 -1053
- package/dist/src/serviceFabric.js +0 -1066
- package/dist/src/ws.js +0 -2968
- /package/dist/src/{ipc.js → agent-roles.js} +0 -0
|
@@ -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";
|