@sublang/playbook 0.4.1 → 0.4.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/README.md +15 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -152,8 +152,21 @@ pnpm build
|
|
|
152
152
|
pnpm test
|
|
153
153
|
```
|
|
154
154
|
|
|
155
|
-
`pnpm install`
|
|
156
|
-
|
|
155
|
+
`pnpm install` here installs the `@sublang/cligent` version pinned
|
|
156
|
+
in the checked-in `pnpm-lock.yaml` — the same version CI installs
|
|
157
|
+
via `--frozen-lockfile`, so contributor checkouts and CI agree.
|
|
158
|
+
The published `package.json` declares `@sublang/cligent` as
|
|
159
|
+
`latest`, so an end-user install with no lockfile (e.g., `npm
|
|
160
|
+
install -g @sublang/playbook`) instead resolves whichever cligent
|
|
161
|
+
release currently carries the `latest` dist-tag at install time
|
|
162
|
+
(see [RELEASE-14](specs/dev/release.md#release-14)). To bump the
|
|
163
|
+
contributor pin to today's `latest`, run
|
|
164
|
+
`pnpm update @sublang/cligent` and commit the resulting
|
|
165
|
+
`pnpm-lock.yaml` change — a plain `pnpm install` won't refresh the
|
|
166
|
+
pin, since pnpm sees `specifier: latest` in the lockfile as
|
|
167
|
+
already matching `package.json` and skips re-resolving the tag.
|
|
168
|
+
No local link required for any of this. To point pnpm at a local
|
|
169
|
+
`cligent` checkout
|
|
157
170
|
instead, copy
|
|
158
171
|
[`pnpm-workspace.yaml.example`](pnpm-workspace.yaml.example)
|
|
159
172
|
into place; the override is gitignored so it never leaks into a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sublang/playbook",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Reference CODE playbook — XState v5 FSM, host-agnostic runtime, and tmux-play adapter for a coder/reviewer/committer loop driven by GEARS spec items.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@anthropic-ai/claude-agent-sdk": "^0.3.143",
|
|
69
69
|
"@openai/codex-sdk": "^0.130.0",
|
|
70
|
-
"@sublang/cligent": "
|
|
70
|
+
"@sublang/cligent": "latest",
|
|
71
71
|
"xstate": "^5.19.4"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|