code-ai-installer 4.3.0 → 4.3.2

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/README.md CHANGED
@@ -157,8 +157,10 @@ Depending on `--target`, `code-ai` restructures your project:
157
157
 
158
158
  ## 🧬 Versions & migration
159
159
 
160
- `code-ai-installer` is on **v4.3.0**.
160
+ `code-ai-installer` is on **v4.3.2**.
161
161
 
162
+ - **v4.3.2** — the Auditor now sees **`/bugfix`** runs. A run scorecard is recorded when a run reaches its mode's final gate (full / hotfix → RG, bugfix → TEST) instead of only at RG, so bugfix work counts toward the ≥3-run audit threshold rather than staying invisible. Reads each domain's `pipeline.yaml` (no hardcoded gate); existing ledger entries are unaffected and only runs completed after the update are recorded.
163
+ - **v4.3.1** — the `code-ai-mcp` registration is now **pinned** to the installed version (`npx -p code-ai-installer@<version>`) and re-pinned on every reinstall, so an updated server actually takes effect instead of an unpinned `npx` silently reusing a stale global/cache copy. The server also logs `code-ai-mcp v<version> · domain=<domain>` to stderr at startup, so the live build is visible in Claude's MCP logs.
162
164
  - **v4.3.0** — `render_diff` MCP tool (unified diff → a standalone HTML review page); MCP gate-flow + stop-at-user-gate sections added to the content / analytics / product conductors; Auditor trigger — a `/audit` command plus a Release-Gate nudge that surfaces after every 3rd completed run (development pilot).
163
165
  - **v4.1.0** — MCP servers now register in your **global (user-scope)** config via a direct, idempotent `~/.claude.json` merge (no dependency on the `claude` CLI); the conductor halts at each user gate — one at a time, no batching, no auto-pass on green.
164
166
  - **v4.0.0** — consolidated the previously separate `code-ai-mcp` and types packages into this single package with **two bins** (`code-ai` + `code-ai-mcp`). Installing the CLI now also delivers the MCP server; for Claude it is auto-registered in your global (user-scope) MCP config. Existing 3.x CLI behavior is unchanged.
package/dist/index.js CHANGED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env node
2
- import { createRequire } from "node:module";
3
2
  import path from "node:path";
4
3
  import { fileURLToPath } from "node:url";
5
4
  import prompts from "prompts";
@@ -13,10 +12,9 @@ import { setupMcp, teardownMcp } from "./mcp_setup.js";
13
12
  import { getPlatformAdapters } from "./platforms/adapters.js";
14
13
  import { resolveSourceRoot } from "./sourceResolver.js";
15
14
  import { printBanner } from "./banner.js";
15
+ import { readInstallerVersion } from "./version.js";
16
16
  const program = new Command();
17
17
  const packageRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");
18
- const requireJson = createRequire(import.meta.url);
19
- const pkg = requireJson("../package.json");
20
18
  const WIZARD_TEXT = {
21
19
  en: {
22
20
  cancelled: "Installation cancelled.",
@@ -76,7 +74,7 @@ const WIZARD_TEXT = {
76
74
  program
77
75
  .name("code-ai")
78
76
  .description("Install code-ai agents and skills for AI coding assistants")
79
- .version(pkg.version);
77
+ .version(readInstallerVersion());
80
78
  program
81
79
  .command("targets")
82
80
  .description("List supported AI targets")
@@ -228,7 +226,7 @@ program
228
226
  });
229
227
  for (const notice of report.notices)
230
228
  info(` ${notice}`);
231
- info(` MCP (${report.registration}): registered [${report.serversRegistered.join(", ") || "—"}], already present [${report.serversAlreadyPresent.join(", ") || "—"}]`);
229
+ info(` MCP (${report.registration}): registered [${report.serversRegistered.join(", ") || "—"}], re-pinned [${report.serversUpdated.join(", ") || "—"}], already present [${report.serversAlreadyPresent.join(", ") || "—"}]`);
232
230
  info(` .code-ai/config.json: written at ${report.configPath} (decision_store=${report.mempalaceUsed ? "mempalace" : "jsonl"})`);
233
231
  }
234
232
  if (dryRun) {
@@ -494,7 +492,7 @@ async function runInteractiveWizard() {
494
492
  });
495
493
  for (const notice of report.notices)
496
494
  info(` ${notice}`);
497
- info(` MCP (${report.registration}): registered [${report.serversRegistered.join(", ") || "—"}], already present [${report.serversAlreadyPresent.join(", ") || "—"}]`);
495
+ info(` MCP (${report.registration}): registered [${report.serversRegistered.join(", ") || "—"}], re-pinned [${report.serversUpdated.join(", ") || "—"}], already present [${report.serversAlreadyPresent.join(", ") || "—"}]`);
498
496
  info(` .code-ai/config.json: written at ${report.configPath} (decision_store=${report.mempalaceUsed ? "mempalace" : "jsonl"})`);
499
497
  }
500
498
  success("Install completed.");
@@ -1,15 +1,17 @@
1
1
  import { RunScorecard } from "./scorecard.js";
2
2
  import type { TaskState } from "./task_state.js";
3
+ import type { GateName } from "../shared/index.js";
3
4
  /** Append one scorecard as a JSON line to the run ledger (creates dir if needed). */
4
5
  export declare function appendScorecard(card: RunScorecard): Promise<void>;
5
6
  /** Read all scorecards from the ledger. Malformed / partial lines are skipped. */
6
7
  export declare function readLedger(): Promise<RunScorecard[]>;
7
8
  /**
8
- * Build + append a scorecard for a completed run. Called from sign_off when RG
9
- * is signed. Best-effort by contract: callers MUST NOT let a ledger failure
10
- * break a sign-off (telemetry is never load-bearing for the gate).
9
+ * Build + append a scorecard for a completed run. Called from sign_off when the
10
+ * mode's terminal gate is signed (full/hotfix RG, bugfix TEST). Best-effort
11
+ * by contract: callers MUST NOT let a ledger failure break a sign-off (telemetry
12
+ * is never load-bearing for the gate).
11
13
  */
12
- export declare function recordRunScorecard(state: TaskState): Promise<void>;
14
+ export declare function recordRunScorecard(state: TaskState, terminalGate: GateName): Promise<void>;
13
15
  /** Number of COMPLETED (RG-signed) runs in the ledger. */
14
16
  export declare function countCompletedRuns(): Promise<number>;
15
17
  /**
@@ -72,13 +72,14 @@ async function readSideCounts(taskId) {
72
72
  };
73
73
  }
74
74
  /**
75
- * Build + append a scorecard for a completed run. Called from sign_off when RG
76
- * is signed. Best-effort by contract: callers MUST NOT let a ledger failure
77
- * break a sign-off (telemetry is never load-bearing for the gate).
75
+ * Build + append a scorecard for a completed run. Called from sign_off when the
76
+ * mode's terminal gate is signed (full/hotfix RG, bugfix TEST). Best-effort
77
+ * by contract: callers MUST NOT let a ledger failure break a sign-off (telemetry
78
+ * is never load-bearing for the gate).
78
79
  */
79
- export async function recordRunScorecard(state) {
80
+ export async function recordRunScorecard(state, terminalGate) {
80
81
  const extras = await readSideCounts(state.task_id);
81
- await appendScorecard(buildScorecard(state, extras));
82
+ await appendScorecard(buildScorecard(state, extras, terminalGate));
82
83
  }
83
84
  /** Number of COMPLETED (RG-signed) runs in the ledger. */
84
85
  export async function countCompletedRuns() {
package/dist/mcp/cli.d.ts CHANGED
@@ -11,6 +11,10 @@
11
11
  */
12
12
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
13
13
  import { type ToolName } from "../shared/index.js";
14
+ declare const SERVER_INFO: {
15
+ name: string;
16
+ version: string;
17
+ };
14
18
  /**
15
19
  * One-line description per tool. Not stored in the shared types module (src/shared) because the
16
20
  * registry there is pure I/O contracts; descriptions live with the transport
@@ -18,4 +22,4 @@ import { type ToolName } from "../shared/index.js";
18
22
  */
19
23
  declare const TOOL_DESCRIPTIONS: Record<ToolName, string>;
20
24
  declare function buildServer(): McpServer;
21
- export { buildServer, TOOL_DESCRIPTIONS };
25
+ export { buildServer, TOOL_DESCRIPTIONS, SERVER_INFO };
package/dist/mcp/cli.js CHANGED
@@ -14,9 +14,11 @@ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"
14
14
  import { TOOL_REGISTRY } from "../shared/index.js";
15
15
  import { CodeAiMcpServer } from "./server.js";
16
16
  import { NotImplementedError } from "./tools/stubs.js";
17
+ import { readInstallerVersion } from "../version.js";
18
+ import { resolveActiveDomain } from "./config.js";
17
19
  const SERVER_INFO = {
18
20
  name: "code-ai-mcp",
19
- version: "0.0.0",
21
+ version: readInstallerVersion(),
20
22
  };
21
23
  /**
22
24
  * One-line description per tool. Not stored in the shared types module (src/shared) because the
@@ -108,6 +110,11 @@ async function main() {
108
110
  const mcp = buildServer();
109
111
  const transport = new StdioServerTransport();
110
112
  await mcp.connect(transport);
113
+ // Startup banner to STDERR — never stdout, which carries the JSON-RPC stream.
114
+ // Makes the live build + active domain visible in Claude's MCP logs, so a
115
+ // stale-server mismatch is obvious instead of silent.
116
+ const domain = await resolveActiveDomain();
117
+ console.error(`code-ai-mcp v${SERVER_INFO.version} · domain=${domain}`);
111
118
  }
112
119
  // Allow importing buildServer in tests without starting the stdio loop.
113
120
  const isDirectRun = (() => {
@@ -125,4 +132,4 @@ if (isDirectRun) {
125
132
  process.exit(1);
126
133
  });
127
134
  }
128
- export { buildServer, TOOL_DESCRIPTIONS };
135
+ export { buildServer, TOOL_DESCRIPTIONS, SERVER_INFO };
@@ -1,10 +1,12 @@
1
1
  import { z } from "zod";
2
+ import { GateName } from "../shared/index.js";
2
3
  import type { TaskState } from "./task_state.js";
3
4
  /**
4
5
  * Run scorecard — a compact, per-pipeline-run summary derived ENTIRELY from
5
6
  * telemetry the MCP state machine already persists (task state + jsonl side
6
7
  * logs). One scorecard is appended to the run ledger when a run completes
7
- * (RG signed). The Auditor's aggregation tool crunches >=3 of these.
8
+ * (its mode's terminal gate is signed RG for full/hotfix, TEST for bugfix).
9
+ * The Auditor's aggregation tool crunches >=3 of these.
8
10
  *
9
11
  * Deliberately records raw signals, not judgments — interpretation belongs to
10
12
  * the aggregator (numbers) and, later, the Auditor agent (findings).
@@ -137,4 +139,4 @@ export type ScorecardExtras = {
137
139
  * Build a run scorecard from a task's persisted state plus side-log counts.
138
140
  * Pure + synchronous: deterministic and unit-testable on synthetic state.
139
141
  */
140
- export declare function buildScorecard(state: TaskState, extras: ScorecardExtras): RunScorecard;
142
+ export declare function buildScorecard(state: TaskState, extras: ScorecardExtras, terminalGate?: GateName): RunScorecard;
@@ -4,7 +4,8 @@ import { ClassificationOutcome, GateName, PipelineMode, Signer, } from "../share
4
4
  * Run scorecard — a compact, per-pipeline-run summary derived ENTIRELY from
5
5
  * telemetry the MCP state machine already persists (task state + jsonl side
6
6
  * logs). One scorecard is appended to the run ledger when a run completes
7
- * (RG signed). The Auditor's aggregation tool crunches >=3 of these.
7
+ * (its mode's terminal gate is signed RG for full/hotfix, TEST for bugfix).
8
+ * The Auditor's aggregation tool crunches >=3 of these.
8
9
  *
9
10
  * Deliberately records raw signals, not judgments — interpretation belongs to
10
11
  * the aggregator (numbers) and, later, the Auditor agent (findings).
@@ -35,10 +36,10 @@ export const RunScorecard = z.object({
35
36
  schema_version: z.literal(SCORECARD_SCHEMA_VERSION),
36
37
  task_id: z.string().min(1),
37
38
  mode: PipelineMode,
38
- /** True when an RG sign-off exists (the state machine does not set completed_at). */
39
+ /** True when the mode's terminal gate has been signed (RG for full/hotfix, TEST for bugfix). */
39
40
  completed: z.boolean(),
40
41
  created_at: z.string(),
41
- /** Timestamp of the RG sign-off, or null if not completed. */
42
+ /** Timestamp of the terminal-gate sign-off, or null if not completed. */
42
43
  completed_at: z.string().nullable(),
43
44
  gates: z.array(GateScore),
44
45
  dev_rollback_count: z.number().int().nonnegative(),
@@ -52,7 +53,7 @@ export const RunScorecard = z.object({
52
53
  * Build a run scorecard from a task's persisted state plus side-log counts.
53
54
  * Pure + synchronous: deterministic and unit-testable on synthetic state.
54
55
  */
55
- export function buildScorecard(state, extras) {
56
+ export function buildScorecard(state, extras, terminalGate = "RG") {
56
57
  // Group sign-offs by gate: count + last signer (last in chronological array).
57
58
  const signoffCount = new Map();
58
59
  const lastSigner = new Map();
@@ -73,9 +74,13 @@ export function buildScorecard(state, extras) {
73
74
  classification: lastClass.get(gate) ?? null,
74
75
  exceptions_count: extras.exceptions_by_gate[gate] ?? 0,
75
76
  }));
76
- const rgSignoffs = state.signoffs.filter((s) => s.gate === "RG");
77
- const completed = rgSignoffs.length > 0;
78
- const completed_at = completed ? rgSignoffs[rgSignoffs.length - 1].timestamp : null;
77
+ // A run is complete when its mode's TERMINAL gate is signed (full/hotfix → RG,
78
+ // bugfix TEST). The terminal gate is supplied by the caller (sign_off knows it
79
+ // from pipeline.yaml); defaults to "RG" so the full-mode path and standalone
80
+ // callers are unchanged.
81
+ const terminalSignoffs = state.signoffs.filter((s) => s.gate === terminalGate);
82
+ const completed = terminalSignoffs.length > 0;
83
+ const completed_at = completed ? terminalSignoffs[terminalSignoffs.length - 1].timestamp : null;
79
84
  const exceptions_count = Object.values(extras.exceptions_by_gate).reduce((a, b) => a + (b ?? 0), 0);
80
85
  // Group skill invocations by skill + gate into counts.
81
86
  const skillAgg = new Map();
@@ -6,7 +6,8 @@ import type { AggregateRunMetricsInput, AggregateRunMetricsOutput } from "../../
6
6
  * the Auditor agent's job (a later ADR).
7
7
  *
8
8
  * Attribution: per-AGENT via gate→produced_by[0] from pipeline.yaml (single
9
- * source); per-WORKFLOW via mode. Only COMPLETED runs (RG signed) are
9
+ * source); per-WORKFLOW via mode. Only COMPLETED runs (the mode's terminal gate
10
+ * signed — RG for full/hotfix, TEST for bugfix) are
10
11
  * aggregated; `min_runs` (default 3) is the design's small-sample guard — below
11
12
  * it `met_threshold=false` and the Auditor should stay silent.
12
13
  *
@@ -14,6 +15,6 @@ import type { AggregateRunMetricsInput, AggregateRunMetricsOutput } from "../../
14
15
  * per_skill (incl. the gates a skill was pulled at) via get_skill instrumentation
15
16
  * (ADR-DEV-121) — the remaining gap is trigger_accuracy (relevant-vs-invoked),
16
17
  * which needs a relevance oracle; no explicit human-rejection signal; completed =
17
- * RG signed (completed_at unset).
18
+ * the mode's terminal gate signed (RG for full/hotfix, TEST for bugfix).
18
19
  */
19
20
  export declare function aggregateRunMetrics(input: AggregateRunMetricsInput): Promise<AggregateRunMetricsOutput>;
@@ -8,7 +8,8 @@ import { resolveActiveDomain } from "../config.js";
8
8
  * the Auditor agent's job (a later ADR).
9
9
  *
10
10
  * Attribution: per-AGENT via gate→produced_by[0] from pipeline.yaml (single
11
- * source); per-WORKFLOW via mode. Only COMPLETED runs (RG signed) are
11
+ * source); per-WORKFLOW via mode. Only COMPLETED runs (the mode's terminal gate
12
+ * signed — RG for full/hotfix, TEST for bugfix) are
12
13
  * aggregated; `min_runs` (default 3) is the design's small-sample guard — below
13
14
  * it `met_threshold=false` and the Auditor should stay silent.
14
15
  *
@@ -16,7 +17,7 @@ import { resolveActiveDomain } from "../config.js";
16
17
  * per_skill (incl. the gates a skill was pulled at) via get_skill instrumentation
17
18
  * (ADR-DEV-121) — the remaining gap is trigger_accuracy (relevant-vs-invoked),
18
19
  * which needs a relevance oracle; no explicit human-rejection signal; completed =
19
- * RG signed (completed_at unset).
20
+ * the mode's terminal gate signed (RG for full/hotfix, TEST for bugfix).
20
21
  */
21
22
  export async function aggregateRunMetrics(input) {
22
23
  const minRuns = input.min_runs;
@@ -117,7 +118,7 @@ export async function aggregateRunMetrics(input) {
117
118
  gates: [...a.gates].sort(),
118
119
  }));
119
120
  const notes = [
120
- "completed = RG sign-off present (state machine does not populate completed_at).",
121
+ "completed = the mode's terminal gate is signed (RG for full/hotfix, TEST for bugfix).",
121
122
  "Skill invocations ARE captured (get_skill instrumentation, ADR-DEV-121): per_skill carries invocation counts + the gates each skill was pulled at, so skill.gates can be tuned to observed usage. The remaining gap is trigger_accuracy (relevant-vs-invoked), which needs a relevance oracle — not this data layer.",
122
123
  "No explicit human gate-rejection signal; rejections manifest as rollbacks/exceptions.",
123
124
  "Per-agent attribution uses gate→produced_by[0] from the active domain's pipeline.yaml.",
@@ -1,4 +1,4 @@
1
- import { getGateConfig, loadPipeline } from "../pipeline.js";
1
+ import { getGateConfig, getNextGate, loadPipeline } from "../pipeline.js";
2
2
  import { readTaskState, writeTaskState } from "../task_state.js";
3
3
  import { recordRunScorecard, countCompletedRuns, auditNudgeFor } from "../audit_ledger.js";
4
4
  import { resolveActiveDomain } from "../config.js";
@@ -57,14 +57,14 @@ export async function signOff(input) {
57
57
  evidence: input.evidence,
58
58
  });
59
59
  await writeTaskState(state);
60
- // Auditor telemetry: when the terminal gate is signed, the run is complete —
61
- // append a scorecard to the local ledger, then compute the /audit nudge.
62
- // Best-effort: a ledger failure (or nudge failure) must NEVER break a
63
- // sign-off (telemetry is not load-bearing for the gate).
60
+ // Auditor telemetry: when the run reaches its mode's TERMINAL gate (full/hotfix
61
+ // RG, bugfix TEST), the run is complete append a scorecard to the local
62
+ // ledger, then compute the /audit nudge. Best-effort: a ledger failure (or nudge
63
+ // failure) must NEVER break a sign-off (telemetry is not load-bearing for the gate).
64
64
  let audit_nudge;
65
- if (input.gate === "RG") {
65
+ if (getNextGate(pipeline, state.mode, input.gate) === null) {
66
66
  try {
67
- await recordRunScorecard(state);
67
+ await recordRunScorecard(state, input.gate);
68
68
  audit_nudge = auditNudgeFor(await countCompletedRuns());
69
69
  }
70
70
  catch {
@@ -69,6 +69,8 @@ export interface McpSetupReport {
69
69
  registration: "user-scope" | "manual-fallback";
70
70
  /** Server names freshly added to the user config this run. */
71
71
  serversRegistered: string[];
72
+ /** Installer-owned server names whose entry was refreshed (e.g. re-pinned to a new version). */
73
+ serversUpdated: string[];
72
74
  /** Server names already present in the user config (left untouched). */
73
75
  serversAlreadyPresent: string[];
74
76
  /** Server names whose registration failed (config unwritable). */
@@ -128,13 +130,16 @@ export declare function userConfigPath(): string;
128
130
  export declare function createUserConfigIO(configPath: string): UserConfigIO;
129
131
  /**
130
132
  * Idempotently merge `servers` into the config's top-level `mcpServers`. Pure —
131
- * returns a new config object plus which names were freshly added vs already
132
- * present. An existing key is NEVER overwritten (so a pre-existing global
133
- * `mempalace` is preserved untouched). Exported for unit testing.
133
+ * returns a new config object plus which names were added / updated / already
134
+ * present. A FOREIGN existing key is never overwritten (so a pre-existing global
135
+ * `mempalace` is preserved). An OWNED server (named in `ownedServers`) whose
136
+ * entry differs is refreshed in place — that is how a reinstall re-pins
137
+ * `code-ai-mcp` to the new version. Exported for unit testing.
134
138
  */
135
- export declare function mergeUserScopeServers(config: Record<string, unknown>, servers: Record<string, McpServerEntry>): {
139
+ export declare function mergeUserScopeServers(config: Record<string, unknown>, servers: Record<string, McpServerEntry>, ownedServers?: readonly string[]): {
136
140
  config: Record<string, unknown>;
137
141
  registered: string[];
142
+ updated: string[];
138
143
  alreadyPresent: string[];
139
144
  };
140
145
  /**
package/dist/mcp_setup.js CHANGED
@@ -2,6 +2,7 @@ import { spawn } from "node:child_process";
2
2
  import { copyFile, mkdir, readFile, rename, writeFile } from "node:fs/promises";
3
3
  import { homedir } from "node:os";
4
4
  import { join } from "node:path";
5
+ import { readInstallerVersion } from "./version.js";
5
6
  /**
6
7
  * Try `mempalace-mcp --help` — the dedicated MCP-server bin, which is exactly
7
8
  * what we register. Resolves true on exit code 0, false otherwise (including
@@ -120,25 +121,38 @@ function readMcpServers(config) {
120
121
  }
121
122
  /**
122
123
  * Idempotently merge `servers` into the config's top-level `mcpServers`. Pure —
123
- * returns a new config object plus which names were freshly added vs already
124
- * present. An existing key is NEVER overwritten (so a pre-existing global
125
- * `mempalace` is preserved untouched). Exported for unit testing.
124
+ * returns a new config object plus which names were added / updated / already
125
+ * present. A FOREIGN existing key is never overwritten (so a pre-existing global
126
+ * `mempalace` is preserved). An OWNED server (named in `ownedServers`) whose
127
+ * entry differs is refreshed in place — that is how a reinstall re-pins
128
+ * `code-ai-mcp` to the new version. Exported for unit testing.
126
129
  */
127
- export function mergeUserScopeServers(config, servers) {
130
+ export function mergeUserScopeServers(config, servers, ownedServers = []) {
128
131
  const next = { ...config };
129
132
  const mcpServers = readMcpServers(config);
133
+ const owned = new Set(ownedServers);
130
134
  const registered = [];
135
+ const updated = [];
131
136
  const alreadyPresent = [];
132
137
  for (const [name, entry] of Object.entries(servers)) {
138
+ const desired = toUserScopeEntry(entry);
133
139
  if (Object.prototype.hasOwnProperty.call(mcpServers, name)) {
134
- alreadyPresent.push(name);
140
+ // Refresh ONLY our own servers (e.g. re-pin to a new version). A foreign
141
+ // server we also register (mempalace) is never overwritten.
142
+ if (owned.has(name) && JSON.stringify(mcpServers[name]) !== JSON.stringify(desired)) {
143
+ mcpServers[name] = desired;
144
+ updated.push(name);
145
+ }
146
+ else {
147
+ alreadyPresent.push(name);
148
+ }
135
149
  continue;
136
150
  }
137
- mcpServers[name] = toUserScopeEntry(entry);
151
+ mcpServers[name] = desired;
138
152
  registered.push(name);
139
153
  }
140
154
  next.mcpServers = mcpServers;
141
- return { config: next, registered, alreadyPresent };
155
+ return { config: next, registered, updated, alreadyPresent };
142
156
  }
143
157
  /**
144
158
  * Idempotently remove `names` from the config's `mcpServers`. Pure — returns a
@@ -184,10 +198,14 @@ function buildServerEntries(mempalaceUsed) {
184
198
  // DEV-100 consolidation: the code-ai-mcp bin lives inside the
185
199
  // `code-ai-installer` npm package. `npx -p <package> <bin>` tells npm to
186
200
  // install that package and run the named bin from it.
201
+ // Pin to THIS installer's version so the spawned server is explicit and
202
+ // reproducible. An unpinned `npx` silently runs whatever global/cache copy
203
+ // exists — that is how a stale, pre-fix server kept running after a reinstall.
204
+ // A reinstall re-pins this (mergeUserScopeServers refreshes owned servers).
187
205
  const servers = {
188
206
  "code-ai-mcp": {
189
207
  command: "npx",
190
- args: ["-y", "-p", "code-ai-installer", "code-ai-mcp"],
208
+ args: ["-y", "-p", `code-ai-installer@${readInstallerVersion()}`, "code-ai-mcp"],
191
209
  },
192
210
  };
193
211
  if (mempalaceUsed) {
@@ -249,6 +267,7 @@ export async function setupMcp(opts, io = defaultUserConfigIO) {
249
267
  }
250
268
  const servers = buildServerEntries(mempalaceUsed);
251
269
  const serversRegistered = [];
270
+ const serversUpdated = [];
252
271
  const serversAlreadyPresent = [];
253
272
  const serversFailed = [];
254
273
  let registration;
@@ -268,12 +287,13 @@ export async function setupMcp(opts, io = defaultUserConfigIO) {
268
287
  notices.push(manualEntryLine(name, entry));
269
288
  }
270
289
  else {
271
- const merged = mergeUserScopeServers(read.data, servers);
290
+ const merged = mergeUserScopeServers(read.data, servers, INSTALLER_OWNED_SERVERS);
272
291
  serversAlreadyPresent.push(...merged.alreadyPresent);
273
292
  for (const name of merged.alreadyPresent) {
274
293
  notices.push(`MCP server '${name}' already in user config — left untouched.`);
275
294
  }
276
- if (merged.registered.length === 0) {
295
+ const changed = [...merged.registered, ...merged.updated];
296
+ if (changed.length === 0) {
277
297
  registration = "user-scope";
278
298
  }
279
299
  else {
@@ -281,16 +301,22 @@ export async function setupMcp(opts, io = defaultUserConfigIO) {
281
301
  if (written.ok) {
282
302
  registration = "user-scope";
283
303
  serversRegistered.push(...merged.registered);
284
- notices.push(`Registered MCP server(s) [${merged.registered.join(", ")}] in Claude user config ${io.configPath}` +
304
+ serversUpdated.push(...merged.updated);
305
+ const parts = [];
306
+ if (merged.registered.length)
307
+ parts.push(`registered [${merged.registered.join(", ")}]`);
308
+ if (merged.updated.length)
309
+ parts.push(`re-pinned [${merged.updated.join(", ")}]`);
310
+ notices.push(`MCP server(s) ${parts.join(", ")} in Claude user config ${io.configPath}` +
285
311
  (written.backupPath ? ` (backup: ${written.backupPath})` : "") +
286
312
  ". Restart your Claude Code session to load them.");
287
313
  }
288
314
  else {
289
315
  registration = "manual-fallback";
290
- serversFailed.push(...merged.registered);
316
+ serversFailed.push(...changed);
291
317
  notices.push(`Failed to write Claude user config at ${io.configPath} (${written.error ?? "unknown error"}). ` +
292
318
  `No changes made — add these entries to its "mcpServers" object by hand:`);
293
- for (const name of merged.registered)
319
+ for (const name of changed)
294
320
  notices.push(manualEntryLine(name, servers[name]));
295
321
  }
296
322
  }
@@ -308,6 +334,7 @@ export async function setupMcp(opts, io = defaultUserConfigIO) {
308
334
  userConfigPath: io.configPath,
309
335
  registration,
310
336
  serversRegistered,
337
+ serversUpdated,
311
338
  serversAlreadyPresent,
312
339
  serversFailed,
313
340
  configPath: cfg.path,
@@ -0,0 +1,8 @@
1
+ /**
2
+ * The installed `code-ai-installer` package version — the single source for the
3
+ * CLI `--version`, the MCP server registration pin, and the server startup
4
+ * banner. Resolves `package.json` relative to THIS module (dist/version.js →
5
+ * ../package.json = package root), so every caller gets the right path
6
+ * regardless of its own depth in the tree.
7
+ */
8
+ export declare function readInstallerVersion(): string;
@@ -0,0 +1,13 @@
1
+ import { createRequire } from "node:module";
2
+ /**
3
+ * The installed `code-ai-installer` package version — the single source for the
4
+ * CLI `--version`, the MCP server registration pin, and the server startup
5
+ * banner. Resolves `package.json` relative to THIS module (dist/version.js →
6
+ * ../package.json = package root), so every caller gets the right path
7
+ * regardless of its own depth in the tree.
8
+ */
9
+ export function readInstallerVersion() {
10
+ const requireJson = createRequire(import.meta.url);
11
+ const pkg = requireJson("../package.json");
12
+ return pkg.version;
13
+ }
@@ -22,7 +22,7 @@ schema_version: 1
22
22
  - НЕ на каждом гейте и НЕ в фоне. Один проход, когда накопилось **≥3 завершённых прогона** (порог настраивается).
23
23
  - Ниже порога — молчит. На n=1 выводов не делает (малая выборка).
24
24
  - Per-gate телеметрию уже пишет стейт-машина; Аудитор делает один проход по накопленным данным.
25
- - Запуск прохода: команда `/audit` (вручную) или подсказка `audit_nudge`, которую `sign_off` возвращает после RG.
25
+ - Запуск прохода: команда `/audit` (вручную) или подсказка `audit_nudge`, которую `sign_off` возвращает после завершения прогона (подписан финальный гейт режима — RG для full/hotfix, TEST для bugfix).
26
26
 
27
27
  ---
28
28
 
@@ -57,7 +57,7 @@ schema_version: 1
57
57
  - **Через человека даже в автономии:** разрушительное по существующему (удаление, крупная переписка, снятие возможностей).
58
58
  - **Всегда:** обязательный отчёт после любого автономного действия. Ничего невидимого.
59
59
  - **Дедуп при добавлении:** перед авто-добавлением скила — проверка пересечения (`related` + контролируемый словарь); отчёт перечисляет добавления для последующей чистки.
60
- - Механизм предложение→одобрение и тумблер автономии уже реализованы (`propose_change` → `review_proposal`: матрица рисков + дедуп). Проход запускается командой `/audit` или подсказкой после RG.
60
+ - Механизм предложение→одобрение и тумблер автономии уже реализованы (`propose_change` → `review_proposal`: матрица рисков + дедуп). Проход запускается командой `/audit` или подсказкой после завершения прогона.
61
61
 
62
62
  ---
63
63
 
@@ -22,7 +22,7 @@ Close the self-improvement loop: build → run → measure → improve. Once rea
22
22
  - NOT at every gate and NOT in the background. One pass, once **≥3 completed runs** have accumulated (threshold configurable).
23
23
  - Below the threshold — silent. It draws no conclusions from n=1 (small sample).
24
24
  - Per-gate telemetry is already persisted by the state machine; the Auditor makes one pass over the accumulated data.
25
- - Triggering a pass: the `/audit` command (manual) or the `audit_nudge` that `sign_off` returns after RG.
25
+ - Triggering a pass: the `/audit` command (manual) or the `audit_nudge` that `sign_off` returns when a run completes (its mode's terminal gate is signed — RG for full/hotfix, TEST for bugfix).
26
26
 
27
27
  ---
28
28
 
@@ -57,7 +57,7 @@ Close the self-improvement loop: build → run → measure → improve. Once rea
57
57
  - **Human-gated even under autonomy:** destructive changes to existing assets (delete, major rewrite, capability removal).
58
58
  - **Always:** a mandatory report after any autonomous action. Nothing invisible.
59
59
  - **Additive dedup:** before auto-adding a skill — an overlap check (`related` + controlled vocab); the report lists additions for later pruning.
60
- - The propose→approve mechanism and the autonomy toggle already exist (`propose_change` → `review_proposal`: risk matrix + dedup). A pass is triggered by `/audit` or the post-RG nudge.
60
+ - The propose→approve mechanism and the autonomy toggle already exist (`propose_change` → `review_proposal`: risk matrix + dedup). A pass is triggered by `/audit` or the post-completion nudge.
61
61
 
62
62
  ---
63
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-ai-installer",
3
- "version": "4.3.0",
3
+ "version": "4.3.2",
4
4
  "description": "Production-ready CLI to install code-ai agents and skills for multiple AI coding assistants. Bundles the code-ai-mcp MCP server for Claude Code.",
5
5
  "license": "MIT",
6
6
  "author": "Denish1209",