@sublang/playbook 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +8 -1
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -40,12 +40,19 @@ runtime ported to cligent's `tmux-play` host out of the box.
40
40
 
41
41
  ### Install (users)
42
42
 
43
- Install the package globally alongside its `@sublang/cligent` peer:
43
+ Install the package globally alongside its `@sublang/cligent` peer.
44
+ The bundled production config wires Anthropic (Captain + Coder) and
45
+ OpenAI Codex (Reviewer); both SDKs come along as direct dependencies
46
+ of `@sublang/playbook`, so no extra install is needed:
44
47
 
45
48
  ```sh
46
49
  npm install -g @sublang/playbook @sublang/cligent
47
50
  ```
48
51
 
52
+ Each adapter reads its own auth: the Claude SDK uses your local
53
+ Claude Code auth (or `ANTHROPIC_API_KEY`); the Codex SDK uses your
54
+ local codex CLI auth (or `OPENAI_API_KEY`).
55
+
49
56
  Then launch the reference playbook in a `tmux-play` session:
50
57
 
51
58
  ```sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sublang/playbook",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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",
@@ -43,7 +43,7 @@
43
43
  "bin"
44
44
  ],
45
45
  "bin": {
46
- "playbook-code": "./bin/playbook-code.js"
46
+ "playbook-code": "bin/playbook-code.js"
47
47
  },
48
48
  "exports": {
49
49
  "./code/playbook": {
@@ -67,6 +67,10 @@
67
67
  "@sublang/cligent": "^0.3.0",
68
68
  "xstate": "^5.0.0"
69
69
  },
70
+ "dependencies": {
71
+ "@anthropic-ai/claude-agent-sdk": "^0.3.143",
72
+ "@openai/codex-sdk": "^0.130.0"
73
+ },
70
74
  "devDependencies": {
71
75
  "@sublang/cligent": "^0.3.0",
72
76
  "@types/node": "^22.0.0",