@quantiya/codevibe-claude-plugin 2.0.43 → 2.0.44

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 (21) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/node_modules/@quantiya/codevibe-core/dist/index.js +500 -498
  3. package/node_modules/@quantiya/codevibe-core/dist/local-executor/agentic-resolver-flag.d.ts +4 -7
  4. package/node_modules/@quantiya/codevibe-core/dist/local-executor/index.d.ts +1 -1
  5. package/node_modules/@quantiya/codevibe-core/dist/local-executor/merge-train.d.ts +1 -1
  6. package/node_modules/@quantiya/codevibe-core/dist/local-executor/reviewer-rationale-flag.d.ts +3 -8
  7. package/node_modules/@quantiya/codevibe-core/dist/local-executor/team-execution-flag.d.ts +0 -6
  8. package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +5 -3
  9. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +41855 -41025
  10. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/ImplementorSetupWizard.d.ts +10 -0
  11. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/implementor-preference.d.ts +24 -0
  12. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +20 -0
  13. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/non-tty-fallback.d.ts +2 -3
  14. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +25 -33
  15. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/slash-routes/implementors.d.ts +17 -0
  16. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/team-decompose.d.ts +9 -8
  17. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +48 -0
  18. package/node_modules/@quantiya/codevibe-core/dist/planner/types.d.ts +2 -2
  19. package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +12 -12
  20. package/node_modules/@quantiya/codevibe-core/package.json +1 -1
  21. package/package.json +2 -2
@@ -1,9 +1,6 @@
1
- /** The env var that disables the agentic class-2 resolver (opt-OUT). */
2
- export declare const AGENTIC_RESOLVER_ENV_VAR = "CODEVIBE_AGENTIC_RESOLVER";
3
1
  /**
4
- * Is the agentic class-2 resolver enabled? DEFAULT-ON. The canonical falsy
5
- * tokens (`0`/`false`/`off`/`no`, case-insensitive) disable it; anything else
6
- * including unset is ON. `env` is injected for deterministic tests;
7
- * production passes `process.env`.
2
+ * Is the agentic class-2 resolver enabled? Unconditionally true.
3
+ * Graduated to native default capability. When substrate is missing,
4
+ * the caller already fails closed to the human gate.
8
5
  */
9
- export declare function isAgenticResolverEnabled(env?: NodeJS.ProcessEnv): boolean;
6
+ export declare function isAgenticResolverEnabled(_env?: NodeJS.ProcessEnv): boolean;
@@ -22,7 +22,7 @@ export { revertGroup } from './revert-runner';
22
22
  export type { RevertResult } from './revert-runner';
23
23
  export { reconcileRevertManifestsThenGc } from './revert-reconcile';
24
24
  export type { EngineGroupState, ReconcileDeps, ReconcileResult, ReconcileCommitClient, } from './revert-reconcile';
25
- export { DEFAULT_TEAM_EXECUTION, TEAM_EXECUTION_ENV_VAR, isTeamExecution, resolveTeamExecution, isWorktreeMergeEnabled, } from './team-execution-flag';
25
+ export { DEFAULT_TEAM_EXECUTION, isTeamExecution, resolveTeamExecution, isWorktreeMergeEnabled, } from './team-execution-flag';
26
26
  export type { TeamExecution } from './team-execution-flag';
27
27
  export { PromoteWalStore, PROMOTE_WAL_VERSION, computePromoteKey, } from './promote-wal-store';
28
28
  export type { PromoteMode, PromoteWalRecord, PromoteStartedInput, } from './promote-wal-store';
@@ -405,7 +405,7 @@ export interface Tier1GateConfig {
405
405
  * `finally` regardless of outcome.
406
406
  *
407
407
  * Resolved-decision note: `runVerificationGates` (verification-runner.ts) requires the
408
- * live Class-A AppSync emitter pipeline — coupling this STANDALONE flag-gated W2 module
408
+ * live Class-A AppSync emitter pipeline — coupling this STANDALONE W2 module
409
409
  * to that infra would be wrong. The per-gate WRAPPERS (`runBuildGate`/`runTestsGate`/
410
410
  * `runTypecheckGate`) are the worktree-confined primitive that yields PASS/FAIL from
411
411
  * exit codes WITHOUT the emit infra — the minimal-correct Tier-1 substrate. The live
@@ -1,10 +1,5 @@
1
- /** The env var that enables reviewer-visible implementor rationale (opt-IN). */
2
- export declare const REVIEWER_RATIONALE_ENV_VAR = "CODEVIBE_REVIEWER_RATIONALE";
3
1
  /**
4
- * Is reviewer-visible implementor rationale enabled? DEFAULT-OFF. ONLY the
5
- * canonical truthy tokens (`1`/`true`/`on`/`yes`, case-insensitive) enable it;
6
- * anything else — including unset, empty, and garbage — is OFF (fail-closed:
7
- * a typo can never silently widen what reviewers see). `env` is injected for
8
- * deterministic tests; production passes `process.env`.
2
+ * Is reviewer-visible implementor rationale enabled? Always false.
3
+ * Policy invariant: reviewers review the captured diff, never the agent's narrative.
9
4
  */
10
- export declare function isReviewerRationaleEnabled(env?: NodeJS.ProcessEnv): boolean;
5
+ export declare function isReviewerRationaleEnabled(_env?: NodeJS.ProcessEnv): boolean;
@@ -2,12 +2,6 @@
2
2
  export type TeamExecution = 'worktree_merge';
3
3
  /** The hard default — and only — execution model. */
4
4
  export declare const DEFAULT_TEAM_EXECUTION: TeamExecution;
5
- /**
6
- * The env var that FORMERLY selected the execution model. Inert since the
7
- * `legacy_disjoint` deletion (kept exported for the operator-docs surface and
8
- * so stale dogfood scripts that still set it don't break anything).
9
- */
10
- export declare const TEAM_EXECUTION_ENV_VAR = "CODEVIBE_TEAM_EXECUTION";
11
5
  /** Is `v` the (single) valid {@link TeamExecution} label? */
12
6
  export declare function isTeamExecution(v: unknown): v is TeamExecution;
13
7
  /**
@@ -73,12 +73,14 @@ export declare const defaultLocalModelDownloadTransport: LocalModelDownloadTrans
73
73
  export interface LocalModelProcessPuller {
74
74
  pull(model: string, localOllamaHost?: string, onProgress?: OllamaPullProgressListener): Promise<void>;
75
75
  }
76
+ export declare const ANSI_ESCAPE_REGEX: RegExp;
76
77
  type SpawnOllamaPull = typeof spawn;
77
78
  export declare class OllamaProcessPuller implements LocalModelProcessPuller {
78
- private readonly command;
79
+ private readonly command?;
79
80
  private readonly spawnPull;
80
- constructor(command?: string, spawnPull?: SpawnOllamaPull);
81
- pull(model: string, localOllamaHost?: string, _onProgress?: OllamaPullProgressListener): Promise<void>;
81
+ private readonly stallTimeoutMs;
82
+ constructor(command?: string | undefined, spawnPull?: SpawnOllamaPull, stallTimeoutMs?: number);
83
+ pull(model: string, localOllamaHost?: string, onProgress?: OllamaPullProgressListener): Promise<void>;
82
84
  }
83
85
  /**
84
86
  * Build the Ollama runtime config for a pull that HONORS the caller's `model` argument