@quantiya/codevibe-codex-plugin 2.0.48 → 2.0.50
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/node_modules/@quantiya/codevibe-core/dist/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/index.js +476 -470
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/shadow-recovery.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +680 -278
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/doctor-cli.d.ts +44 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/route-browse.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/task-progress-relay.d.ts +34 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/task-progress.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/package.json +2 -2
- package/package.json +3 -3
|
@@ -250,6 +250,21 @@ interface RegisteredShadowRoot extends AnchoredFsIdentity {
|
|
|
250
250
|
canonicalPath?: string;
|
|
251
251
|
birthtimeNs?: string;
|
|
252
252
|
}
|
|
253
|
+
/**
|
|
254
|
+
* FU-1 — a registered physical-copy root whose pathname is gone and whose bytes could NOT be proven reclaimed.
|
|
255
|
+
*
|
|
256
|
+
* Carries the two paths the user needs to act, because the generic surfacing cannot: the implementor-round
|
|
257
|
+
* classifier returns a closed label and never the raw message, and the durable log projection strips message,
|
|
258
|
+
* name, code and path. Both are deliberate wire-safety controls (#SR-2), so the recovery instructions travel as
|
|
259
|
+
* STRUCTURED FIELDS on the error rather than as text the classifier would have to parse or leak. Rendering these
|
|
260
|
+
* two paths in full — desktop, hosted events and durable diagnostics — is FU1-D2, an owner decision made with the
|
|
261
|
+
* trade-off stated: they are CodeVibe-registered root paths, never raw error text and never user content.
|
|
262
|
+
*/
|
|
263
|
+
export declare class StaleShadowRootError extends Error {
|
|
264
|
+
readonly stalePath: string;
|
|
265
|
+
readonly registryPath: string;
|
|
266
|
+
constructor(stalePath: string, registryPath: string);
|
|
267
|
+
}
|
|
253
268
|
/**
|
|
254
269
|
* Durable quota-scope registry. Every process sharing `stateRoot` registers its
|
|
255
270
|
* physical shadow root before copying, so the aggregate scan cannot be split by
|