playbook-ai 1.2.0 → 1.2.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
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.2.1] — 2026-03-15
6
+
7
+ ### Improvements
8
+ - **Network diagnostics** — `/debug` now includes a Step 0 connectivity check when sessions are slow. Runs `speedtest` (if installed) to rule out network issues before diving into code debugging.
9
+ - **Speedtest CLI recommended** — Added to tech stack template under new "Diagnostics" section. Install with `brew install teamookla/speedtest/speedtest`.
10
+ - **Troubleshooting section in README** — Guidance for diagnosing slow sessions with install instructions and thresholds.
11
+
5
12
  ## [1.2.0] — 2026-03-11
6
13
 
7
14
  ### New Commands
package/CLAUDE.md CHANGED
@@ -89,6 +89,15 @@
89
89
  - When a manual task is performed repeatedly (copy-pasting between apps, checking status in external tools, triggering actions manually), proactively suggest connecting the tool as an MCP server to eliminate the manual step
90
90
  - Frame the suggestion with the time/effort saved vs. setup cost
91
91
 
92
+ ## Inbox
93
+ - Every project can have an `inbox/` folder at the repo root — a drop zone for files you want Claude to read
94
+ - `inbox/` must be in `.gitignore` — nothing in it should ever be committed
95
+ - **Large files warning:** If you're dropping in large files (PDFs, CSVs, images, etc.), know that `inbox/` is temporary and local only. If you need to keep those files long-term, save them somewhere permanent (Google Drive, your file system, etc.) before or after the session. Claude will not preserve them.
96
+ - When you say things like "check the files I gave you," "look at what I dropped in," or "read the files" without specifying a path — Claude should check `inbox/` first
97
+ - During the session, Claude reads and uses inbox files freely
98
+ - At `/end`, Claude cleans up: extracts any useful information (saves to memory, docs, or code as needed), then **deletes all files** from `inbox/`. If a file needs to persist, Claude moves it to an appropriate location in the project (e.g., `docs/`, `templates/`) before deleting the original
99
+ - The goal is zero files in `inbox/` after every session — no accumulation, no bloat
100
+
92
101
  ## Code Quality
93
102
  - No fabricated data in production — 100% accuracy
94
103
  - Propose parallel work when independent tasks can run simultaneously
package/README.md CHANGED
@@ -113,6 +113,17 @@ MCP (Model Context Protocol) servers give Claude direct access to your tools —
113
113
 
114
114
  MCP servers are configured in `~/.claude.json` (global) or in project-level settings. See [Anthropic's MCP docs](https://docs.anthropic.com/en/docs/claude-code/mcp) for setup instructions.
115
115
 
116
+ ## Troubleshooting
117
+
118
+ **Sessions are slow or timing out?** It might be your connection, not Claude. Install the [Speedtest CLI](https://www.speedtest.net/apps/cli) to rule out network issues:
119
+
120
+ ```bash
121
+ brew install teamookla/speedtest/speedtest
122
+ speedtest
123
+ ```
124
+
125
+ If you see high latency (>500ms), significant packet loss (>5%), or very low upload speeds (<1 Mbps), your connection is the bottleneck. This is common on in-flight Wi-Fi, tethered connections, or congested networks. Claude's `/debug` command will automatically suggest checking connectivity when sessions are sluggish.
126
+
116
127
  ## Customizing
117
128
 
118
129
  This playbook is a starting point. Customize `CLAUDE.md` to fit your workflow:
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.2.1
package/commands/debug.md CHANGED
@@ -1,5 +1,6 @@
1
1
  Follow this systematic debugging process:
2
2
 
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.
3
4
  1. **Reproduce** — Confirm the bug exists. Get the exact error, query, or behavior. Don't guess.
4
5
  2. **Isolate** — Narrow down the root cause:
5
6
  - What changed recently? (Check WORK_LOG.md, recent commits, recent deployments)
package/commands/end.md CHANGED
@@ -24,6 +24,11 @@ Session closeout. Do everything needed so the user can walk away without taking
24
24
  - Delete `HANDOFF_RESULT.md` if it exists in the project root
25
25
  - Remove any other temp files created during the session (scratch scripts, debug output, etc.)
26
26
  - Do NOT delete docs/decisions/ files — those are permanent
27
+ - **Inbox cleanup:** If `inbox/` exists and has files:
28
+ - Review each file — extract any information that should persist (save to memory, docs, code, etc.)
29
+ - If a file needs to live permanently in the project, move it to the right location (e.g., `docs/`, `templates/`)
30
+ - Delete everything remaining in `inbox/` — the goal is zero files after every session
31
+ - Report what was cleaned up: "Cleaned inbox: deleted X files, moved Y to Z"
27
32
 
28
33
  6. **Pre-commit checklist** — before committing, verify:
29
34
  - All changes tested/verified (not just "should work" — show evidence)
@@ -55,7 +55,9 @@ Only create files that don't already exist in the repo:
55
55
  - Run `/start` to begin first working session
56
56
  ```
57
57
 
58
- - **.gitignore** — Only create if one doesn't exist. Use a sensible default based on what's in the repo (Node, Python, etc.), or a minimal one if unclear.
58
+ - **inbox/**Create the directory with a `.gitkeep` inside so git tracks the empty folder: `mkdir -p inbox && touch inbox/.gitkeep`
59
+
60
+ - **.gitignore** — Only create if one doesn't exist. Use a sensible default based on what's in the repo (Node, Python, etc.), or a minimal one if unclear. **Always include `inbox/*` and `!inbox/.gitkeep`** so the folder exists in the repo but its contents are never committed.
59
61
 
60
62
  ### 4. PM integration (optional)
61
63
 
package/commands/start.md CHANGED
@@ -71,6 +71,17 @@ This check should be fast (one bash command) and never block the session.
71
71
 
72
72
  ---
73
73
 
74
+ ## Step 2: Inbox Check
75
+
76
+ Check if an `inbox/` folder exists at the project root and contains any files.
77
+
78
+ 1. If `inbox/` doesn't exist or is empty — skip, say nothing.
79
+ 2. If `inbox/` has files, list them in the briefing under **Inbox files:** with file names and sizes.
80
+ 3. Do NOT read or process the files yet — just surface what's there so the user knows Claude is aware of them.
81
+ 4. When the user says things like "check the files I gave you," "look at what I dropped in," or "read the files" without specifying a path — check `inbox/` first.
82
+
83
+ ---
84
+
74
85
  ## Normal Briefing
75
86
 
76
87
  Present a concise briefing:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playbook-ai",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Operating playbook for non-technical founders working with Claude Code",
5
5
  "bin": {
6
6
  "playbook-ai": "bin/cli.js"
@@ -33,6 +33,11 @@
33
33
  |------|---------|-------|
34
34
  | — | — | — |
35
35
 
36
+ ## Diagnostics
37
+ | Tool | Purpose | Notes |
38
+ |------|---------|-------|
39
+ | [Speedtest CLI](https://www.speedtest.net/apps/cli) | Network diagnostics | `brew install teamookla/speedtest/speedtest` — rule out connectivity before debugging slow sessions |
40
+
36
41
  ## Deprecated
37
42
  | Tool | Was Used In | Reason | Date |
38
43
  |------|-------------|--------|------|