@quantiya/codevibe-claude-plugin 2.0.21 → 2.0.23
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/diagnostics/shape-only.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/index.js +321 -282
- 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/cli.js +517 -115
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +8 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/reducer.d.ts +4 -5
- 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/node_modules/fs-ext/build/Makefile +1 -1
- package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
- package/node_modules/fs-ext/build/config.gypi +0 -2
- package/package.json +2 -2
|
@@ -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 {};
|