@simpleapps-com/augur-skills 2026.4.14 → 2026.4.15

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.04.14",
3
+ "version": "2026.04.15",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -94,9 +94,26 @@ When a check fails, the solution is ALWAYS to fix the underlying code. NEVER:
94
94
 
95
95
  These actions hide problems; they do not fix them. If a rule or test seems wrong, investigate why it exists before concluding it should change. Rules exist for reasons. If after investigation it genuinely does not apply, explain the reasoning to the user and let them decide. Do not unilaterally disable it.
96
96
 
97
- ## Check the branch before non-trivial work
97
+ ## Branch hygiene before starting work
98
98
 
99
- Several lifecycle commands (`/wip`, `/investigate`, `/implement`, `/submit`) repeat the same check: run `git -C repo branch --show-current` and warn the user if the branch is unexpected (not `main`, not a feature branch named after the issue). This is a shared hygiene step. If you find yourself doing meaningful work on an unexpected branch, stop and confirm with the user before continuing. Branching mistakes compound silently.
99
+ The lifecycle commands `/wip`, `/investigate`, and `/implement` MUST verify branch state before doing anything else. This is a HARD STOP, not a warning. A warning the agent emits and then ignores is identical to no check three concerns end up on one branch and the mess is only discovered at `/submit`.
100
+
101
+ When invoked for issue `#N`:
102
+
103
+ 1. Run `git -C repo branch --show-current` → branch `B`
104
+ 2. Run `git -C repo status --porcelain` → working tree state `T`
105
+
106
+ Proceed ONLY if one of these holds:
107
+
108
+ - `B` is `main` or `master` AND `T` is clean
109
+ - `B` contains `N` (e.g., `feat/N-...`, `fix/N-…`) — you are continuing in-flight work for the same issue; dirty tree is allowed
110
+
111
+ Otherwise STOP. Report exactly what you saw and the recovery path:
112
+
113
+ - If `B` is for a different issue: tell the user to `/submit` the in-flight work first, then `git -C repo switch main` and re-run the command. Do NOT offer to commit or stash on their behalf.
114
+ - If `B` is `main`/`master` but `T` is dirty: tell the user the uncommitted changes need to land somewhere (their own branch + `/submit`, or explicit discard) before starting new work.
115
+
116
+ Do NOT proceed with a "warning." Do NOT scaffold, investigate, or implement on a stale or wrong branch. Branching mistakes compound silently and the cost of recovery scales with how many commands later they are caught.
100
117
 
101
118
  ## Track progress
102
119