baldart 4.86.0 → 4.87.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,17 @@ 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
+ ## [4.87.0] - 2026-07-01
9
+
10
+ **Plan-review gate promoted to the cross-tool SSOT (AGENTS.md primitive `1.3.0`).** The "have the plan reviewed by `plan-auditor` + `doc-reviewer` before presenting it" rule lived only in the `CLAUDE.md` stub's Plan Mode — so Codex never ran it. Now that both agents exist on Codex (transpiled to `.codex/agents/`), the tool-agnostic principle is promoted into `AGENTS.md`: **MUST have any non-trivial plan reviewed by `plan-auditor` + `doc-reviewer` (in parallel), fold in their feedback, note the review gate in the plan, and present the ALREADY-reviewed plan — never a raw one.** The Claude-only `EnterPlanMode`/`ExitPlanMode` mechanics stay in `CLAUDE.md`; `AGENTS.md` carries the principle so both tools honor it.
11
+
12
+ **MINOR** — cross-tool enrichment of the shipped skeleton; no config key, no CLI/layout change, contamination-clean. Consumers pick it up on the next `npx baldart update`. `primitive_version` (AGENTS) 1.2.0 → 1.3.0; CLAUDE stub unchanged (1.1.0).
13
+
14
+ ### Changed
15
+
16
+ - **`framework/templates/primitives/AGENTS.md`** — added the plan-review MUST after the `codebase-architect` MUST. `primitive_version` → 1.3.0.
17
+ - **`framework/templates/primitives/AGENTS.CHANGELOG.md`** — `1.3.0` entry.
18
+
8
19
  ## [4.86.0] - 2026-07-01
9
20
 
10
21
  **AGENTS.md primitive regains the universal working-discipline rules (primitive `1.2.0`).** The lean v4.83.0 rewrite of the skeleton dropped a handful of everyday-habit MUSTs to stay short — but those are exactly the "conventions an agent can't infer and gets wrong" the file exists to carry. Restored as compact, stack-agnostic rules in the `AGENTS.md` skeleton (the cross-tool SSOT):
package/VERSION CHANGED
@@ -1 +1 @@
1
- 4.86.0
1
+ 4.87.0
@@ -4,6 +4,15 @@ Formato: [Keep a Changelog](https://keepachangelog.com/) · [SemVer](https://sem
4
4
  Questo è il changelog INTERNO dello skeleton spedito (`primitive_version`), separato dal
5
5
  file `AGENTS.md` generato nel consumer e indipendente dal `VERSION` del framework.
6
6
 
7
+ ## 1.3.0 — 2026-07-01
8
+
9
+ - **Plan-review gate promoted to the cross-tool SSOT**: MUST have any non-trivial plan
10
+ reviewed by `plan-auditor` + `doc-reviewer` (in parallel) and fold in their feedback
11
+ BEFORE presenting it for approval — present the already-reviewed plan, never a raw one.
12
+ Was Claude-only (CLAUDE.md Plan Mode, before `ExitPlanMode`); now in AGENTS.md so Codex
13
+ runs it too (both agents exist on Codex via the transpiler). The `EnterPlanMode`/
14
+ `ExitPlanMode` mechanics stay in CLAUDE.md; AGENTS.md carries the tool-agnostic principle.
15
+
7
16
  ## 1.2.0 — 2026-07-01
8
17
 
9
18
  - Restored the universal **working-discipline** rules the lean v1.0.0 rewrite had dropped
@@ -1,4 +1,4 @@
1
- <!-- baldart-primitive: name=AGENTS primitive_version=1.2.0
1
+ <!-- baldart-primitive: name=AGENTS primitive_version=1.3.0
2
2
  This is the SHIPPED SKELETON. The writer (src/utils/root-primitives.js) strips
3
3
  this banner, resolves every {{ slot }} / {{> partial }} / {{#flag}} from
4
4
  baldart.config.yml (+ package.json/README), merges .baldart/overlays/AGENTS.md,
@@ -28,6 +28,10 @@ mechanics — this file remains the single source of truth for the protocol.
28
28
  (Claude Code: Task tool `subagent_type: codebase-architect`; Codex: the custom agent by
29
29
  name at `.codex/agents/codebase-architect.toml`). Only if NEITHER mechanism exists,
30
30
  degrade explicitly to inline retrieval (code-graph → LSP → Grep) and SAY SO.
31
+ - MUST have any non-trivial plan reviewed BEFORE presenting it for approval — run
32
+ `plan-auditor` + `doc-reviewer` (in parallel), incorporate their feedback, and note in the
33
+ plan that the review gate was honored. Present the ALREADY-reviewed plan, never a raw one.
34
+ (Claude Code enforces this inside plan mode, before `ExitPlanMode` — see `CLAUDE.md`.)
31
35
  - MUST delegate implementation to the domain agent — plan and delegate, do NOT write
32
36
  substantial code inline: **code / logic / tests → `coder`**; **UI (components, pages,
33
37
  styling, visual output) → `ui-expert`**. Same dual-tool invocation as `codebase-architect`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baldart",
3
- "version": "4.86.0",
3
+ "version": "4.87.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"