dorfl 0.6.0 → 0.7.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.
@@ -201,6 +201,16 @@ commit. Before you stop, delete such stray untracked files, or add them to
201
201
  untracked file or editing .gitignore is producing clean WORK, like writing source
202
202
  — the "no git" rule above (no stage/commit/push/move) still holds.
203
203
 
204
+ This repo may declare STANDING per-change conventions — things EVERY change must do
205
+ regardless of the task (e.g. add a release/changelog entry, regenerate a file,
206
+ update a manifest). They live in the repo's conventions doc: read CONTEXT.md (its
207
+ `## Conventions` section) and, if present, AGENTS.md, and satisfy any that apply to
208
+ your change. Several are ENFORCED by the `verify` gate, so skipping one makes the
209
+ gate go red at LAND time — a bounce — even though your task's own code is correct.
210
+ The classic case: a change that touched a package but added no changeset entry
211
+ (the gate reports the changed package has no changeset). When in doubt, follow the
212
+ conventions doc; it is the repo's source of truth for these standing rules.
213
+
204
214
  When the acceptance criteria are met and the repo's build/test/format checks are
205
215
  green, STOP and report what you did. The runner handles the durable `git mv` of the
206
216
  body tasks/ready/ -> work/tasks/done/, the completion commit, the lock release, and
@@ -201,6 +201,16 @@ commit. Before you stop, delete such stray untracked files, or add them to
201
201
  untracked file or editing .gitignore is producing clean WORK, like writing source
202
202
  — the "no git" rule above (no stage/commit/push/move) still holds.
203
203
 
204
+ This repo may declare STANDING per-change conventions — things EVERY change must do
205
+ regardless of the task (e.g. add a release/changelog entry, regenerate a file,
206
+ update a manifest). They live in the repo's conventions doc: read CONTEXT.md (its
207
+ `## Conventions` section) and, if present, AGENTS.md, and satisfy any that apply to
208
+ your change. Several are ENFORCED by the `verify` gate, so skipping one makes the
209
+ gate go red at LAND time — a bounce — even though your task's own code is correct.
210
+ The classic case: a change that touched a package but added no changeset entry
211
+ (the gate reports the changed package has no changeset). When in doubt, follow the
212
+ conventions doc; it is the repo's source of truth for these standing rules.
213
+
204
214
  When the acceptance criteria are met and the repo's build/test/format checks are
205
215
  green, STOP and report what you did. The runner handles the durable `git mv` of the
206
216
  body tasks/ready/ -> work/tasks/done/, the completion commit, the lock release, and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dorfl",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/wighawag/dorfl.git",