baldart 5.3.1 → 5.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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,25 @@ 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
|
+
## [5.3.2] - 2026-07-03
|
|
9
|
+
|
|
10
|
+
**AGENTS.md primitive 1.7.4 — commit-format MUST scoped to card-bound work.**
|
|
11
|
+
The commit rule was unconditional ("MUST use commit format `[FEAT-XXXX]
|
|
12
|
+
description`"), so a Codex session doing card-less chore work on a consumer
|
|
13
|
+
(mayo) fabricated the missing datum: it grabbed the last card ID committed in
|
|
14
|
+
`git log` (assuming correlation) and typed the commit `feat`. Same failure
|
|
15
|
+
family as 5.3.1/1.7.3 — an unscoped constraint pushes the model to invent data
|
|
16
|
+
to satisfy it — and it contradicted § Change Tiers ("Light work → no backlog
|
|
17
|
+
card").
|
|
18
|
+
|
|
19
|
+
- **Primitive `AGENTS.md` 1.7.4**: the card reference is scoped to commits that
|
|
20
|
+
implement THAT card (picked, `IN_PROGRESS`, branch carries its ID); card-less
|
|
21
|
+
work uses plain `<type>: description`; copying a card ID from `git log` / the
|
|
22
|
+
previous commit "for consistency" is explicitly forbidden; the type must
|
|
23
|
+
describe THIS change's nature (`chore:` for a chore — never `feat` unless the
|
|
24
|
+
commit adds a feature), never inherited from neighboring commits.
|
|
25
|
+
- Codex parity: portable (the primitive is the cross-tool SSOT).
|
|
26
|
+
|
|
8
27
|
## [5.3.1] - 2026-07-03
|
|
9
28
|
|
|
10
29
|
**AGENTS.md primitive 1.7.3 — anti-fabricated-policy guard on the grounding spawn.**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.2
|
|
@@ -4,6 +4,21 @@ 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.7.4 — 2026-07-03
|
|
8
|
+
|
|
9
|
+
- **Commit-format MUST scoped to card-bound work — no borrowed card IDs, no inherited
|
|
10
|
+
types.** The rule was unconditional ("MUST use commit format `[FEAT-XXXX] description`"),
|
|
11
|
+
so a Codex session doing card-less chore work fabricated the missing datum: it grabbed the
|
|
12
|
+
last card ID from `git log` (assuming correlation) and typed the commit `feat`. Same
|
|
13
|
+
failure family as 1.7.3 (an unscoped constraint → the model invents data to satisfy it),
|
|
14
|
+
and it contradicted § Change Tiers, which already says Light work carries "no backlog
|
|
15
|
+
card". The MUST now scopes the card reference to commits that implement THAT card (picked,
|
|
16
|
+
`IN_PROGRESS`, branch carries its ID), mandates plain `<type>: description` for card-less
|
|
17
|
+
work, explicitly forbids copying a card ID from `git log` / the previous commit "for
|
|
18
|
+
consistency", and requires the type to describe THIS change's nature (`chore:` for a
|
|
19
|
+
chore — never `feat` unless the commit adds a feature), never inherited from neighboring
|
|
20
|
+
commits. Portable (Claude + Codex).
|
|
21
|
+
|
|
7
22
|
## 1.7.3 — 2026-07-03
|
|
8
23
|
|
|
9
24
|
- **Anti-fabricated-policy guard: no runtime policy gates the `codebase-architect` spawn.**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!-- baldart-primitive: name=AGENTS primitive_version=1.7.
|
|
1
|
+
<!-- baldart-primitive: name=AGENTS primitive_version=1.7.4
|
|
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,
|
|
@@ -75,7 +75,14 @@ mechanics — this file remains the single source of truth for the protocol.
|
|
|
75
75
|
data-model update, new external dependency without docs, API-contract change without an
|
|
76
76
|
API-reference update.
|
|
77
77
|
- MUST keep docs and code in sync — a code change without the matching doc update is invalid.
|
|
78
|
-
- MUST use commit format `{{ git.commit_format }}
|
|
78
|
+
- MUST use commit format `{{ git.commit_format }}` for **card-bound work only** — a commit
|
|
79
|
+
references a card ONLY when it implements THAT card (the card is in scope: picked,
|
|
80
|
+
`IN_PROGRESS`, branch carries its ID). Work with no card in scope (chore / fix / docs /
|
|
81
|
+
maintenance outside the backlog) gets **NO card reference** — NEVER copy a card ID from
|
|
82
|
+
`git log` or the previous commit "for consistency"; use plain `<type>: description`
|
|
83
|
+
instead. The type/verb MUST describe THIS change's nature (a chore is `chore:`, a fix is
|
|
84
|
+
`fix:` — never `feat` unless the commit adds a feature), never inherited from neighboring
|
|
85
|
+
commits. Small, traceable commits.
|
|
79
86
|
- MUST NOT commit with failing lint/type checks. Full build only before opening a PR.
|
|
80
87
|
- MUST pre-sync (`git fetch`, clean status, confirm branch, `--ff-only`) and NEVER push
|
|
81
88
|
directly to `{{ git.protected_branch }}` — the protected branch reaches its state only
|