@simpleapps-com/augur-skills 2026.3.25 → 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
|
@@ -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
|
|
@@ -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) |
|