baldart 3.25.0 → 3.26.0

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/CHANGELOG.md CHANGED
@@ -5,6 +5,59 @@ All notable changes to BALDART will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.26.0] - 2026-05-27
9
+
10
+ Fix definitivo del processo `baldart update` dopo che un'esecuzione reale su un consumer (`mayo`) ha esposto un workflow strutturalmente rotto. Sintomi: `update --yes` stampava "Already up to date!" mentre `version`/`doctor` riportavano correttamente "Remote: 51 commit ahead"; CLI globale (v3.18.1) silenzioso vs npm latest (v3.24.0); divergenza subtree (19 commit locali + 51 upstream) mai menzionata; output sporcato da `ExperimentalWarning` di npm a ogni invocazione; skill `/baldart-update` che narrava il workflow rotto senza accorgersene. Root cause: tre superfici (`update`, `version`, `doctor`) implementavano TRE check diversi per la stessa domanda, e nessuna era giusta — `update.js:193` usava `hasChangesToPush()` (commit LOCALI non pushati al CONSUMER's origin, niente a che vedere con BALDART upstream); `version`/`doctor` usavano `HEAD...FETCH_HEAD` full-repo che include sempre subtree-merge noise → falso positivo perenne "52 commit ahead".
11
+
12
+ ### Fixed — Bug "Already up to date" su consumer con update disponibili
13
+
14
+ - **[src/utils/git.js](src/utils/git.js)** + **[src/commands/update.js](src/commands/update.js)**: nuova `getUpdateStatus(repo, branch)` SSOT basata su **VERSION compare** (`git show FETCH_HEAD:VERSION` vs `.framework/VERSION`), non sul commit count (che è strutturalmente rumoroso sul subtree). `update.js` Step 2 ora usa `status.isAligned` come segnale autoritativo. Eliminata la chiamata a `git.hasChangesToPush()` (rimane per compatibilità di `push.js`).
15
+
16
+ ### Fixed — Falsi positivi "52 commit ahead / 20 unpushed" perenni
17
+
18
+ - **[src/commands/version.js](src/commands/version.js)** + **[src/commands/doctor.js](src/commands/doctor.js)**: messaging riscritto su `isAligned`. `Remote: v3.26.0 (aligned)` quando OK, `Remote: v3.26.0 — update available (installed v3.22.1)` altrimenti. Il commit count migra dietro `version --verbose` (etichettato "subtree commit history — includes auto-generated merges"). Doctor `Local changes` mostra `unpushed commit(s)` SOLO se non-aligned (altrimenti tutto subtree-noise → riga `clean`).
19
+
20
+ ### Added — Classifier divergenza subtree (Fix 2)
21
+
22
+ - **[src/utils/git.js](src/utils/git.js)**: nuova `classifyDivergence()` che ispeziona i commit consumer non in upstream e li categorizza branch-agnostic:
23
+ - `subtree-merge` (`Merge commit '*' into <any-branch>`) → auto-resolve silente.
24
+ - `subtree-squash` (`Squashed '.framework/' changes from *`) → auto-resolve silente.
25
+ - `chore-wrapper` (`[CHORE]` / `chore(baldart):` con `baldart` keyword nel subject o scope) → auto-resolve silente.
26
+ - `custom-overlay-able` (modifiche SOLO a file in `.framework/.claude/{agents,skills,commands}/`) → prompt: "Migra a overlay (raccomandato)".
27
+ - `custom-other` → prompt 3-way (push first / pull anyway / abort).
28
+ - Aggregate class `all-noise | overlay-able | real-custom | mixed | unknown`. Default conservativo `custom-other` per commit non riconosciuti — mai data loss silente.
29
+ - Test fixture-driven: **[src/utils/__tests__/classify-divergence.test.js](src/utils/__tests__/classify-divergence.test.js)** con 24 fixture inclusi i pattern commit reali osservati nel debug di `mayo` (`[CHORE] reconcile baldart state ledger v3.22.1 -> v3.25.0`, `[CHORE] register baldart agent-discovery hooks`, ecc.).
30
+
31
+ ### Added — CLI self-upgrade auto-relaunch (Fix 4)
32
+
33
+ - **[src/commands/update.js](src/commands/update.js)** `maybeRelaunchUnderLatest()`: se il CLI globale è dietro npm latest, `update` rilancia trasparentemente `npx baldart@<latest> update <flags>` con `stdio: inherit` (preserva prompt). Loop guard via env `BALDART_RELAUNCHED=1` (impedisce ricorsione se npm cache serve ancora un vecchio). Fallback al CLI corrente se npx fallisce. Opt-out: `BALDART_NO_RELAUNCH=1`. Razionale rispetto a `update-notifier.js`: l'avvertenza "no auto-update globale" si riferisce a `npm i -g` silente; `npx@latest` è per-invocation, esplicito, opt-out → policy intatta.
34
+
35
+ ### Added — `--reset` nuclear option (Fix 5)
36
+
37
+ - **[bin/baldart.js](bin/baldart.js)** + **[src/commands/update.js](src/commands/update.js)** `runReset()`: `npx baldart update --reset` rimuove `.framework/` e reinstalla pulito, preservando `baldart.config.yml` + `.baldart/` (overlays, state.json) + `.claude/settings.json` + custom agents/skills/commands non-symlink. Safety gate obbligatorio: working tree clean (refusal se dirty), prompt esplicito per file untracked/ignored in `.framework/` (in `--yes` richiede ALSO `--i-know`), backup tag pre-rm. Post-restore sanity check: se un file user-owned è scomparso, refuse + suggest `git reset --hard <backup-tag>`.
38
+
39
+ ### Added — Soppressione `ExperimentalWarning` (Fix 6)
40
+
41
+ - **[bin/baldart.js](bin/baldart.js)**: `process.env.NODE_NO_WARNINGS = '1'` impostato ALL'INIZIO (prima di ogni `require`). Propagato a tutti i child process spawnati dal CLI (git, npx, ecc.). Verificato su Node 23.3.0: silenzia il warning. Escape hatch: `BALDART_VERBOSE_WARNINGS=1` lo riabilita. **Limite noto**: non silenzia il warning emesso da `npx` PRIMA che il nostro codice carichi — l'unico workaround è `npm i -g baldart` (modalità raccomandata) + invocazione diretta `baldart`.
42
+
43
+ ### Changed — Auto-backfill hook missing senza prompt (Fix 7)
44
+
45
+ - **[src/commands/update.js](src/commands/update.js)** logging: hook missing aggregati in una singola linea (`Auto-registered N missing hook(s): a, b, c`) invece di una per hook. La logica `Hooks.registerAll` era già corretta (auto-create silenzioso per missing, prompt solo per drift) — il cambio è cosmetico ma riduce noise post-update.
46
+
47
+ ### Changed — Skill `/baldart-update` parser tollerante + post-flight assert (Fix 9)
48
+
49
+ - **[framework/.claude/skills/baldart-update/SKILL.md](framework/.claude/skills/baldart-update/SKILL.md)**: Step 0 parser tollerante con 5 pattern in ordine (nuovo format `Remote: vX.Y.Z (aligned)`, format intermedio `update available`, legacy `N commit(s) ahead` / `up to date`, offline) — gestisce la finestra di transizione skill v3.26.0 + CLI globale v3.18.1. Se nessun pattern matcha → istruisce `npm i -g baldart@latest`. Eliminato Step 3 (hooks drift — ora auto-backfill in CLI) e Step 4 (auto-commit prompt — sempre yes in `--yes`). Step 6 ora include **post-flight assert obbligatorio**: confronta `.framework/VERSION` pre/post, FAIL LOUD se exit 0 ma VERSION invariata (safety net contro regression del Fix 1).
50
+
51
+ ### Changed — Doctor planner usa version-compare authority
52
+
53
+ - **[src/commands/doctor.js](src/commands/doctor.js)** `planActions()`: `remoteAhead = state.remote.fetched && state.remote.isAligned === false`. Label dell'action `update` ora `Update framework (vX.Y.Z → vA.B.C)` invece di `Pull N commit(s) from upstream`. Local-work detection sopprime commit count quando aligned.
54
+
55
+ ### Internal
56
+
57
+ - Nessuna nuova chiave in `baldart.config.yml`. Schema-change propagation rule non applicabile.
58
+ - `getRemoteVersion()` esistente non più consumato — VERSION compare ora dentro `getUpdateStatus()` via `git show FETCH_HEAD:VERSION`. La funzione resta per back-compat (status.js la chiama).
59
+ - `hasChangesToPush()` resta in `git.js` per `push.js` che la usa correttamente (consumer's origin commits to push upstream).
60
+
8
61
  ## [3.25.0] - 2026-05-27
9
62
 
10
63
  Strict-phase-gating + workspace-hygiene gates per `/new`. Risolve l'incident **FEAT-0006**: epic team-mode (4-layer L0→L1×5→L2×2→L3×2, 10 sub-card) che ha saltato per ogni card le fasi MANDATORY 2.5b (AC-Closure), 2.55 (Simplify), 2.6 (E2E-Review), 3 (Doc-Review), 3.5 (QA-Sentinel), 3.7 (Codexreview) — giustificazione documentata come "time budget", parola **inventata dal modello a runtime**, non esistente nella skill. In aggiunta, AC-IMG-3 "deferred dal coder 09" senza passare dal gate, e main repo lasciato con orphan commit non pushato + local `develop` diverged. Tre root cause radicate: (1) Phase 2.5b non era propagata in team-mode Step D, (2) coder `completion-report` accettava `status: partial`/`blocked` come terminale, (3) zero gate di workspace hygiene su `$MAIN`.
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.25.0
1
+ 3.26.0
package/bin/baldart.js CHANGED
@@ -1,5 +1,17 @@
1
1
  #!/usr/bin/env node
2
2
 
3
+ // Suppress ExperimentalWarning noise from Node/npm internals (v3.25.0+).
4
+ // On Node 22+ npm emits a CommonJS/ESM ExperimentalWarning on every spawn —
5
+ // not actionable for our users, repeated on every invocation, illegible.
6
+ // Setting NODE_NO_WARNINGS in env BEFORE any spawn propagates to all
7
+ // child processes we launch (git, npx, etc). Cannot silence the warning
8
+ // emitted by `npx` itself BEFORE our code loads — for that, the
9
+ // recommended install is `npm i -g baldart` (then `baldart` direct).
10
+ // Escape hatch: BALDART_VERBOSE_WARNINGS=1 keeps them visible.
11
+ if (process.env.BALDART_VERBOSE_WARNINGS !== '1' && !process.env.NODE_NO_WARNINGS) {
12
+ process.env.NODE_NO_WARNINGS = '1';
13
+ }
14
+
3
15
  const { Command } = require('commander');
4
16
  const chalk = require('chalk');
5
17
  const fs = require('fs');
@@ -58,6 +70,8 @@ program
58
70
  .option('--no-commit', 'Skip the post-update auto-commit prompt')
59
71
  .option('-y, --yes', 'Auto-confirm all prompts (CI / scripting). Implies --auto-stash.')
60
72
  .option('--auto-stash', 'When the working tree is dirty, stash automatically instead of prompting.')
73
+ .option('--reset', 'Nuclear option: rm -rf .framework/ + fresh install, preserving baldart.config.yml + .baldart/ + custom .claude/{agents,skills,commands}/. Requires clean working tree.')
74
+ .option('--i-know', 'Acknowledges --reset will wipe untracked/ignored files inside .framework/ (required to use --reset --yes).')
61
75
  .action(async (options) => {
62
76
  const updateCommand = require('../src/commands/update');
63
77
  await updateCommand(options);
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: baldart-update
3
- description: "Guidance for updating BALDART framework to the latest version in a consumer repo. Use when the user says /baldart-update, 'aggiorna baldart', 'aggiorna framework', 'update del framework', 'pull baldart latest', or wants to bring the framework up-to-date. Replicates all 5 native CLI decision points (preview diff, working tree stash, hooks drift, schema config drift, BALDART-managed auto-commit) as chat-side confirmations before launching `npx baldart update --yes` via Bash. For non-update drift, defers to `npx baldart` (smart doctor)."
3
+ description: "Guidance for updating BALDART framework to the latest version in a consumer repo. Use when the user says /baldart-update, 'aggiorna baldart', 'aggiorna framework', 'update del framework', 'pull baldart latest', or wants to bring the framework up-to-date. Replicates the native CLI's user-decision points (preview diff, working-tree stash) as chat-side confirmations, lets the CLI auto-resolve mechanical noise (hook backfill, subtree-merge commits, schema migration), and asserts post-flight that .framework/VERSION actually changed. For non-update drift, defers to `npx baldart` (smart doctor)."
4
4
  contamination_scan: skip
5
5
  ---
6
6
 
@@ -12,10 +12,10 @@ pull_request). When any of the numbers below changes against the actual
12
12
  sources, a warning is surfaced in the workflow run. The decision whether
13
13
  this skill needs an update is left to a human reviewer.
14
14
 
15
- update_js_prompts: 6
15
+ update_js_prompts: 7
16
16
  hook_registry_entries: 3
17
17
  config_template_top_level_keys: features,git,identity,lsp,paths,stack,tools,version
18
- last_verified: v3.21.2
18
+ last_verified: v3.26.0
19
19
  -->
20
20
 
21
21
 
@@ -122,15 +122,25 @@ for the protocol.
122
122
  how to proceed or aborts. Never silence a decision point because a
123
123
  probe failed.
124
124
 
125
- ## The 5 decision points the skill replicates
125
+ ## Decision points the skill still replicates (v3.26.0+)
126
+
127
+ Before v3.26.0 this skill chat-replicated five CLI decision points. As of
128
+ v3.26.0 the CLI itself silently auto-resolves three of them (hooks drift,
129
+ schema config drift, BALDART-managed auto-commit) when they don't involve
130
+ real user choices. The skill is now down to two prompts plus a mandatory
131
+ post-flight assert:
126
132
 
127
133
  | # | Native CLI prompt | Chat-side replication | Detect via |
128
134
  |---|------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
129
- | 1 | "Proceed with update?" | Show "Remote: N commit(s) ahead" + last N commit messages, ask "Procedo?" | `npx baldart version` (parse "Remote: …" + "Repository: <url>") if N > 0, `git fetch <url> main && git log HEAD..FETCH_HEAD --oneline -- .framework/` |
135
+ | 1 | "Proceed with update?" | Show "Remote: vX.Y.Z" + (if known) last commit messages, ask "Procedo?" | `npx baldart version` (parse `Remote:` line with tolerant matcher see Step 0) |
130
136
  | 2 | "Stash dirty working tree?" | List modified files, explain they will go into `baldart-pre-update-<timestamp>`, ask explicit confirmation | `git status --porcelain` in consumer root |
131
- | 3 | Hooks drift prompt | Compare `.claude/settings.json` entries vs `HOOK_REGISTRY`; if drift, describe what backfill will change | `cat .claude/settings.json` + read `.framework/src/utils/hooks.js` for `HOOK_REGISTRY` |
132
- | 4 | Schema config migration | Compare `baldart.config.yml` keys vs `.framework/framework/templates/baldart.config.template.yml`; if missing keys, list which + consequence | semantic diff key-by-key (NOT textual diff) |
133
- | 5 | Auto-commit BALDART-managed | Classify `git status --porcelain` paths as BALDART-managed vs user-owned by path-prefix, show classification, confirm commit of the managed subset | path-prefix matching on `.framework/`, `.claude/agents/`, `.claude/skills/`, `.claude/commands/`, `AGENTS.md`, `agents/` |
137
+
138
+ **Auto-resolved by CLI in v3.26.0+** (no chat replication needed):
139
+ - **Hooks drift**: missing hooks auto-registered silently; only command-level drift prompts (and only if interactive).
140
+ - **Schema config drift**: surfaces as a warning post-update; never blocks.
141
+ - **BALDART-managed auto-commit**: `--yes` commits silently with `chore(baldart):` subject.
142
+ - **Subtree-merge / chore divergence commits**: classified by the CLI; auto-resolved silently when `all-noise`, prompts only for `overlay-able` / `real-custom` / `mixed`.
143
+ - **CLI self-upgrade**: transparent relaunch via `npx baldart@latest` when global CLI is stale.
134
144
 
135
145
  > **IMPORTANT — do NOT use `git -C .framework fetch`.** `.framework/` is a git
136
146
  > subtree, not a separate repo: git commands inside it fall back to the consumer's
@@ -145,19 +155,44 @@ for the protocol.
145
155
  ### Step 0 — Pre-flight (read-only)
146
156
 
147
157
  ```bash
148
- # One call gives both: installed version, behind count, and the
149
- # BALDART repo URL. NO git operation inside .framework/ — that
158
+ # One call gives installed version, remote version, alignment status, and
159
+ # the BALDART repo URL. NO git operation inside .framework/ — that
150
160
  # directory is a git subtree, not a separate repo.
151
161
  npx baldart version
152
162
  ```
153
163
 
154
- Parse the output for:
155
-
156
- - `Installed: vX.Y.Z` current framework version in the consumer.
157
- - `Remote: N commit(s) ahead pull with …` number of commits behind upstream. If this line is absent or shows 0, the consumer is up-to-date.
158
- - `Repository: <url>` — the BALDART git URL (needed in Step 1).
159
-
160
- If `Remote:` is absent / shows 0 → tell the user "Already up-to-date — version vX.Y.Z" and STOP. Do not launch the CLI.
164
+ **Parser tollerante** — the output format changed in v3.26.0 (version-compare
165
+ authority instead of subtree-merge commit count). The skill must accept BOTH
166
+ the new and legacy formats so it works during the transition window where
167
+ the consumer has the new skill but an older global CLI.
168
+
169
+ Match the `Remote:` line in this order (first match wins):
170
+
171
+ | # | Pattern (regex) | Meaning |
172
+ |---|--------------------------------------------------------------|--------------------------------------------------------------------|
173
+ | 1 | `Remote:\s+v(\S+)\s+\(aligned\)` | NEW — aligned, save `remoteVersion` for post-flight |
174
+ | 2 | `Remote:\s+v(\S+)\s+(?:—\|--)\s+update available` | NEW — NOT aligned, save `remoteVersion` |
175
+ | 3 | `Remote:\s+(\d+)\s+commit\(s\)\s+ahead` | LEGACY — count > 0 means NOT aligned (subtree-merge noise possible)|
176
+ | 4 | `Remote:\s+up to date` | LEGACY — aligned |
177
+ | 5 | `Remote:\s+\(offline.*\)` | unknown — ASK the user how to proceed |
178
+
179
+ Always also capture:
180
+ - `Installed:\s+v(\S+)` → `installedVersion` (saved for post-flight assert).
181
+ - `CLI:\s+v\S+\s+→\s+v(\S+)\s+available` → if present, tell the user once:
182
+ "Il CLI globale è vecchio (v<old> → v<new>). L'update lo gestirà
183
+ auto-relanciando via `npx baldart@latest` — niente da fare."
184
+
185
+ **Decision after parsing**:
186
+
187
+ - Patterns 1 or 4 → "Already up-to-date — version v<installedVersion>". STOP.
188
+ Do not launch the CLI.
189
+ - Patterns 2 or 3 → continue with Step 1 (preview + update).
190
+ - Pattern 5 → ask the user: "Vuoi forzare un fetch e ritentare, o procedere
191
+ in modalità offline (l'update fallirà nel CLI)?". STOP if unclear.
192
+ - **No pattern matches** → the CLI output format is unknown. Tell the user:
193
+ "Il CLI installato globalmente non emette un format riconosciuto.
194
+ Aggiorna il CLI con `npm i -g baldart@latest` e ri-invoca /baldart-update."
195
+ STOP.
161
196
 
162
197
  If `.framework/` does not exist, `npx baldart version` will say "framework not installed" — STOP and instruct `npx baldart add`. Do not attempt to recover.
163
198
 
@@ -195,73 +230,72 @@ chat, explain:
195
230
  If the user refuses → STOP, instruct them to commit or stash manually
196
231
  and re-run `/baldart-update`.
197
232
 
198
- ### Step 3 — Replicate decision points #3 + #4 (hooks/schema drift)
233
+ ### Step 3 — Run the CLI
199
234
 
200
235
  ```bash
201
- # Hooks drift detection
202
- cat .claude/settings.json
203
- # Compare entries against HOOK_REGISTRY in .framework/src/utils/hooks.js
204
- # (the skill reads both and reports any expected entry missing
205
- # or any installed entry with a stale config)
206
-
207
- # Schema drift detection
208
- # Compare top-level keys in baldart.config.yml against
209
- # .framework/framework/templates/baldart.config.template.yml
210
- ```
211
-
212
- For each drift detected, describe what `update.js` would do:
213
-
214
- - Hooks drift → "il CLI registrerà le hook mancanti in `settings.json`
215
- (entry: `baldart-<hook-name>`). Procedo?"
216
- - Schema drift → "il CLI segnalerà che mancano le chiavi `X.Y` da
217
- `baldart.config.yml` e suggerirà di rilanciare `npx baldart configure`
218
- dopo l'update. Procedo (l'update non bloccherà, ma è bene saperlo)?"
219
-
220
- If a probe fails (e.g. `settings.json` malformed), ask the user how to
221
- proceed — never silently assume "no drift".
222
-
223
- ### Step 4 — Replicate decision point #5 (auto-commit classification)
224
-
225
- ```bash
226
- git status --porcelain
236
+ npx baldart update --yes
227
237
  ```
228
238
 
229
- Classify each path:
230
-
231
- - **BALDART-managed**: starts with `.framework/`, `.claude/agents/`,
232
- `.claude/skills/`, `.claude/commands/`, `AGENTS.md`, `agents/`.
233
- - **User-owned**: everything else.
234
-
235
- Show the user the classification:
236
-
237
- > *"Dopo il pull, il CLI auto-committa SOLO i file BALDART-managed che
238
- > risultano modificati dal reconcile (es. symlink ricreati, agent/command
239
- > generati). I tuoi file user-owned non vengono toccati. Procedo?"*
239
+ **Use the Bash tool with `timeout: 600000`** (10 minutes). Capture stdout
240
+ and stderr — both are needed for Step 4.
240
241
 
241
- If no managed files would be modified, skip the prompt silently.
242
+ Do NOT pass `--auto-stash` (redundant with `--yes`).
242
243
 
243
- ### Step 5 Run the CLI
244
+ **What the CLI auto-resolves without prompting** (since v3.26.0):
245
+
246
+ - **Hooks drift**: missing hooks are auto-registered silently. Hooks with
247
+ modified commands stay user-customised (warning surfaced in `--yes` mode,
248
+ interactive prompt otherwise).
249
+ - **Schema config drift**: new config keys are reported as a warning; the
250
+ user is told to run `npx baldart configure` later. The update never
251
+ blocks on schema drift.
252
+ - **BALDART-managed auto-commit**: in `--yes` mode the CLI commits any
253
+ files it touched during the reconcile with `chore(baldart): post-update
254
+ reconcile to vX.Y.Z`. User-owned files are never staged.
255
+ - **Subtree-merge / chore divergence commits**: when the consumer has
256
+ local commits that are just `git subtree pull` plumbing or CLI-generated
257
+ `[CHORE]` commits, the CLI auto-resolves silently. Real user-custom
258
+ commits ABORT in `--yes` mode (the user must re-run without `--yes` to
259
+ choose).
260
+ - **CLI self-upgrade**: if the global CLI is older than npm latest, the
261
+ update transparently relaunches itself via `npx baldart@latest update
262
+ --yes`. Loop-guarded by `BALDART_RELAUNCHED=1`.
263
+
264
+ The skill no longer chat-replicates these decision points — they are
265
+ either silent (no user choice involved) or only triggered by genuine
266
+ user content, in which case the CLI surfaces the prompt directly.
267
+
268
+ ### Step 4 — Post-flight assert + Report
269
+
270
+ **Post-flight assert (MANDATORY — safety net against silent CLI bugs)**:
244
271
 
245
272
  ```bash
246
- npx baldart update --yes
273
+ # Read the new installed version
274
+ cat .framework/VERSION
247
275
  ```
248
276
 
249
- **Use the Bash tool with `timeout: 600000`** (10 minutes). Capture stdout
250
- and stderr — both are needed for Step 6.
251
-
252
- Do NOT pass `--auto-stash` (redundant with `--yes`).
277
+ Compare against `installedVersion_before` saved in Step 0:
253
278
 
254
- ### Step 6 Report
279
+ - **If `before === after` AND stdout DOES NOT contain "Already up to date"** →
280
+ the CLI exited 0 but the framework didn't actually update. **FAIL LOUD**:
281
+ ```
282
+ ✗ Update CLI exited 0 but .framework/VERSION did not change.
283
+ Before: v<before> | After: v<after>
284
+ This is a CLI bug — please report the full stdout/stderr above.
285
+ The repo is in an inconsistent state; do NOT continue assuming success.
286
+ ```
287
+ Do NOT report success. Do NOT mark the task complete.
288
+ - **If stdout contains "Already up to date" but Step 0 had a `remoteVersion`
289
+ different from `installedVersion`** → same FAIL LOUD (this is the v3.24.x
290
+ bug regression check — Fix 1 of v3.26.0 must not regress).
291
+ - Otherwise → success path.
255
292
 
256
- Extract the post-update facts and surface them:
293
+ Then extract the post-update facts and surface them:
257
294
 
258
295
  ```bash
259
296
  # Backup tag (most recent baldart-pre-update-* tag)
260
297
  git tag -l 'baldart-pre-update-*' --sort=-creatordate | head -1
261
298
 
262
- # New installed version
263
- cat .framework/VERSION
264
-
265
299
  # Stash-pop conflicts (if any)
266
300
  # Grep stdout/stderr for: CONFLICT, "stash pop failed", "unmerged paths"
267
301
  # If matches found, list the conflicted paths:
@@ -270,14 +304,18 @@ git status --porcelain | grep '^UU'
270
304
 
271
305
  Report to the user, in order:
272
306
 
273
- 1. **Version**: `vX.Y.Z → vA.B.C` (delta).
307
+ 1. **Version**: `vX.Y.Z → vA.B.C` (delta — both from `cat .framework/VERSION`
308
+ pre and post).
274
309
  2. **Backup tag**: the `baldart-pre-update-<timestamp>` ref, with the
275
310
  rollback command: `git reset --hard <tag>` (only if needed).
276
- 3. **Hooks reconciled**: any hook backfilled.
277
- 4. **Schema notes**: any missing key still flagged suggest
311
+ 3. **CLI self-upgrade**: if stdout mentions "Auto-relaunching via npx
312
+ baldart@…", surface it once so the user knows the CLI bumped too.
313
+ 4. **Hooks reconciled**: any hook backfilled (parse "Auto-registered N
314
+ missing hook(s)" or per-line "Registered hook" from stdout).
315
+ 5. **Schema notes**: any missing key still flagged → suggest
278
316
  `npx baldart configure`.
279
- 5. **Stash-pop status**: clean / conflicts present (with file list).
280
- 6. **Suggested next step**: if schema drift residual or other non-update
317
+ 6. **Stash-pop status**: clean / conflicts present (with file list).
318
+ 7. **Suggested next step**: if schema drift residual or other non-update
281
319
  doctor checks fired, suggest `npx baldart` (smart doctor).
282
320
 
283
321
  ## Failure modes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baldart",
3
- "version": "3.25.0",
3
+ "version": "3.26.0",
4
4
  "description": "Claude Agent Framework - Reusable framework for coordinating AI agents and humans in software projects",
5
5
  "bin": {
6
6
  "baldart": "./bin/baldart.js"
@@ -117,15 +117,22 @@ function overlayDrift(cwd, frameworkVersion) {
117
117
  }
118
118
 
119
119
  async function describeRemote(git, repo, offline) {
120
- // Best-effort remote drift detection. Returns { ahead, behind, fetched }.
121
- if (offline) return { fetched: false };
122
- try { await git.fetch(repo); }
123
- catch (_) { return { fetched: false }; }
124
- try {
125
- const out = await git.git.raw(['rev-list', '--left-right', '--count', 'HEAD...FETCH_HEAD']);
126
- const [ahead, behind] = out.trim().split('\t').map(Number);
127
- return { ahead, behind, fetched: true };
128
- } catch (_) { return { fetched: false }; }
120
+ // SSOT (v3.25.0+): version-compare authority + diagnostic counts.
121
+ // The legacy { ahead, behind, fetched } shape is preserved for downstream
122
+ // callers that read it; the new authoritative fields are `isAligned`,
123
+ // `installedVersion`, `remoteVersion`.
124
+ if (offline) return { fetched: false, isAligned: false, installedVersion: 'unknown', remoteVersion: 'unknown', aheadScoped: 0 };
125
+ const status = await git.getUpdateStatus(repo);
126
+ return {
127
+ fetched: status.fetched,
128
+ ahead: status.commitCount.ahead,
129
+ behind: status.commitCount.behind,
130
+ isAligned: status.isAligned,
131
+ installedVersion: status.installedVersion,
132
+ remoteVersion: status.remoteVersion,
133
+ aheadScoped: status.aheadScoped,
134
+ hasFetchHead: status.hasFetchHead,
135
+ };
129
136
  }
130
137
 
131
138
  async function localFrameworkChanges(git) {
@@ -137,11 +144,12 @@ async function localFrameworkChanges(git) {
137
144
  } catch (_) { return 0; }
138
145
  }
139
146
 
140
- async function commitsAheadOfRemote(git) {
141
- try {
142
- const out = await git.git.raw(['rev-list', '--count', 'FETCH_HEAD..HEAD', '--', FRAMEWORK_DIR]);
143
- return Number(out.trim()) || 0;
144
- } catch (_) { return 0; }
147
+ async function commitsAheadOfRemote(git, remote) {
148
+ // Pre-v3.25.0 this re-ran the git query; now we read from the SSOT
149
+ // result populated by describeRemote(). Kept as a helper for readability
150
+ // in detectState().
151
+ if (remote && typeof remote.aheadScoped === 'number') return remote.aheadScoped;
152
+ return 0;
145
153
  }
146
154
 
147
155
  async function detectState(cwd, opts = {}) {
@@ -206,7 +214,7 @@ async function detectState(cwd, opts = {}) {
206
214
  }
207
215
 
208
216
  state.remote = await describeRemote(git, ledger.framework_repo || REPO_DEFAULT, !!opts.offline);
209
- state.commitsAhead = await commitsAheadOfRemote(git);
217
+ state.commitsAhead = await commitsAheadOfRemote(git, state.remote);
210
218
  state.workingTreeDirty = await localFrameworkChanges(git);
211
219
 
212
220
  state.overlays = countOverlays(cwd);
@@ -577,14 +585,24 @@ function planActions(state) {
577
585
  });
578
586
  }
579
587
 
580
- const remoteAhead = state.remote.fetched && state.remote.behind > 0;
581
- const hasLocalWork = state.workingTreeDirty > 0 || state.commitsAhead > 0;
588
+ // v3.25.0+: drift detection is authoritative via VERSION compare (isAligned).
589
+ // The HEAD...FETCH_HEAD commit count is subtree-merge noise and never reaches
590
+ // 0, so we MUST NOT use it as the "needs update" signal.
591
+ const remoteAhead = state.remote.fetched && state.remote.isAligned === false;
592
+ // Local work detection: working-tree dirty is real; commitsAhead (aheadScoped)
593
+ // includes subtree-merge noise — only count it when NOT aligned (i.e. there's
594
+ // a real divergence to investigate). C2 adds classifier to filter noise.
595
+ const hasLocalWork = state.workingTreeDirty > 0 ||
596
+ (state.commitsAhead > 0 && state.remote.fetched && state.remote.isAligned === false);
582
597
 
583
598
  if (remoteAhead) {
599
+ const fromTo = (state.remote.installedVersion && state.remote.remoteVersion)
600
+ ? `v${state.remote.installedVersion} → v${state.remote.remoteVersion}`
601
+ : 'update available';
584
602
  actions.push({
585
603
  key: 'update',
586
- label: `Pull ${state.remote.behind} commit(s) from upstream`,
587
- why: 'Remote framework is ahead of your local copy. Updating first keeps your contributions on a fresh base.',
604
+ label: `Update framework (${fromTo})`,
605
+ why: 'Remote framework version differs from local. Updating first keeps your contributions on a fresh base.',
588
606
  autoOk: true, // update has its own internal "Proceed?" prompt + pre-flight stash
589
607
  run: () => require('./update')(),
590
608
  });
@@ -596,7 +614,7 @@ function planActions(state) {
596
614
  label: 'Push local framework improvements upstream',
597
615
  why: state.workingTreeDirty
598
616
  ? `${state.workingTreeDirty} uncommitted file(s) in .framework/ — commit them through \`baldart push\`.`
599
- : `${state.commitsAhead} commit(s) on .framework/ not yet pushed.`,
617
+ : `${state.commitsAhead} commit(s) on .framework/ not yet pushed (may include subtree-merge noise; \`baldart push\` will classify).`,
600
618
  autoOk: false, // push writes to remote and asks for version classification — keep explicit intent
601
619
  run: () => require('./push')(),
602
620
  });
@@ -685,25 +703,39 @@ function renderDiagnostic(state) {
685
703
  }
686
704
 
687
705
  if (state.remote.fetched) {
688
- const behind = state.remote.behind || 0;
689
- console.log(statusLine(
690
- 'Remote',
691
- behind > 0 ? `${behind} commit(s) ahead — update available` : 'up to date',
692
- behind > 0 ? 'warn' : 'ok'
693
- ));
706
+ // v3.25.0+: messaging based on isAligned (version-compare), not on
707
+ // commit count which is structurally noisy on subtree pulls.
708
+ if (state.remote.isAligned) {
709
+ console.log(statusLine(
710
+ 'Remote',
711
+ `v${state.remote.remoteVersion} (aligned)`,
712
+ 'ok'
713
+ ));
714
+ } else if (state.remote.remoteVersion && state.remote.remoteVersion !== 'unknown') {
715
+ console.log(statusLine(
716
+ 'Remote',
717
+ `v${state.remote.remoteVersion} — update available (installed v${state.remote.installedVersion})`,
718
+ 'warn'
719
+ ));
720
+ } else {
721
+ console.log(statusLine('Remote', 'upstream VERSION unreadable', 'warn'));
722
+ }
694
723
  } else {
695
724
  console.log(statusLine('Remote', 'offline / not fetched', 'warn'));
696
725
  }
697
726
 
698
- console.log(statusLine(
699
- 'Local changes',
700
- state.workingTreeDirty > 0
701
- ? `${state.workingTreeDirty} file(s) in .framework/`
702
- : state.commitsAhead > 0
703
- ? `${state.commitsAhead} unpushed commit(s)`
704
- : 'clean',
705
- (state.workingTreeDirty + state.commitsAhead) > 0 ? 'warn' : 'ok'
706
- ));
727
+ // Local changes: working-tree dirty is real signal. Commit count is shown
728
+ // ONLY if not aligned (otherwise it's subtree-merge noise — see Fix 2 for
729
+ // the classifier that further filters this).
730
+ const showCommitsAhead = state.commitsAhead > 0 &&
731
+ state.remote.fetched && state.remote.isAligned === false;
732
+ const localStatusText = state.workingTreeDirty > 0
733
+ ? `${state.workingTreeDirty} file(s) in .framework/`
734
+ : showCommitsAhead
735
+ ? `${state.commitsAhead} unpushed commit(s)`
736
+ : 'clean';
737
+ const localSeverity = (state.workingTreeDirty > 0 || showCommitsAhead) ? 'warn' : 'ok';
738
+ console.log(statusLine('Local changes', localStatusText, localSeverity));
707
739
 
708
740
  console.log(statusLine(
709
741
  'Overlays',