@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
|
@@ -8,24 +8,38 @@ user-invocable: false
|
|
|
8
8
|
|
|
9
9
|
## Why This Matters
|
|
10
10
|
|
|
11
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
18
|
-
Right: Three separate Bash calls, one per command.
|
|
17
|
+
**Three tiers of execution speed — always use the highest tier available:**
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|