@simpleapps-com/augur-skills 2026.3.3 → 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
|
@@ -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
|
```
|
|
@@ -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
|
```
|