@simpleapps-com/augur-skills 2026.3.2 → 2026.3.4

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.2",
3
+ "version": "2026.03.4",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -100,6 +100,29 @@ gh issue close <number> --repo simpleapps-com/<repo> --comment "message"
100
100
 
101
101
  Include `Closes #N` in commit body to auto-close issues.
102
102
 
103
+ ### Commenting on existing issues
104
+
105
+ Before adding a comment to a closed issue, check its state first with `gh issue view`. If the issue is closed but the problem still exists, reopen it with `gh issue reopen` before commenting — a comment on a closed issue is easily missed.
106
+
107
+ ## Cross-Repo Issues
108
+
109
+ When a project hits a blocker that depends on another team's repo, create two issues and keep working:
110
+
111
+ 1. **Local issue** (in the site/project repo) — describe the impact and what's blocked
112
+ 2. **Upstream issue** (in the dependency repo) — describe the ask, include reproduction steps or specifics
113
+ 3. **Cross-link** — reference the other issue using `simpleapps-com/repo#N` syntax in both issue bodies
114
+ 4. **Don't block** — continue with other tasks while waiting for the upstream fix
115
+
116
+ Target repos:
117
+
118
+ | Dependency | Repo |
119
+ |------------|------|
120
+ | Backend microservices | `simpleapps-com/augur` |
121
+ | Shared frontend packages | `simpleapps-com/augur-packages` |
122
+ | TypeScript API SDK | `simpleapps-com/augur-api` |
123
+
124
+ Example cross-link in issue body: `Upstream: simpleapps-com/augur#44` or `Local impact: simpleapps-com/spotweldingsupplies#3`
125
+
103
126
  ## Pull Requests
104
127
 
105
128
  ```bash
@@ -65,6 +65,7 @@ The repo contains `.claude/rules/` and `.claude/commands/` with project-specific
65
65
 
66
66
  ```bash
67
67
  mkdir -p {project}/.claude
68
+ mkdir -p {project}/repo/.claude/rules {project}/repo/.claude/commands
68
69
  ln -sf ../repo/.claude/rules {project}/.claude/rules
69
70
  ln -sf ../repo/.claude/commands {project}/.claude/commands
70
71
  ```
@@ -101,7 +102,7 @@ Every project SHOULD configure `.claude/settings.local.json` with these deny rul
101
102
 
102
103
  Why each is denied:
103
104
 
104
- - **`cd`** — Use `git -C` or tool-specific flags (`--repo`, `-C`) instead. `cd` loses working directory context.
105
+ - **`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
106
  - **`cat`** — Use the Read tool instead.
106
107
  - **`sed`** — Use the Edit tool instead.
107
108
  - **`grep`** — Use the Grep tool instead.
@@ -136,6 +137,7 @@ mkdir {project} && cd {project}
136
137
  git clone https://github.com/simpleapps-com/<name>.git repo
137
138
  git clone https://github.com/simpleapps-com/<name>.wiki.git wiki
138
139
  mkdir -p wip tmp .simpleapps .claude
140
+ mkdir -p repo/.claude/rules repo/.claude/commands
139
141
  ln -sf ../repo/.claude/rules .claude/rules
140
142
  ln -sf ../repo/.claude/commands .claude/commands
141
143
  ```
@@ -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