@claudexor/orchestrator 3.2.0 → 3.3.7-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/attemptUsageCost.d.ts +7 -1
  2. package/dist/attemptUsageCost.d.ts.map +1 -1
  3. package/dist/attemptUsageCost.js +7 -1
  4. package/dist/attemptUsageCost.js.map +1 -1
  5. package/dist/budgetFailure.d.ts +1 -1
  6. package/dist/budgetFailure.d.ts.map +1 -1
  7. package/dist/budgetFailure.js.map +1 -1
  8. package/dist/candidateEvidence.d.ts +24 -0
  9. package/dist/candidateEvidence.d.ts.map +1 -1
  10. package/dist/candidateEvidence.js +26 -0
  11. package/dist/candidateEvidence.js.map +1 -1
  12. package/dist/credential-profile-rotation.d.ts.map +1 -1
  13. package/dist/credential-profile-rotation.js +23 -3
  14. package/dist/credential-profile-rotation.js.map +1 -1
  15. package/dist/credential-profiles.d.ts +60 -1
  16. package/dist/credential-profiles.d.ts.map +1 -1
  17. package/dist/credential-profiles.js +89 -1
  18. package/dist/credential-profiles.js.map +1 -1
  19. package/dist/delegatedHome.d.ts +156 -0
  20. package/dist/delegatedHome.d.ts.map +1 -0
  21. package/dist/delegatedHome.js +179 -0
  22. package/dist/delegatedHome.js.map +1 -0
  23. package/dist/index.d.ts +1 -1
  24. package/dist/index.d.ts.map +1 -1
  25. package/dist/index.js +1 -1
  26. package/dist/index.js.map +1 -1
  27. package/dist/orchestrator.d.ts +27 -2
  28. package/dist/orchestrator.d.ts.map +1 -1
  29. package/dist/orchestrator.js +102 -19
  30. package/dist/orchestrator.js.map +1 -1
  31. package/dist/planQuestions.js +4 -1
  32. package/dist/planQuestions.js.map +1 -1
  33. package/dist/requestRequirements.d.ts +15 -2
  34. package/dist/requestRequirements.d.ts.map +1 -1
  35. package/dist/requestRequirements.js +17 -3
  36. package/dist/requestRequirements.js.map +1 -1
  37. package/dist/runTerminalResults.d.ts +26 -1
  38. package/dist/runTerminalResults.d.ts.map +1 -1
  39. package/dist/runTerminalResults.js +34 -4
  40. package/dist/runTerminalResults.js.map +1 -1
  41. package/dist/runTerminals.d.ts +2 -2
  42. package/dist/runTerminals.d.ts.map +1 -1
  43. package/dist/runTerminals.js +2 -2
  44. package/dist/runTerminals.js.map +1 -1
  45. package/package.json +17 -17
@@ -0,0 +1,156 @@
1
+ import type { ConfinementHost } from "@claudexor/core";
2
+ import type { AccessProfile, HarnessConfinement, WorkspaceEnvelope } from "@claudexor/schema";
3
+ import type { WorkspaceManager } from "@claudexor/workspace";
4
+ /** What one attempt's harness HOME actually resolved to, and whether it is scoped. */
5
+ export interface ScopedHarnessHome {
6
+ /** Env patch to spread onto the harness spec; absent when the attempt inherits the operator's env. */
7
+ env?: Record<string, string>;
8
+ /** Applied fact, recorded on the attempt so the caller can verify rather than trust. */
9
+ isolated: boolean;
10
+ /** The scoped home directory, or null when the attempt inherits the operator's. */
11
+ homeDir: string | null;
12
+ /** The APPLIED OS boundary, or null when this attempt runs without one. */
13
+ confinement: HarnessConfinement | null;
14
+ /**
15
+ * Why this attempt got NO boundary, when it asked for one and the host had
16
+ * none. Null both when a boundary WAS applied and when none was ever asked
17
+ * for — an ordinary run is not "unconfined", it is out of scope, and the
18
+ * terminal gate below depends on being able to tell those apart.
19
+ */
20
+ confinementUnavailableReason: string | null;
21
+ }
22
+ /** Access profiles under which the harness can modify the filesystem. */
23
+ export declare function isMutatingAccess(access: AccessProfile): boolean;
24
+ /**
25
+ * Whether this run's lanes should be told to stand their own sandbox down.
26
+ *
27
+ * Only a delegated run asks for an engine-provided boundary, and only a host
28
+ * that can actually provide one earns the trade. Telling a harness to drop its
29
+ * native sandbox where Claudexor will NOT replace it is a pure loss — strictly
30
+ * worse than never having asked — so the two conditions are one expression
31
+ * rather than a flag the caller passes and a check nobody makes.
32
+ */
33
+ export declare function externallyConfinedLane(delegated: boolean, host?: ConfinementHost): boolean;
34
+ /** Roots the confinement is drawn against; overridable so tests never touch the real home. */
35
+ export interface ConfinementRoots {
36
+ operatorHome: string;
37
+ runtimeRoot: string;
38
+ nativeStateRoot: string;
39
+ }
40
+ export declare function defaultConfinementRoots(): ConfinementRoots;
41
+ /**
42
+ * Decide the harness HOME and the OS boundary one attempt runs under.
43
+ *
44
+ * Unchanged for ordinary runs: an ISOLATED envelope gets the envelope's scoped
45
+ * home, while an IN-PLACE attempt deliberately inherits the operator's native
46
+ * environment so a harness whose native session store hangs off `$HOME` can
47
+ * resume its vendor conversation.
48
+ *
49
+ * A DELEGATED run (`execution.delegated`) is scoped either way, and that is a
50
+ * BEHAVIORAL CHANGE against that deliberate design — live + agent is exactly
51
+ * the configuration a delegated mutating subagent uses. It is taken knowingly:
52
+ * the caller is a machine orchestrator that owns the workspace, and the
53
+ * operator's real `$HOME` holds material no delegated harness may read, above
54
+ * all `~/.claudexor/v3/daemon/token`, which grants the entire control API.
55
+ *
56
+ * THE SCOPED HOME IS NOT THE BOUNDARY. It redirects `~`-relative lookups and
57
+ * nothing more; the token above is one absolute path away, and a live probe
58
+ * read it out of an ordinary `workspace_write` agent run. So a delegated
59
+ * MUTATING attempt additionally gets an OS-ENFORCED boundary
60
+ * (`applyConfinement`), verified against a path it denies before the harness is
61
+ * spawned. A delegated READ-ONLY attempt keeps the harness's own read-only
62
+ * enforcement instead: confinement stands that enforcement down (macOS refuses
63
+ * nested sandboxes), which would be a net loss where there is no shell to
64
+ * confine.
65
+ *
66
+ * WHERE THE HOST HAS NO BOUNDARY the attempt still runs, and says so: the
67
+ * reason travels onto the attempt record, into the child's prompt and into the
68
+ * caller's result. A delegated run that refused on every platform Claudexor has
69
+ * not implemented a mechanism for would be a macOS-only feature wearing a
70
+ * general name.
71
+ *
72
+ * THE COST of the scoped home, stated plainly: an in-place delegated attempt
73
+ * CANNOT resume a native vendor session whose store lives under the real `$HOME`
74
+ * — cursor (`~/.cursor`) and opencode (XDG data under `$HOME`) lose resume.
75
+ * codex and claude keep it: their native session stores are Claudexor-owned
76
+ * directories that the adapter re-points on top of this env and that the
77
+ * confinement carves back out, and the macOS login Keychain is reached through
78
+ * the declared scoped-home bridge (INV-067), so subscription auth is unaffected.
79
+ *
80
+ * Never degrades silently: a delegated attempt whose scoped home is not on disk,
81
+ * or whose boundary cannot be applied and proven, refuses.
82
+ */
83
+ export declare function scopedHarnessHome(wsm: WorkspaceManager, envelope: WorkspaceEnvelope, inPlaceEnvelope: boolean, delegated: boolean, access?: AccessProfile, roots?: ConfinementRoots, host?: ConfinementHost): ScopedHarnessHome;
84
+ /**
85
+ * What the CHILD is told, when it is running without an OS boundary.
86
+ *
87
+ * Second of the three places the absence is disclosed (the attempt record and
88
+ * the caller's result are the other two). A model that believes it is sandboxed
89
+ * when it is not is the one reader whose behaviour actually changes on this
90
+ * fact, so it is stated to the model in plain words rather than left in an
91
+ * artifact it never reads.
92
+ */
93
+ export declare function confinementNotice(home: ScopedHarnessHome | null | undefined): string | null;
94
+ /**
95
+ * What an attempt's harness process ACTUALLY ran under.
96
+ *
97
+ * One shape, written by the success path and the failure path alike. An attempt
98
+ * that spawned a harness and then died still ran a process, and the caller of a
99
+ * delegated run still needs to know what that process could reach — "it failed"
100
+ * is not an answer to "was it confined".
101
+ */
102
+ export interface AppliedAttemptFacts {
103
+ harness_home_isolated: boolean;
104
+ harness_home_dir: string | null;
105
+ access_applied: AccessProfile;
106
+ credential_profile_applied: string | null;
107
+ /**
108
+ * OPAQUE mechanism label, never a platform and never a promise: it is written
109
+ * only together with the path below, which is the proof it was enforced.
110
+ */
111
+ confinement_mechanism: string | null;
112
+ confinement_profile_digest: string | null;
113
+ confinement_verified_denied_path: string | null;
114
+ /**
115
+ * Why this attempt ran with NO boundary. This is the field that makes an
116
+ * honestly unconfined attempt DIFFERENT from an attempt whose evidence is
117
+ * simply missing — the first is auditable, the second is not.
118
+ */
119
+ confinement_unavailable_reason: string | null;
120
+ }
121
+ /**
122
+ * `home` is nullable on purpose: an attempt that died BEFORE its home was
123
+ * decided still writes the block, with every field null. A record that omits
124
+ * the fields entirely is indistinguishable from one written by an engine that
125
+ * never had them, which is the ambiguity the terminal check exists to close.
126
+ */
127
+ export declare function appliedAttemptFacts(home: ScopedHarnessHome | null | undefined, access: AccessProfile, credentialProfileId: string | null): AppliedAttemptFacts;
128
+ /**
129
+ * Whether an attempt's record is auditable for a delegated MUTATING run.
130
+ *
131
+ * The distinction this predicate exists to draw: evidence that is MISSING is
132
+ * still a reason to refuse — an attempt that cannot say what it ran under is
133
+ * indistinguishable from one that ran unconfined behind a green terminal.
134
+ * Evidence that honestly says "no boundary here, and here is why" is COMPLETE;
135
+ * the absence of a boundary is a fact about the host, not a gap in the record,
136
+ * and refusing on it would make a delegated mutating run impossible wherever
137
+ * Claudexor has not implemented a mechanism.
138
+ *
139
+ * A named mechanism is a claim, and only `verified_denied_path` discharges it —
140
+ * so a record carrying the name without the proof is NOT complete, and neither
141
+ * is one that claims a boundary and a reason for its absence at the same time.
142
+ */
143
+ export declare function appliedEvidenceComplete(facts: AppliedAttemptFacts | null | undefined): boolean;
144
+ /**
145
+ * The terminal gate, shared by every lane that assembles attempts.
146
+ *
147
+ * A delegated MUTATING run may only reach a terminal when EVERY attempt it ran
148
+ * can state what it ran under. One lane checking and its twin not is how a
149
+ * mutating child ends up unconfined behind a green run, so the rule lives here
150
+ * and both callers spend it.
151
+ */
152
+ export declare function assertDelegatedEvidence(delegated: boolean, access: AccessProfile, attempts: readonly {
153
+ attemptId: string;
154
+ applied?: AppliedAttemptFacts;
155
+ }[]): void;
156
+ //# sourceMappingURL=delegatedHome.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delegatedHome.d.ts","sourceRoot":"","sources":["../src/delegatedHome.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAOvD,OAAO,KAAK,EAAE,aAAa,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAG9F,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAE7D,sFAAsF;AACtF,MAAM,WAAW,iBAAiB;IAChC,sGAAsG;IACtG,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,wFAAwF;IACxF,QAAQ,EAAE,OAAO,CAAC;IAClB,mFAAmF;IACnF,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,2EAA2E;IAC3E,WAAW,EAAE,kBAAkB,GAAG,IAAI,CAAC;IACvC;;;;;OAKG;IACH,4BAA4B,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7C;AAED,yEAAyE;AACzE,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,aAAa,GAAG,OAAO,CAE/D;AAED;;;;;;;;GAQG;AACH,wBAAgB,sBAAsB,CAAC,SAAS,EAAE,OAAO,EAAE,IAAI,CAAC,EAAE,eAAe,GAAG,OAAO,CAE1F;AAED,8FAA8F;AAC9F,MAAM,WAAW,gBAAgB;IAC/B,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,wBAAgB,uBAAuB,IAAI,gBAAgB,CAM1D;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,wBAAgB,iBAAiB,CAC/B,GAAG,EAAE,gBAAgB,EACrB,QAAQ,EAAE,iBAAiB,EAC3B,eAAe,EAAE,OAAO,EACxB,SAAS,EAAE,OAAO,EAClB,MAAM,GAAE,aAAiC,EACzC,KAAK,GAAE,gBAA4C,EACnD,IAAI,CAAC,EAAE,eAAe,GACrB,iBAAiB,CAoCnB;AAED;;;;;;;;GAQG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,iBAAiB,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,GAAG,IAAI,CAU3F;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,mBAAmB;IAClC,qBAAqB,EAAE,OAAO,CAAC;IAC/B,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,cAAc,EAAE,aAAa,CAAC;IAC9B,0BAA0B,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1C;;;OAGG;IACH,qBAAqB,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC,0BAA0B,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1C,gCAAgC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChD;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,GAAG,IAAI,CAAC;CAC/C;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CACjC,IAAI,EAAE,iBAAiB,GAAG,IAAI,GAAG,SAAS,EAC1C,MAAM,EAAE,aAAa,EACrB,mBAAmB,EAAE,MAAM,GAAG,IAAI,GACjC,mBAAmB,CAWrB;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,mBAAmB,GAAG,IAAI,GAAG,SAAS,GAAG,OAAO,CAM9F;AAED;;;;;;;GAOG;AACH,wBAAgB,uBAAuB,CACrC,SAAS,EAAE,OAAO,EAClB,MAAM,EAAE,aAAa,EACrB,QAAQ,EAAE,SAAS;IAAE,SAAS,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,mBAAmB,CAAA;CAAE,EAAE,GACxE,IAAI,CAON"}
@@ -0,0 +1,179 @@
1
+ import { existsSync } from "node:fs";
2
+ import { applyConfinement, confinementBoundaryAvailable, DelegatedEvidenceIncompleteError, DelegatedHomeUnavailableError, } from "@claudexor/core";
3
+ import { confinementBoundaryProven } from "@claudexor/schema";
4
+ import { claudexorOwnedRoot, nativeHarnessStateRoot, userHomeDir } from "@claudexor/util";
5
+ /** Access profiles under which the harness can modify the filesystem. */
6
+ export function isMutatingAccess(access) {
7
+ return access !== "readonly";
8
+ }
9
+ /**
10
+ * Whether this run's lanes should be told to stand their own sandbox down.
11
+ *
12
+ * Only a delegated run asks for an engine-provided boundary, and only a host
13
+ * that can actually provide one earns the trade. Telling a harness to drop its
14
+ * native sandbox where Claudexor will NOT replace it is a pure loss — strictly
15
+ * worse than never having asked — so the two conditions are one expression
16
+ * rather than a flag the caller passes and a check nobody makes.
17
+ */
18
+ export function externallyConfinedLane(delegated, host) {
19
+ return delegated && confinementBoundaryAvailable(host).available;
20
+ }
21
+ export function defaultConfinementRoots() {
22
+ return {
23
+ operatorHome: userHomeDir(),
24
+ runtimeRoot: claudexorOwnedRoot(),
25
+ nativeStateRoot: nativeHarnessStateRoot(),
26
+ };
27
+ }
28
+ /**
29
+ * Decide the harness HOME and the OS boundary one attempt runs under.
30
+ *
31
+ * Unchanged for ordinary runs: an ISOLATED envelope gets the envelope's scoped
32
+ * home, while an IN-PLACE attempt deliberately inherits the operator's native
33
+ * environment so a harness whose native session store hangs off `$HOME` can
34
+ * resume its vendor conversation.
35
+ *
36
+ * A DELEGATED run (`execution.delegated`) is scoped either way, and that is a
37
+ * BEHAVIORAL CHANGE against that deliberate design — live + agent is exactly
38
+ * the configuration a delegated mutating subagent uses. It is taken knowingly:
39
+ * the caller is a machine orchestrator that owns the workspace, and the
40
+ * operator's real `$HOME` holds material no delegated harness may read, above
41
+ * all `~/.claudexor/v3/daemon/token`, which grants the entire control API.
42
+ *
43
+ * THE SCOPED HOME IS NOT THE BOUNDARY. It redirects `~`-relative lookups and
44
+ * nothing more; the token above is one absolute path away, and a live probe
45
+ * read it out of an ordinary `workspace_write` agent run. So a delegated
46
+ * MUTATING attempt additionally gets an OS-ENFORCED boundary
47
+ * (`applyConfinement`), verified against a path it denies before the harness is
48
+ * spawned. A delegated READ-ONLY attempt keeps the harness's own read-only
49
+ * enforcement instead: confinement stands that enforcement down (macOS refuses
50
+ * nested sandboxes), which would be a net loss where there is no shell to
51
+ * confine.
52
+ *
53
+ * WHERE THE HOST HAS NO BOUNDARY the attempt still runs, and says so: the
54
+ * reason travels onto the attempt record, into the child's prompt and into the
55
+ * caller's result. A delegated run that refused on every platform Claudexor has
56
+ * not implemented a mechanism for would be a macOS-only feature wearing a
57
+ * general name.
58
+ *
59
+ * THE COST of the scoped home, stated plainly: an in-place delegated attempt
60
+ * CANNOT resume a native vendor session whose store lives under the real `$HOME`
61
+ * — cursor (`~/.cursor`) and opencode (XDG data under `$HOME`) lose resume.
62
+ * codex and claude keep it: their native session stores are Claudexor-owned
63
+ * directories that the adapter re-points on top of this env and that the
64
+ * confinement carves back out, and the macOS login Keychain is reached through
65
+ * the declared scoped-home bridge (INV-067), so subscription auth is unaffected.
66
+ *
67
+ * Never degrades silently: a delegated attempt whose scoped home is not on disk,
68
+ * or whose boundary cannot be applied and proven, refuses.
69
+ */
70
+ export function scopedHarnessHome(wsm, envelope, inPlaceEnvelope, delegated, access = "workspace_write", roots = defaultConfinementRoots(), host) {
71
+ if (inPlaceEnvelope && !delegated) {
72
+ return {
73
+ isolated: false,
74
+ homeDir: null,
75
+ confinement: null,
76
+ confinementUnavailableReason: null,
77
+ };
78
+ }
79
+ const env = wsm.envFor(envelope);
80
+ const homeDir = env["HOME"];
81
+ if (delegated && (!homeDir || !existsSync(homeDir))) {
82
+ throw new DelegatedHomeUnavailableError(`delegated run cannot be confined: the scoped harness home for attempt ${envelope.attempt_id} is missing (${homeDir || "unset"})`);
83
+ }
84
+ const outcome = delegated && isMutatingAccess(access)
85
+ ? applyConfinement({
86
+ operatorHome: roots.operatorHome,
87
+ runtimeRoot: roots.runtimeRoot,
88
+ nativeStateRoot: roots.nativeStateRoot,
89
+ scopedHome: homeDir,
90
+ worktree: envelope.worktree_path,
91
+ }, host)
92
+ : { confinement: null, unavailableReason: null };
93
+ return {
94
+ env,
95
+ isolated: true,
96
+ homeDir: homeDir ?? null,
97
+ confinement: outcome.confinement,
98
+ confinementUnavailableReason: outcome.unavailableReason,
99
+ };
100
+ }
101
+ /**
102
+ * What the CHILD is told, when it is running without an OS boundary.
103
+ *
104
+ * Second of the three places the absence is disclosed (the attempt record and
105
+ * the caller's result are the other two). A model that believes it is sandboxed
106
+ * when it is not is the one reader whose behaviour actually changes on this
107
+ * fact, so it is stated to the model in plain words rather than left in an
108
+ * artifact it never reads.
109
+ */
110
+ export function confinementNotice(home) {
111
+ const reason = home?.confinementUnavailableReason;
112
+ if (!reason)
113
+ return null;
114
+ return [
115
+ "Engine disclosure — NO OS-ENFORCED BOUNDARY: this delegated run was asked to put your",
116
+ `process inside a kernel-enforced filesystem boundary and could not: ${reason}.`,
117
+ "Nothing outside this notice stops you from reading or writing any path this user account",
118
+ "can reach. Confine yourself to the worktree you were given and the HOME you were given,",
119
+ "and do not read the operator's credential stores or Claudexor's own runtime directory.",
120
+ ].join("\n");
121
+ }
122
+ /**
123
+ * `home` is nullable on purpose: an attempt that died BEFORE its home was
124
+ * decided still writes the block, with every field null. A record that omits
125
+ * the fields entirely is indistinguishable from one written by an engine that
126
+ * never had them, which is the ambiguity the terminal check exists to close.
127
+ */
128
+ export function appliedAttemptFacts(home, access, credentialProfileId) {
129
+ return {
130
+ harness_home_isolated: home?.isolated ?? false,
131
+ harness_home_dir: home?.homeDir ?? null,
132
+ access_applied: access,
133
+ credential_profile_applied: credentialProfileId,
134
+ confinement_mechanism: home?.confinement?.mechanism ?? null,
135
+ confinement_profile_digest: home?.confinement?.profile_digest ?? null,
136
+ confinement_verified_denied_path: home?.confinement?.verified_denied_path ?? null,
137
+ confinement_unavailable_reason: home?.confinementUnavailableReason ?? null,
138
+ };
139
+ }
140
+ /**
141
+ * Whether an attempt's record is auditable for a delegated MUTATING run.
142
+ *
143
+ * The distinction this predicate exists to draw: evidence that is MISSING is
144
+ * still a reason to refuse — an attempt that cannot say what it ran under is
145
+ * indistinguishable from one that ran unconfined behind a green terminal.
146
+ * Evidence that honestly says "no boundary here, and here is why" is COMPLETE;
147
+ * the absence of a boundary is a fact about the host, not a gap in the record,
148
+ * and refusing on it would make a delegated mutating run impossible wherever
149
+ * Claudexor has not implemented a mechanism.
150
+ *
151
+ * A named mechanism is a claim, and only `verified_denied_path` discharges it —
152
+ * so a record carrying the name without the proof is NOT complete, and neither
153
+ * is one that claims a boundary and a reason for its absence at the same time.
154
+ */
155
+ export function appliedEvidenceComplete(facts) {
156
+ if (!facts || !facts.harness_home_isolated || !facts.harness_home_dir)
157
+ return false;
158
+ if (facts.confinement_mechanism) {
159
+ return confinementBoundaryProven(facts) && !facts.confinement_unavailable_reason;
160
+ }
161
+ return Boolean(facts.confinement_unavailable_reason);
162
+ }
163
+ /**
164
+ * The terminal gate, shared by every lane that assembles attempts.
165
+ *
166
+ * A delegated MUTATING run may only reach a terminal when EVERY attempt it ran
167
+ * can state what it ran under. One lane checking and its twin not is how a
168
+ * mutating child ends up unconfined behind a green run, so the rule lives here
169
+ * and both callers spend it.
170
+ */
171
+ export function assertDelegatedEvidence(delegated, access, attempts) {
172
+ if (!delegated || !isMutatingAccess(access))
173
+ return;
174
+ const unauditable = attempts.filter((attempt) => !appliedEvidenceComplete(attempt.applied));
175
+ if (unauditable.length === 0)
176
+ return;
177
+ throw new DelegatedEvidenceIncompleteError(`delegated mutating run cannot terminalize: ${unauditable.length} attempt(s) state neither a proven confinement nor a reason there was none (${unauditable.map((attempt) => attempt.attemptId).join(", ")})`);
178
+ }
179
+ //# sourceMappingURL=delegatedHome.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delegatedHome.js","sourceRoot":"","sources":["../src/delegatedHome.ts"],"names":[],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -2,5 +2,5 @@ export * from "./orchestrator.js";
2
2
  export * from "./requestRequirements.js";
3
3
  export * from "./delegationBudgetAuthority.js";
4
4
  export * from "./routing-failure.js";
5
- export { defaultCredentialRoute, effectiveAuthPreference, nextUpIdentity, probeCredentialProfileStatus, profileStatusAdmits, } from "./credential-profiles.js";
5
+ export { defaultCredentialRoute, effectiveAuthPreference, nextUpIdentity, probeCredentialProfileStatus, profileStatusAdmits, vendorVerifiedProfileStatus, } from "./credential-profiles.js";
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sBAAsB,CAAC;AACrC,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,cAAc,EACd,4BAA4B,EAC5B,mBAAmB,GACpB,MAAM,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sBAAsB,CAAC;AACrC,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,cAAc,EACd,4BAA4B,EAC5B,mBAAmB,EACnB,2BAA2B,GAC5B,MAAM,0BAA0B,CAAC"}
package/dist/index.js CHANGED
@@ -2,5 +2,5 @@ export * from "./orchestrator.js";
2
2
  export * from "./requestRequirements.js";
3
3
  export * from "./delegationBudgetAuthority.js";
4
4
  export * from "./routing-failure.js";
5
- export { defaultCredentialRoute, effectiveAuthPreference, nextUpIdentity, probeCredentialProfileStatus, profileStatusAdmits, } from "./credential-profiles.js";
5
+ export { defaultCredentialRoute, effectiveAuthPreference, nextUpIdentity, probeCredentialProfileStatus, profileStatusAdmits, vendorVerifiedProfileStatus, } from "./credential-profiles.js";
6
6
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sBAAsB,CAAC;AACrC,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,cAAc,EACd,4BAA4B,EAC5B,mBAAmB,GACpB,MAAM,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sBAAsB,CAAC;AACrC,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,cAAc,EACd,4BAA4B,EAC5B,mBAAmB,EACnB,2BAA2B,GAC5B,MAAM,0BAA0B,CAAC"}
@@ -1,4 +1,4 @@
1
- import type { AccessProfile, Attachment, ControlReviewerPanelEntry, EffortHint, HarnessCapabilities, KnownModelEntry, ExternalContextPolicy, HarnessEvent, InteractionHandlerResult, InteractionRequest, ModeKind, PaidBudget, QuotaSnapshot, RoutingGoal, ProtectedPathApproval, RequestRequirementResolution, RunEvent, RunLifecycle, RunOutcomeFacts, TestCommandInvocation, ProviderFamily, ImplementationTransport, WebPolicySupport } from "@claudexor/schema";
1
+ import type { AccessProfile, Attachment, ControlReviewerPanelEntry, EffortHint, HarnessCapabilities, KnownModelEntry, ExternalContextPolicy, HarnessEvent, InteractionHandlerResult, InteractionRequest, ModeKind, PaidBudget, QuotaAbsence, QuotaSnapshot, RoutingGoal, ProtectedPathApproval, RequestRequirementResolution, RunEvent, RunLifecycle, RunOutcomeFacts, TestCommandInvocation, ProviderFamily, ImplementationTransport, WebPolicySupport } from "@claudexor/schema";
2
2
  import { type PlannerAttemptArgs, type PlannerAttemptOutcome } from "./plannerAttempt.js";
3
3
  export type { PlannerAttemptArgs, PlannerAttemptOutcome } from "./plannerAttempt.js";
4
4
  import { type ExtraMcpServer } from "@claudexor/schema";
@@ -19,6 +19,10 @@ export interface OrchestratorDeps {
19
19
  routingGoal?: RoutingGoal;
20
20
  /** Durable global quota projection, injected by the daemon boundary. */
21
21
  quotaSnapshots?: () => readonly QuotaSnapshot[];
22
+ /** The same projection's typed ABSENCES — the half that carries
23
+ * `auth_revoked`, i.e. the vendor's own rejection of a profile's credential.
24
+ * Without it, admission can only read the local login store. */
25
+ quotaAbsences?: () => readonly QuotaAbsence[];
22
26
  /** Persist typed live quota/cooldown events into that same projection. */
23
27
  quotaEventSink?: (harnessId: string, event: HarnessEvent) => void;
24
28
  /** Ordered explicit reviewer panel. Unlike legacy per-family overrides this
@@ -223,6 +227,13 @@ export interface RunInput {
223
227
  * is the deliverable. Only honored by convergence modes.
224
228
  */
225
229
  inPlace?: boolean;
230
+ /**
231
+ * `execution.delegated`: this run is driven by an EXTERNAL orchestrator that
232
+ * owns the workspace. Every attempt is then confined to a scoped harness HOME
233
+ * even in-place, trading native-session resume for confinement (see
234
+ * `scopedHarnessHome`), and refusing rather than degrading when it cannot be.
235
+ */
236
+ delegated?: boolean;
226
237
  /**
227
238
  * Per-run globs no candidate may touch (create/modify/delete/rename). Unlike
228
239
  * project protected paths, these produce a deny-path violation; both require
@@ -421,8 +432,14 @@ export declare class Orchestrator {
421
432
  * metric. null = no profile selected or it does not resolve here. */
422
433
  private profileAuthRoute;
423
434
  private profilePolicy;
435
+ /** The quota poller's authenticated vendor evidence for THIS decision epoch,
436
+ * read once so every profile in the epoch is judged against one observation
437
+ * set. This is what makes profile readiness at admission mean the same thing
438
+ * it means on the Accounts card (INV-135 honesty). */
439
+ private vendorQuotaObservations;
424
440
  /** Fresh profile readiness for one rotation decision epoch. Accounts uses
425
- * the same probe wrapper + admission predicate when projecting next_up. */
441
+ * the same probe wrapper + vendor overlay + admission predicate when
442
+ * projecting next_up. */
426
443
  private readyProfileIdsForRotation;
427
444
  private preflightProfile;
428
445
  /**
@@ -518,6 +535,14 @@ export declare class Orchestrator {
518
535
  * a non-thread run. Never throws: continuity failure degrades to no packet.
519
536
  */
520
537
  private resolveContinuity;
538
+ /**
539
+ * The ONE place an attempt's HOME and OS boundary are decided.
540
+ *
541
+ * Called by every caller of `runCandidateInEnvelope` INSIDE that caller's
542
+ * try, so a delegated refusal is caught by the same catch that writes the
543
+ * attempt record, and so the decided home is in scope there.
544
+ */
545
+ private harnessHomeFor;
521
546
  private runCandidateInEnvelope;
522
547
  private interactionChannelFor;
523
548
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../src/orchestrator.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../src/orchestrator.ts"],"names":[],"mappings":"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"}