@simpleapps-com/augur-skills 2026.3.23 → 2026.3.25

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.23",
3
+ "version": "2026.03.25",
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.
@@ -40,15 +40,21 @@ Not all projects need all three. Client sites may only have Submit and Deploy. P
40
40
  1. Read `wiki/Deployment.md`
41
41
  2. Find the section matching the requested action (Submit, Deploy, or Publish)
42
42
  3. If the page or section is missing, **refuse to operate** — tell the user to run `/curate-wiki` to generate it
43
- 4. Execute the steps in that section, respecting git-safety at every git write operation
43
+ 4. Execute the steps in that section
44
+
45
+ ## Command approval model
46
+
47
+ The user invoking a command IS the approval to execute all its steps, including git writes. Do not stop to ask for confirmation mid-execution.
48
+
49
+ - `/submit` — execute all steps (commit, push, PR). Report at the end.
50
+ - `/deploy` — execute all steps. Report at the end.
51
+ - `/publish` — **EXCEPTION**: must complete the verification gate below and get secondary confirmation BEFORE executing any publish steps. This is the only command that pauses for approval.
44
52
 
45
53
  ## Guard Rails
46
54
 
47
55
  - **If `wiki/Deployment.md` does not exist, STOP IMMEDIATELY.** Do not guess, do not improvise, do not infer steps from the codebase. Tell the user to run `/curate-wiki` to generate it. Then do nothing else.
48
56
  - **If the relevant section (Submit, Deploy, or Publish) is missing from the page, STOP IMMEDIATELY.** Same rule — do not guess the steps.
49
57
  - MUST NOT guess deployment steps — only execute what the wiki defines
50
- - MUST load git-safety — every git write operation requires user approval
51
- - `/publish` MUST complete the verification gate before executing (see below)
52
58
 
53
59
  ## Publish Verification Gate
54
60
 
@@ -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.