@quantiya/codevibe-claude-plugin 2.0.22 → 2.0.24
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/.claude-plugin/plugin.json +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/appsync/appsync-client.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/config/config.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/diagnostics/shape-only.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/index.js +329 -290
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-tree.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/o5-diagnostics.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/quorum-loop-outcome-recency.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +888 -225
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +12 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/dist/ordinal-presentation.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/dist/ordinal-presentation.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/provider.d.ts +7 -7
- package/node_modules/@quantiya/codevibe-core/dist/substrate/command-runner.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate/sandbox-exec.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/substrate/types.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/apikey-bootstrap.d.ts +32 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/engage-substrate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/sanitized-env.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/package.json +1 -1
- package/package.json +2 -2
- package/node_modules/fs-ext/build/Makefile +0 -347
- package/node_modules/fs-ext/build/Release/.deps/Release/fs_ext.node.d +0 -1
- package/node_modules/fs-ext/build/Release/.deps/Release/obj.target/fs_ext/fs-ext.o.d +0 -165
- package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
- package/node_modules/fs-ext/build/Release/obj.target/fs_ext/fs-ext.o +0 -0
- package/node_modules/fs-ext/build/binding.Makefile +0 -6
- package/node_modules/fs-ext/build/config.gypi +0 -503
- package/node_modules/fs-ext/build/fs_ext.target.mk +0 -183
- package/node_modules/fs-ext/build/gyp-mac-tool +0 -768
- package/node_modules/keytar/build/Release/keytar.node +0 -0
|
@@ -13,6 +13,8 @@ export declare function spawnPosixOwnedProcess(command: string, args: readonly s
|
|
|
13
13
|
persistOwner?: (owner: ProcessCleanupOwner) => Promise<void>;
|
|
14
14
|
/** Exact task/verification cwd incarnation held through target launch. */
|
|
15
15
|
workingDirAuthority?: WorkspaceRootAuthority;
|
|
16
|
+
/** Additional exact directories authenticated at final target spawn. */
|
|
17
|
+
launchPathAuthorities?: readonly WorkspaceRootAuthority[];
|
|
16
18
|
/** @internal deterministic directory-durability failure seam. */
|
|
17
19
|
syncOwnerDirectory?: (dir: string, file: string) => Promise<void>;
|
|
18
20
|
}): ChildProcess;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -121,6 +121,13 @@ export declare function runWithAdmittedSessionOwnership<T>(args: {
|
|
|
121
121
|
session: Session;
|
|
122
122
|
launch: (acceptOwnership: () => void) => Promise<T>;
|
|
123
123
|
}): Promise<T>;
|
|
124
|
+
export declare const ORCHESTRATION_ORPHAN_SWEEP_STALE_THRESHOLD_MS: number;
|
|
125
|
+
/**
|
|
126
|
+
* Sweeps dead CODEVIBE orchestration sessions from prior crashed processes,
|
|
127
|
+
* aborted test runs, or ungraceful terminal closures. Non-blocking best-effort
|
|
128
|
+
* operation; mirrors companion-plugin startup sweeps.
|
|
129
|
+
*/
|
|
130
|
+
export declare function triggerStartupOrphanSweep(appsyncClient: AppSyncClient, currentSessionId: string, staleThresholdMs?: number): Promise<number>;
|
|
124
131
|
/**
|
|
125
132
|
* CP-8 Slice C (#570) — parse a top-level `audit show <task-id> [--json]
|
|
126
133
|
* [--session <id>]` subcommand from the raw argv. Returns null when the argv is
|