@simpleapps-com/augur-skills 2026.3.24 → 2026.3.26

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.24",
3
+ "version": "2026.03.26",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -9,6 +9,12 @@ allowed-tools:
9
9
 
10
10
  # Augur Packages
11
11
 
12
+ ## Custom code is a liability. Shared code is an asset.
13
+
14
+ Every line of custom site code carries maintenance cost — it must be understood, tested, and updated by whoever touches it next. Shared packages are the opposite: maintained once, benefiting every site. When you write custom code that a package already handles, you are adding a liability. When you adopt a package export, you are removing one.
15
+
16
+ This means: always prefer package solutions over custom code. When no package solution exists but the code would benefit other sites, suggest it as a package addition. The goal is to shrink the liability (custom code) and grow the asset (shared packages) over time.
17
+
12
18
  Shared npm packages for Next.js ecommerce sites and React Native apps. Published to npm under `@simpleapps-com`. Source: `simpleapps-com/augur-packages`.
13
19
 
14
20
  Before writing custom code, check whether a package export already solves the problem.
@@ -33,6 +33,8 @@ Each approval covers ONE specific operation. Examples:
33
33
  - The user runs `/submit` → you may execute the Submit steps (commit + push or PR). You may NOT also tag or publish.
34
34
  - The user runs `/publish` → you may execute the Publish steps (bump, commit, tag, push). This does NOT carry forward to future commits.
35
35
 
36
+ Approval for one repo does NOT extend to another. Approval to commit/push the wiki does NOT grant approval to commit/push the main repo, and vice versa. Each repo requires its own explicit approval.
37
+
36
38
  Previous approvals do NOT grant future permissions. If the user approved a commit earlier in the session, that does not mean you can commit again later without asking.
37
39
 
38
40
  ### When /submit follows earlier work
@@ -146,7 +146,9 @@ Every project SHOULD configure `.claude/settings.local.json` with these deny rul
146
146
  "Bash(which:*)",
147
147
  "Bash(basename:*)",
148
148
  "Bash(dirname:*)",
149
- "Bash(pwd:*)"
149
+ "Bash(pwd:*)",
150
+ "Bash(lsof:*)",
151
+ "mcp__plugin_simpleapps_augur-api__*"
150
152
  ],
151
153
  "deny": [
152
154
  "Bash(cd:*)",
@@ -55,6 +55,10 @@ Do not install or configure tools without the user's approval. Flag what's missi
55
55
  - **No tests for changed code** — suggest vitest
56
56
  - **No pre-commit hooks** — suggest lefthook
57
57
 
58
+ ## Every failure is your problem
59
+
60
+ There is no such thing as a "pre-existing issue." If a check fails, fix it immediately. Do not skip it, do not classify it as "not from our changes", do not continue to the next check hoping someone else will fix it later. Context compaction erases your memory of earlier changes — what looks pre-existing may be something you introduced. Even if you truly did not cause it, fix it anyway. The goal is zero issues.
61
+
58
62
  ## Resolve, never hide
59
63
 
60
64
  When a check fails, the solution is ALWAYS to fix the underlying code. NEVER:
@@ -44,6 +44,10 @@ If a check fails or a bug surfaces, fix it. Do not classify issues as "pre-exist
44
44
 
45
45
  Use TodoRead/TodoWrite on multi-step tasks. Mark items in-progress before starting, completed after verifying.
46
46
 
47
+ ## Never prompt for git actions
48
+
49
+ MUST NOT ask "want me to commit?", "should I submit?", or any variation after completing work. The user will say "commit", `/submit`, or equivalent when ready. During multi-step implementation, asking to commit between steps interrupts the flow and adds noise. Report what was done and stop.
50
+
47
51
  ## Know when to stop and ask
48
52
 
49
53
  **Ask** when: requirements are ambiguous, multiple valid approaches exist, an action is destructive or irreversible, you've failed the same approach twice.
@@ -66,3 +70,9 @@ Two failed attempts with the *same* approach means change strategy, not stop ent
66
70
  ## Recover from mistakes
67
71
 
68
72
  Wrong approach? Stop, revert, try differently. Do not keep layering fixes on a broken foundation. Two failed attempts at the same approach = change strategy.
73
+
74
+ ## Improve the system, not just the output
75
+
76
+ Removing daily work is more important than doing daily work. While completing a task, notice friction: unnecessary manual steps, repeated patterns that could be shared, error-prone processes that could be automated, custom code that duplicates a package export. When you spot these, flag them — suggest a package addition, a script, a skill improvement, or a workflow change. The value of eliminating a step that runs every day far exceeds the value of completing it one more time.
77
+
78
+ This is not scope creep on the code. "Do exactly what was asked" still applies to the task. But improving the system the task runs in — making skills clearer, workflows smoother, shared code more complete — is always in scope. File an issue, update a skill, or mention it in your report.
@@ -69,7 +69,7 @@ gh issue create --repo simpleapps-com/<repo> \
69
69
  The full workflow from task to delivery, each step feeding the next:
70
70
 
71
71
  ```
72
- /triage → /wip → /investigate → /discuss → /implement → /quality → /verify → /submit → /deploy → /publish
72
+ /triage → /wip → /investigate → /discuss → /implement → /quality → /sanity-check → /verify → /submit → /deploy → /publish
73
73
  ```
74
74
 
75
75
  | Phase | Command | What happens |
@@ -80,6 +80,7 @@ The full workflow from task to delivery, each step feeding the next:
80
80
  | Align | `/discuss` | Conversational alignment before acting |
81
81
  | Build | `/implement` | Execute the plan — code changes only, no commits |
82
82
  | Code checks | `/quality` | Lint, typecheck, test, package freshness |
83
+ | Solution audit | `/sanity-check` | Did we solve the right problem without commission/omission errors? |
83
84
  | Browser checks | `/verify` | Walk through wiki's Testing.md checklist in Chrome |
84
85
  | Submit | `/submit` | Commit and create a PR for review |
85
86
  | Stage | `/deploy` | Deploy to staging (merge PRs, trigger staging build) |