wowbagger 0.1.0-alpha.1 → 0.1.0-alpha.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 +33 -0
- package/README.md +20 -9
- package/docs/mutation-contract.md +1036 -0
- package/docs/work-claim-contract.md +599 -0
- package/package.json +5 -2
- package/scripts/migrate-schema-2.js +7 -0
- package/skills/wowbagger/SKILL.md +27 -13
- package/src/claim-journal.js +2 -2
- package/src/claim-publication.js +29 -3
- package/src/cli.js +46 -5
- package/src/git-reconciliation.js +10 -6
- package/src/ledger.js +1 -0
- package/src/mutation.js +1 -1
- package/src/schema-migration.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,39 @@ consolidation. The first tagged release inherits this file.
|
|
|
7
7
|
|
|
8
8
|
## Unreleased
|
|
9
9
|
|
|
10
|
+
## 0.1.0-alpha.2 - 2026-08-12
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- `claim-verify` now reports `git_finalized` and `git_commit` for each successful
|
|
15
|
+
claimed publication. Reconciliation logs stay inside the configured ledger,
|
|
16
|
+
including repository-root ledgers. Items 55-57.
|
|
17
|
+
- A new empty ledger now starts on schema version 2. Existing non-empty
|
|
18
|
+
schema-version-1 ledgers remain compatible until migration. Item 54.
|
|
19
|
+
- The installed skill now identifies the active claim as the work-in-flight
|
|
20
|
+
signal while the item remains in `backlog`. Item 58.
|
|
21
|
+
- The npm package now ships the mutation and work-claim contract documents that
|
|
22
|
+
the installed skill references. Item 59.
|
|
23
|
+
- The npm package now ships the documented schema-version-2 migration
|
|
24
|
+
entrypoint for package-only consumers. Item 60.
|
|
25
|
+
- The installed work-claim contract now distinguishes durable reconciliation
|
|
26
|
+
state from per-publication Git finalization. Item 61.
|
|
27
|
+
|
|
28
|
+
- The Claude Code plugin manifest and marketplace metadata now use the same
|
|
29
|
+
distribution version as `package.json`. The packaging gate rejects release
|
|
30
|
+
identity drift before npm, Git, or marketplace publication. Item 48.
|
|
31
|
+
- Capability help now distinguishes the core's unbound default claim profile
|
|
32
|
+
from one provisioned ledger's work-claim profile. It names
|
|
33
|
+
`contract_version` as the core version and
|
|
34
|
+
`operations.work_claim.api_version` as the work-claim API version. Items 47
|
|
35
|
+
and 51.
|
|
36
|
+
- `provision --help`, README, and the shipped skill now expose the accessible
|
|
37
|
+
Git-checkout prerequisite and the pre-provision
|
|
38
|
+
`claim capabilities --ledger <dir> --json` gate. Item 50.
|
|
39
|
+
- The isolated consumer dogfood runbook now creates or selects the disposable
|
|
40
|
+
worktree before agent launch and requires a session-root Git preflight before
|
|
41
|
+
installation or ledger mutation. Item 52.
|
|
42
|
+
|
|
10
43
|
## 0.1.0-alpha.1 - 2026-08-11
|
|
11
44
|
|
|
12
45
|
### Behaviour changes
|
package/README.md
CHANGED
|
@@ -51,6 +51,11 @@ mismatch is detectable instead of silent: it reads `contract_version` from
|
|
|
51
51
|
not support. It will not fall back to editing ledger files by hand, because that
|
|
52
52
|
would bypass validation and atomic publication.
|
|
53
53
|
|
|
54
|
+
For an isolated consumer pilot, create or select the disposable worktree before
|
|
55
|
+
the agent starts. Then launch a new session with that worktree as its project
|
|
56
|
+
root. Follow the [isolated dogfood pilot runbook](docs/isolated-dogfood-pilot.md);
|
|
57
|
+
do not try to drive a sibling worktree from an already-running agent session.
|
|
58
|
+
|
|
54
59
|
To use the core directly from a clone instead, see
|
|
55
60
|
[Core commands](#core-commands).
|
|
56
61
|
|
|
@@ -88,7 +93,10 @@ whether a core supports your request.
|
|
|
88
93
|
with release evidence). Do not assume a platform is officially supported just
|
|
89
94
|
because the CLI starts.
|
|
90
95
|
- **Other tooling:** `wowbagger` manages a Git-tracked Markdown ledger. It
|
|
91
|
-
needs
|
|
96
|
+
needs an accessible Git checkout for work-claim and namespace operations.
|
|
97
|
+
Before `provision`, run
|
|
98
|
+
`wowbagger claim capabilities --ledger <dir> --json` and require
|
|
99
|
+
`result.operations.work_claim.supported: true`.
|
|
92
100
|
|
|
93
101
|
### Security
|
|
94
102
|
|
|
@@ -141,9 +149,9 @@ Then verify, exactly as on first install:
|
|
|
141
149
|
wowbagger capabilities --json
|
|
142
150
|
```
|
|
143
151
|
|
|
144
|
-
`contract_version` is the compatibility gate. The plugin
|
|
145
|
-
core that reports a version they do not support; if you
|
|
146
|
-
core directly, do the same rather than guessing.
|
|
152
|
+
The top-level `contract_version` is the core compatibility gate. The plugin
|
|
153
|
+
and adapter refuse a core that reports a version they do not support; if you
|
|
154
|
+
automate against the core directly, do the same rather than guessing.
|
|
147
155
|
|
|
148
156
|
The shipped adapter selects only adapter contract version 2 and requires core
|
|
149
157
|
contract version 2. A v1-only consumer receives
|
|
@@ -327,11 +335,14 @@ operation. See [the work-claim contract](docs/work-claim-contract.md) for the
|
|
|
327
335
|
request envelopes, refusal precedence, recovery rules, and the difference
|
|
328
336
|
between strict fenced and merge-coordinated backends.
|
|
329
337
|
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
338
|
+
Core and work-claim versions use distinct negotiation fields. Read the
|
|
339
|
+
top-level `contract_version` from core `capabilities`. Read
|
|
340
|
+
`result.operations.work_claim.api_version` from
|
|
341
|
+
`claim capabilities --ledger <dir> --json`. A claim response's top-level
|
|
342
|
+
`contract_version` is the legacy claim-envelope marker; do not compare it with
|
|
343
|
+
the core version. A consumer that receives an unsupported version refuses
|
|
344
|
+
rather than guessing. Direct checkout use—`./bin/wowbagger.js` from a
|
|
345
|
+
clone—remains supported and is what this repository's own ledger uses.
|
|
335
346
|
|
|
336
347
|
## Verify a checkout
|
|
337
348
|
|