@simpleapps-com/augur-skills 2026.4.13 → 2026.4.14
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
|
@@ -60,6 +60,18 @@ These commands are **denied** in project settings and will always be rejected. D
|
|
|
60
60
|
|
|
61
61
|
MUST NOT use `node -e` or `python -c` to run inline scripts. These trigger permission prompts. If you need to read a file, use the Read tool. If you need to process data, do it in your response, not in a shell script.
|
|
62
62
|
|
|
63
|
+
## When a Bash Command Is Denied
|
|
64
|
+
|
|
65
|
+
If a Bash call is denied, do NOT retry the same command and do NOT ask the user to approve it. Before anything else, check for a tool equivalent or shell plumbing that can be decomposed:
|
|
66
|
+
|
|
67
|
+
- `grep`/`rg` → Grep tool (for files on disk); for command output, the Bash tool already returned it — read what you have
|
|
68
|
+
- `find`/`ls` → Glob tool
|
|
69
|
+
- `cat`/`head`/`tail` → Read tool
|
|
70
|
+
- `sed`/`awk` → Edit tool
|
|
71
|
+
- `|`, `2>&1`, `&&`, `;`, `$()` → split into separate calls; the Bash tool already captures stdout, stderr, and exit code
|
|
72
|
+
|
|
73
|
+
Worked example: `pnpm --filter <package> typecheck 2>&1 | grep -c "error TS"` is denied because of the pipe to `grep`. The fix is to run `pnpm --filter <package> typecheck` alone — the Bash tool returns the full output and exit code — then count "error TS" occurrences in the returned output yourself. No grep, no redirection, no retry.
|
|
74
|
+
|
|
63
75
|
## Background Tasks
|
|
64
76
|
|
|
65
77
|
When you start a background task with `run_in_background`, you receive a task ID. That ID is how you manage the task later:
|