@simpleapps-com/augur-skills 2026.4.17 → 2026.4.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simpleapps-com/augur-skills",
3
- "version": "2026.04.17",
3
+ "version": "2026.04.18",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -25,7 +25,7 @@ Always-loaded content (CLAUDE.md, rules without `paths`) is paid on every prompt
25
25
  - **Skill descriptions**: 2% of context window for all skills combined (16K char fallback). Override with `SLASH_COMMAND_TOOL_CHAR_BUDGET`.
26
26
  - **SKILL.md**: under 500 lines. Move detail to supporting files.
27
27
  - **Auto memory**: first 200 lines of MEMORY.md loaded. Topic files on demand.
28
- - **Overhead**: a meaningful share of the context window is consumed by system prompt, tool definitions, and autocompact buffer before you type anything. The exact percentage depends on which MCP servers and tools are loaded. Run `/context` to see the current breakdown.
28
+ - **Overhead**: a meaningful share of the context window is consumed by system prompt, tool definitions, and autocompact buffer before you type anything. The exact percentage depends on which MCP servers and tools are loaded. Run `/context-audit` to see the current breakdown.
29
29
 
30
30
  ## Evergreen Content
31
31
 
@@ -68,7 +68,7 @@ The cheapest pointer with the biggest payoff is a **wiki link in CLAUDE.md**. A
68
68
 
69
69
  ## Checking Your Budget
70
70
 
71
- Run `/context` to see current token usage by category. Watch for:
71
+ Run `/context-audit` to see current token usage by category. Watch for:
72
72
  - Skills being excluded (descriptions exceeded 2% budget)
73
73
  - CLAUDE.md consuming more than ~5% of context
74
74
  - Many MCP servers inflating tool definitions
@@ -109,12 +109,20 @@ Not every WIP has an issue. Investigation notes, spike results, meeting takeaway
109
109
 
110
110
  They follow the same retention rule once `status` is terminal. `/process-wips` leaves them alone while `status` is `open` or `in-progress`.
111
111
 
112
+ ## Attachments
113
+
114
+ When a WIP is scaffolded from a Basecamp todo, message, or upload, every attachment on the source item AND on every comment MUST be downloaded via `download_attachment` and summarized inline in the WIP's Attachments section. Images are read multimodally with the `Read` tool and described — UI state, error text, highlighted regions, before/after framing. PDFs, spreadsheets, and docs are read and their key facts captured. The bar is that a future agent reading only the WIP has enough context to act without re-downloading.
115
+
116
+ MUST NOT list attachments by filename alone. MUST NOT skip an attachment because it "looks unimportant" — the user posted it for a reason. If a download fails, note the failure with the attachment ID so the user can intervene; do not silently drop it.
117
+
118
+ The same rule applies on `/wip` updates: new attachments added to the source since last fetch get downloaded and summarized, not just appended as filenames.
119
+
112
120
  ## What NOT to put in a WIP
113
121
 
114
122
  - Secrets, tokens, credentials
115
123
  - Final user-facing documentation (that's the wiki)
116
124
  - Production code (that's the repo)
117
- - Large binary attachments (link to them instead)
125
+ - The raw binary contents of attachments (the file lives under `~/.simpleapps/downloads/`; the WIP holds the summary and the local path)
118
126
 
119
127
  ## Related
120
128
 
@@ -104,7 +104,7 @@ These actions hide problems; they do not fix them. If a rule or test seems wrong
104
104
 
105
105
  ## Branch hygiene before starting work
106
106
 
107
- Branch management is the agent's job, not the user's. The lifecycle commands `/wip`, `/investigate`, and `/implement` MUST verify branch state before starting, but the agent SHOULD handle the safe transitions itself rather than blocking the user with "go run `git switch` first."
107
+ Branch management is the agent's job, not the user's. **Encourage** clean main; do **not** force it. Nudge the user when the branch state is unexpected, do the safe transition autonomously, and keep moving. The point of this rule is to reduce friction, not to add a gate.
108
108
 
109
109
  When invoked for issue `#N`:
110
110
 
@@ -115,10 +115,10 @@ When invoked for issue `#N`:
115
115
  |-----|-----|--------|
116
116
  | Contains `N` | any | Proceed — continuing in-flight work for this issue |
117
117
  | `main` / `master` | clean | For `/wip` and `/investigate` (read/scaffold only): proceed on `main`. For `/implement` (code changes): create the branch yourself with `git -C repo switch -c <type>/<N>-<slug>`, then proceed. Derive `<type>` from the issue title prefix (`feat:`, `fix:`, `chore:`, `docs:`). Derive `<slug>` from the issue title (lowercase-hyphenated, ≤40 chars). |
118
- | `main` / `master` | dirty | HARD STOP uncommitted changes need to land somewhere first. Report exactly which files are modified. Let the user decide (commit on a branch, discard, stash). MUST NOT touch their changes. |
119
- | Belongs to a different issue (`feat/M-…`, `M N`) | any | HARD STOP tell the user to `/submit` the in-flight work first, then re-run. MUST NOT switch branches with uncommitted work present. |
118
+ | Different issue branch (`feat/M-…`, `M N`) | clean | Nudge in your reply: "you're on `<branch>` for issue M; switching to main first." For `/wip`/`/investigate`: switch to main and proceed. For `/implement`: switch to main, create the new branch yourself, proceed. The user's work is already committed on `M`'s branch; they can return to it later. |
119
+ | any | dirty | **Pause and ask once.** Uncommitted work could be mixed or lost by proceeding. Surface the modified files, propose one path (commit on a branch, stash, discard), and let the user choose. Proceed on their answer — do not refuse further engagement. MUST NOT touch their changes without instruction. |
120
120
 
121
- The HARD STOPs only fire when the user's working state would be lost or mixed by proceeding. Clean main + known issue is not a stop condition `/implement` creates the branch itself; `/wip` and `/investigate` proceed in place because they don't write code.
121
+ The only pause condition is a dirty tree, because proceeding could destroy work the agent didn't make. Clean main + known issue is not a stop condition; neither is being on someone else's clean feature branch the agent switches and proceeds.
122
122
 
123
123
  Branching mistakes compound silently and the cost of recovery scales with how many commands later they are caught — but the answer is the agent doing the safe transition autonomously, not screaming the sky is falling at the user every time the workflow requires a routine `git switch`.
124
124