mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
* feat: add Truth Sync intent checklist * feat: add canonical agent workflow package Add the .truthmark/agent canonical workflow package, convert duplicated host workflow bodies into adapter/expanded-adapter surfaces, and validate canonical/adapter freshness in Truthmark check. Refresh generated surfaces and package metadata for Truthmark 2.3.0, with OpenSpec tasks completed and release notes added. * fix: preserve native workflow skill packages * docs: record native skill package decision * fix: drop unused agent workflow package * chore: remove implemented OpenSpec docs * chore: release workflow fixes as 2.2.2 * fix: remove agent-visible version markers * fix: drop generated surface version markers * feat: capture decision context in Truth Sync --------- Co-authored-by: MerlinH <merlinh221@gmail.com>
101 lines
3.0 KiB
Markdown
101 lines
3.0 KiB
Markdown
---
|
|
status: active
|
|
doc_type: standard
|
|
last_reviewed: 2026-05-16
|
|
source_of_truth:
|
|
- versioning.md
|
|
- pre-completion-checklist.md
|
|
---
|
|
|
|
# Change Notes
|
|
|
|
## Trigger
|
|
|
|
Use this standard when a change needs PR text, release text, or a package version decision.
|
|
|
|
Required triggers:
|
|
|
|
- `package.json` version changes
|
|
- root package entries in `package-lock.json` change because the package version changed
|
|
- the user asks for PR, release, changelog, or handoff text
|
|
- the working change alters published package behavior
|
|
|
|
Optional trigger:
|
|
|
|
- internal-only maintenance that would benefit from a reusable PR summary
|
|
|
|
## Folder
|
|
|
|
Write change notes under `changes/`.
|
|
|
|
Use one file per cohesive working change:
|
|
|
|
```text
|
|
changes/YYYY-MM-DD-short-slug.md
|
|
```
|
|
|
|
Use dates from the current local session date. Keep slugs short, lowercase, and grep-friendly.
|
|
|
|
## Required Shape
|
|
|
|
Each change note must use this structure when `Version action` is `none`:
|
|
|
|
```markdown
|
|
# Short Change Title
|
|
|
|
Version action: none
|
|
|
|
## PR Summary
|
|
|
|
- Concise maintainer-facing summary.
|
|
|
|
## Release Note
|
|
|
|
- User-facing release text, or `None; internal-only change.`
|
|
|
|
## Verification
|
|
|
|
- Command run, or skipped check with reason.
|
|
```
|
|
|
|
Each change note must use this structure when `Version action` is `patch`, `minor`, or `major`:
|
|
|
|
```markdown
|
|
# Short Change Title
|
|
|
|
Previous version: MAJOR.MINOR.PATCH
|
|
New version: MAJOR.MINOR.PATCH
|
|
Diff basis: release/MAJOR.MINOR.PATCH..HEAD plus working tree
|
|
Version action: patch|minor|major
|
|
SemVer rationale: One sentence explaining why the pending release payload requires this bump.
|
|
|
|
Release payload:
|
|
- Concise maintainer-facing summary of an actual release-worthy change.
|
|
|
|
User-facing release text:
|
|
- User-visible release note.
|
|
|
|
Verification:
|
|
- Command run, or skipped check with reason.
|
|
```
|
|
|
|
## Rules
|
|
|
|
- `Version action` must match [versioning.md](versioning.md).
|
|
- If `Version action` is `patch`, `minor`, or `major`, the package version must change in the same working change.
|
|
- If the package version changes, a matching change note for the new version is required because Truthmark releases whenever the package version changes.
|
|
- Versioned change notes must describe all release-worthy pending changes since the previous release tag, not only the package metadata edit or generated-surface refresh.
|
|
- Versioned change notes must name the previous version, new version, diff basis, SemVer rationale, release payload, user-facing release text, and verification.
|
|
- Verification entries should report final useful checks only; do not include red-test scaffolding, agent mistakes, or process chatter in release-facing change notes.
|
|
- Internal-only repository standards may use `Version action: none`.
|
|
- Release notes describe published package behavior, not private repo maintenance.
|
|
- Keep notes compact; they are source material for PR and release descriptions, not canonical product truth.
|
|
|
|
## Agent Output
|
|
|
|
When reporting change-note work, state only:
|
|
|
|
- change note path
|
|
- version action
|
|
- whether release text is present or intentionally `None`
|