playbook-ai 1.5.2 → 1.5.3

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 CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable updates to Playbook are documented here. Only impactful changes are listed — new commands, upgraded behavior, and things that make your workflow better. Cosmetic fixes and internal housekeeping are omitted.
4
4
 
5
+ ## [1.5.3] — 2026-05-29
6
+
7
+ ### Commands
8
+ - **Model routing documented** — `/debug`, `/end`, `/quick`, and `/new-project` now explicitly state they run inline on Sonnet with no subagents. Prevents future drift when commands are extended.
9
+
5
10
  ## [1.5.2] — 2026-05-28
6
11
 
7
12
  ### Architecture
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.2
1
+ 1.5.3
package/commands/debug.md CHANGED
@@ -1,4 +1,4 @@
1
- Follow this systematic debugging process:
1
+ Follow this systematic debugging process. Runs inline on Sonnet. No subagents.
2
2
 
3
3
  0. **Check connectivity (only if the session is slow)** — If responses are taking unusually long, run `speedtest` (if installed) to check for high latency, packet loss, or low bandwidth. If the connection is poor (>500ms latency, >5% packet loss, or <1 Mbps upload), flag it and suggest deferring to a better connection before debugging code.
4
4
  1. **Reproduce** — Confirm the bug exists. Get the exact error, query, or behavior. Don't guess.
package/commands/end.md CHANGED
@@ -1,4 +1,4 @@
1
- Session closeout. Do everything needed so the user can walk away without taking notes or remembering anything. The next `/start` must pick up seamlessly.
1
+ Session closeout. Do everything needed so the user can walk away without taking notes or remembering anything. The next `/start` must pick up seamlessly. Runs inline on Sonnet. No subagents.
2
2
 
3
3
  ## Steps
4
4
 
@@ -1,4 +1,4 @@
1
- Set up a new project for Claude Code — clone or create a repo, wire all local config, and get ready for `/start`.
1
+ Set up a new project for Claude Code — clone or create a repo, wire all local config, and get ready for `/start`. Runs inline on Sonnet. No subagents.
2
2
 
3
3
  ## Gather Info
4
4
 
package/commands/quick.md CHANGED
@@ -1,4 +1,4 @@
1
- Quick mode — for bug fixes, small changes, and one-off tasks that don't need full session ceremony.
1
+ Quick mode — for bug fixes, small changes, and one-off tasks that don't need full session ceremony. Runs inline on Sonnet. No subagents.
2
2
 
3
3
  Skip the full /start briefing. Instead:
4
4
  1. Read CLAUDE.md (for rules) and the last WORK_LOG.md entry (for context) — don't present a briefing.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playbook-ai",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Operating playbook for non-technical founders working with Claude Code",
5
5
  "bin": {
6
6
  "playbook-ai": "bin/cli.js"