@simpleapps-com/augur-skills 2026.3.1 → 2026.3.3

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.1",
3
+ "version": "2026.03.3",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -101,7 +101,7 @@ Every project SHOULD configure `.claude/settings.local.json` with these deny rul
101
101
 
102
102
  Why each is denied:
103
103
 
104
- - **`cd`** — Use `git -C` or tool-specific flags (`--repo`, `-C`) instead. `cd` loses working directory context.
104
+ - **`cd`** — MUST NOT use in any Bash command, including compound commands (`cd /path && git`). Use `git -C repo` for git, path arguments for everything else. Compound cd+git commands trigger an unblockable Claude Code security prompt that interrupts the user even when `cd` is denied.
105
105
  - **`cat`** — Use the Read tool instead.
106
106
  - **`sed`** — Use the Edit tool instead.
107
107
  - **`grep`** — Use the Grep tool instead.
@@ -19,6 +19,8 @@ Prefer dedicated tools over Bash equivalents — they are faster, need no permis
19
19
 
20
20
  Reserve Bash for commands that have no dedicated tool equivalent.
21
21
 
22
+ MUST NOT use `cd` in any Bash command — not even in compound commands like `cd /path && git log`. Use `git -C repo` for git, and path arguments for everything else. The `cd` deny rule does not suppress Claude Code's built-in security prompt for compound cd+git commands, so any `cd` usage will interrupt the user.
23
+
22
24
  ## Protect the context window
23
25
 
24
26
  - Prefer targeted searches over broad exploration