@simpleapps-com/augur-skills 2026.4.10 → 2026.4.11
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
|
@@ -94,6 +94,16 @@ Right: `Glob(pattern: "{path}/repo/src/components/**/*")`
|
|
|
94
94
|
|
|
95
95
|
All project paths are known and predictable (see `simpleapps:wiki` Cross-Project Wiki Access). MUST NOT search the filesystem with `find` or download from the internet. Just use the dedicated tool with the known path.
|
|
96
96
|
|
|
97
|
+
## Subagent Responsibility
|
|
98
|
+
|
|
99
|
+
Subagents do NOT inherit this skill. They see only the prompt you give them. The primary agent MUST brief every subagent on bash-simplicity before delegating shell work, and owns the output that comes back.
|
|
100
|
+
|
|
101
|
+
Every subagent prompt that touches Bash MUST include a one-liner: "One command per Bash call. No operators. Use dedicated tools (Read, Grep, Glob, Edit, Write) over shell equivalents."
|
|
102
|
+
|
|
103
|
+
If a subagent returns a command containing any forbidden operator (see the table above), that is the primary agent's failure. Reject and ask for a re-plan, or translate into separate simple calls. Do not execute it. A subagent violating this is running on a stale prompt; fix the prompt.
|
|
104
|
+
|
|
105
|
+
Parallel subagents each need their own briefing.
|
|
106
|
+
|
|
97
107
|
## Check Before Prompting
|
|
98
108
|
|
|
99
109
|
Before running a command that will trigger a permission prompt, check the wiki and project settings for approved commands. The wiki documents which commands are pre-approved and how to invoke them. Unnecessary permission prompts interrupt the user's flow.
|
|
@@ -172,7 +172,9 @@ Every project SHOULD configure `.claude/settings.local.json` with these deny rul
|
|
|
172
172
|
"Bash(rg:*)",
|
|
173
173
|
"Bash(sed:*)",
|
|
174
174
|
"Bash(sleep:*)",
|
|
175
|
-
"Bash(tail:*)"
|
|
175
|
+
"Bash(tail:*)",
|
|
176
|
+
"Edit(~/.claude/plugins/**)",
|
|
177
|
+
"Write(~/.claude/plugins/**)"
|
|
176
178
|
]
|
|
177
179
|
}
|
|
178
180
|
}
|
|
@@ -191,6 +193,7 @@ Why each is denied:
|
|
|
191
193
|
- **`rg`**: Use the Grep tool instead (it uses ripgrep internally).
|
|
192
194
|
- **`sed`**: Use the Edit tool instead.
|
|
193
195
|
- **`sleep`**: Unnecessary; use proper sequencing or background tasks.
|
|
196
|
+
- **`Edit(~/.claude/plugins/**)` / `Write(~/.claude/plugins/**)`**: The installed plugin tree is a cache. Marketplace updates clobber it. To change plugin behavior, edit the plugin's source repo (e.g., `~/projects/simpleapps/augur-skills/`) instead.
|
|
194
197
|
|
|
195
198
|
## Bin Scripts (PATH)
|
|
196
199
|
|
|
@@ -21,14 +21,14 @@ The wiki is a **git-backed markdown folder** (`wiki/`) living next to the code r
|
|
|
21
21
|
- **Markdown in git**: the docs live where the work lives and version alongside the code. Diffs show what changed and why. No login, no API, no stale snapshot.
|
|
22
22
|
- **Separate `wiki/` repo, not embedded in the code repo**: the wiki ships independently of code releases. Doc fixes do not wait on code review cycles, and code commits stay clean of doc noise.
|
|
23
23
|
- **Local file reads, not network fetches**: the agent loads the full wiki at session start with zero latency. No rate limits, no auth, works offline.
|
|
24
|
-
- **20K token budget**: small enough
|
|
24
|
+
- **20K token budget**: small enough that the agent holds the whole wiki alongside working context with room to spare, and small enough that humans actually read and maintain it. Forces ruthless editing; a bloated wiki helps no one because no one reads past the first screen.
|
|
25
25
|
- **Process and principles, not code snippets**: code in the wiki rots the day it is pasted. Link to the source file instead, so the wiki stays true as the code evolves.
|
|
26
26
|
|
|
27
27
|
The payoff: **the agent and the user share the same model of the project.** Less re-explaining, fewer guesses, fewer "I assumed..." mistakes. Work goes faster because the agent already knows the conventions, and safer because the agent is not improvising decisions the wiki already settled.
|
|
28
28
|
|
|
29
29
|
## Token Budget
|
|
30
30
|
|
|
31
|
-
A wiki MUST NOT exceed **20K tokens** (~15K words, ~60KB).
|
|
31
|
+
A wiki MUST NOT exceed **20K tokens** (~15K words, ~60KB). The budget is an editing constraint, not a capacity limit. It is small enough that agents load the whole wiki alongside working context with room to spare, small enough that humans actually read and maintain it, and strict enough to force pruning as the project grows.
|
|
32
32
|
|
|
33
33
|
Check size: `wc -w wiki/*.md` (multiply by ~1.3 for token estimate)
|
|
34
34
|
|