@simpleapps-com/augur-skills 2026.3.17 → 2026.3.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.03.17",
3
+ "version": "2026.03.18",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -8,24 +8,38 @@ user-invocable: false
8
8
 
9
9
  ## Why This Matters
10
10
 
11
- Every permission prompt makes the user the bottleneck. If the user doesn't see the prompt for an hour, that hour is lost — the agent is blocked, the task stalls, and the system designed for autonomous work stops working. The entire plugin system exists to remove the user as the bottleneck. A permission prompt works directly against that goal. Use dedicated tools and simple commands to avoid ever triggering one.
11
+ A complex command feels efficient do more in one call. But the more complex the command, the higher the probability it triggers a permission prompt. A permission prompt blocks the agent until the user responds. If the user doesn't see it for an hour, that hour is lost.
12
12
 
13
- ## One Command Per Call
13
+ **Simple commands are faster than complex ones because they never wait for a human.** Ten simple commands that execute instantly are faster than one complex command that waits an hour for approval. The agent's goal is to complete work — a blocked prompt completes nothing.
14
14
 
15
- MUST run each Bash command as a separate, simple call. MUST NOT chain commands with `&&`, `||`, pipes, or sub-shells. Complex commands trigger permission prompts and break automation.
15
+ The entire plugin system exists to remove the user as the bottleneck. Every permission prompt puts them back in the critical path.
16
16
 
17
- Wrong: `git -C repo status && pnpm typecheck && pnpm test`
18
- Right: Three separate Bash calls, one per command.
17
+ **Three tiers of execution speed always use the highest tier available:**
19
18
 
20
- Wrong: `pnpm --filter <site> run typecheck 2>&1; echo "EXIT: $?"`
21
- Right: `pnpm --filter <site> run typecheck` — the Bash tool already captures stderr and exit codes. Never add `2>&1`, `; echo $?`, or other shell plumbing — it triggers permission prompts for no benefit.
19
+ | Tier | Method | Speed | Example |
20
+ |------|--------|-------|---------|
21
+ | 1 | Dedicated tools (Read, Grep, Glob, Edit) | **WILL** run immediately, zero permission chance | `Grep(pattern: "...", path: "repo")` |
22
+ | 2 | Simple Bash (one command, no operators) | **MAY** run immediately if pre-approved | `pnpm typecheck` |
23
+ | 3 | Complex Bash (operators, plumbing) | **WILL** trigger a permission prompt | `pnpm typecheck 2>&1; echo $?` |
22
24
 
23
- Wrong: `gh issue close 367 --repo org/repo --comment "$(< tmp/file.txt)" 2>&1`
24
- Right: Write the comment to a tmp file, then use two separate calls:
25
- 1. `gh issue comment 367 --repo org/repo --body-file tmp/file.txt`
26
- 2. `gh issue close 367 --repo org/repo`
25
+ Prefer tier 1 over tier 2. Use tier 2 only when no dedicated tool exists. NEVER use tier 3.
27
26
 
28
- MUST NOT use `$()` command substitution in Bash commands it triggers a permission prompt every time. Write content to a tmp file first, then pass it with a `-F`, `--body-file`, or similar flag.
27
+ ## The Bash Tool Is Not a Terminal
28
+
29
+ The Bash tool is a managed environment, not a raw shell. It already captures stdout, stderr, and the exit code automatically. There is NEVER a reason to add shell plumbing — every shell operator triggers a permission prompt that blocks the user for zero benefit.
30
+
31
+ **If the Bash tool already does it, do not do it yourself:**
32
+
33
+ | You want to... | The tool already does it | Do NOT add |
34
+ |----------------|------------------------|------------|
35
+ | Get the exit code | Returned automatically | `; echo $?`, `; echo "Exit code: $?"` |
36
+ | Capture stderr | Captured automatically | `2>&1`, `2>/dev/null` |
37
+ | Limit output | Returned in full | `\| head`, `\| tail`, `\| grep` |
38
+ | Run the next step | Make a separate tool call | `&&`, `;`, `\|\|` |
39
+ | Pass output to another command | Write to a tmp file | `$(...)`, backticks |
40
+ | Run inline code | Use Read/Grep/Edit tools | `node -e`, `python -c` |
41
+
42
+ **One command per Bash call. No operators. No plumbing. If the command has a `;`, `&&`, `|`, `$()`, `2>&1`, or `2>/dev/null` in it — it is wrong.**
29
43
 
30
44
  ## Use Dedicated Tools
31
45