@simpleapps-com/augur-skills 2026.3.30 → 2026.4.1
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
|
@@ -43,6 +43,12 @@ If you made changes and the user then runs `/submit`, the command starts fresh
|
|
|
43
43
|
|
|
44
44
|
Do NOT ask for redundant confirmation inside `/submit` if the user just invoked it. The invocation is the approval. But each discrete git operation within the flow (commit, then push) should still be reported before execution.
|
|
45
45
|
|
|
46
|
+
## Stash hygiene
|
|
47
|
+
|
|
48
|
+
MUST NOT leave stashes behind. If you stash changes (e.g., to switch branches), you MUST pop or drop the stash before the operation is complete. Orphaned stashes accumulate silently and confuse future work.
|
|
49
|
+
|
|
50
|
+
Better yet, avoid stashing entirely. If you need to create a branch from a different base, commit or stage work first, or create the branch before making changes. Stash is a last resort, not a workflow step.
|
|
51
|
+
|
|
46
52
|
## The Pattern
|
|
47
53
|
|
|
48
54
|
**Do the work → report results → wait.**
|
|
@@ -139,7 +139,8 @@ Every project SHOULD configure `.claude/settings.local.json` with these deny rul
|
|
|
139
139
|
{
|
|
140
140
|
"env": {
|
|
141
141
|
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1",
|
|
142
|
-
"CLAUDE_CODE_DISABLE_FEEDBACK_SURVEY": "1"
|
|
142
|
+
"CLAUDE_CODE_DISABLE_FEEDBACK_SURVEY": "1",
|
|
143
|
+
"CLAUDE_CODE_NO_FLICKER": "1"
|
|
143
144
|
},
|
|
144
145
|
"permissions": {
|
|
145
146
|
"allow": [
|
|
@@ -55,11 +55,9 @@ 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
|
-
## Own
|
|
58
|
+
## Own every issue
|
|
59
59
|
|
|
60
|
-
Fix every issue
|
|
61
|
-
|
|
62
|
-
For failures in files you did not touch, report them as separate findings rather than fixing them inline. Fixing unrelated code is local optimization that delays shipping the actual task. The goal is zero issues in the work area, not unbounded cleanup of the entire codebase.
|
|
60
|
+
Fix every issue the checks find, regardless of which file it is in or who introduced it. There is no such thing as a "pre-existing issue" — context compaction erases your memory of earlier changes, so what looks pre-existing may be something you introduced. Even if you truly did not cause it, the goal is zero issues, not blame assignment. Fix it anyway.
|
|
63
61
|
|
|
64
62
|
## Resolve, never hide
|
|
65
63
|
|
|
@@ -38,7 +38,13 @@ When debugging in the browser, MUST check for error overlays (red error pill/bad
|
|
|
38
38
|
|
|
39
39
|
## Verify your own work
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
Code that compiles is not code that works. After making changes, verify they actually work:
|
|
42
|
+
|
|
43
|
+
1. Run tests (`pnpm test` or equivalent)
|
|
44
|
+
2. If the project has a Testing page in the wiki, suggest `/verify` to walk through the E2E checklist in the browser
|
|
45
|
+
3. If you changed UI, check it visually — load the page in Chrome and confirm it looks right
|
|
46
|
+
|
|
47
|
+
YOU MUST NOT mark work complete without verification. Suggesting `/submit` or `/quality` before verifying the code works is backwards — broken code that passes lint is still broken code. Verify first, then let the user decide next steps.
|
|
42
48
|
|
|
43
49
|
## Own every issue you find
|
|
44
50
|
|
|
@@ -50,7 +56,9 @@ Use TodoRead/TodoWrite on multi-step tasks. Mark items in-progress before starti
|
|
|
50
56
|
|
|
51
57
|
## Never prompt for git actions
|
|
52
58
|
|
|
53
|
-
MUST NOT ask "want me to commit?", "should I submit?", or
|
|
59
|
+
MUST NOT ask "want me to commit?", "should I submit?", "ready for a PR?", "want me to push?", or ANY variation after completing work. Do not hint at it either — "if you're happy with this, you can run /submit" is the same thing with extra words. The user knows their own workflow. They will say "commit", `/submit`, or equivalent when they are ready.
|
|
60
|
+
|
|
61
|
+
After completing work: report what changed, suggest `/verify` if untested, then stop. That is the entire post-work protocol. No git prompts. No shipping suggestions.
|
|
54
62
|
|
|
55
63
|
## Know when to stop and ask
|
|
56
64
|
|