@simpleapps-com/augur-skills 2026.3.16 → 2026.3.18

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.16",
3
+ "version": "2026.03.18",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -8,24 +8,38 @@ user-invocable: false
8
8
 
9
9
  ## Why This Matters
10
10
 
11
- Every permission prompt makes the user the bottleneck. If the user doesn't see the prompt for an hour, that hour is lost — the agent is blocked, the task stalls, and the system designed for autonomous work stops working. The entire plugin system exists to remove the user as the bottleneck. A permission prompt works directly against that goal. Use dedicated tools and simple commands to avoid ever triggering one.
11
+ A complex command feels efficient do more in one call. But the more complex the command, the higher the probability it triggers a permission prompt. A permission prompt blocks the agent until the user responds. If the user doesn't see it for an hour, that hour is lost.
12
12
 
13
- ## One Command Per Call
13
+ **Simple commands are faster than complex ones because they never wait for a human.** Ten simple commands that execute instantly are faster than one complex command that waits an hour for approval. The agent's goal is to complete work — a blocked prompt completes nothing.
14
14
 
15
- MUST run each Bash command as a separate, simple call. MUST NOT chain commands with `&&`, `||`, pipes, or sub-shells. Complex commands trigger permission prompts and break automation.
15
+ The entire plugin system exists to remove the user as the bottleneck. Every permission prompt puts them back in the critical path.
16
16
 
17
- Wrong: `git -C repo status && pnpm typecheck && pnpm test`
18
- Right: Three separate Bash calls, one per command.
17
+ **Three tiers of execution speed always use the highest tier available:**
19
18
 
20
- Wrong: `pnpm --filter <site> run typecheck 2>&1; echo "EXIT: $?"`
21
- Right: `pnpm --filter <site> run typecheck` — the Bash tool already captures stderr and exit codes. Never add `2>&1`, `; echo $?`, or other shell plumbing — it triggers permission prompts for no benefit.
19
+ | Tier | Method | Speed | Example |
20
+ |------|--------|-------|---------|
21
+ | 1 | Dedicated tools (Read, Grep, Glob, Edit) | **WILL** run immediately, zero permission chance | `Grep(pattern: "...", path: "repo")` |
22
+ | 2 | Simple Bash (one command, no operators) | **MAY** run immediately if pre-approved | `pnpm typecheck` |
23
+ | 3 | Complex Bash (operators, plumbing) | **WILL** trigger a permission prompt | `pnpm typecheck 2>&1; echo $?` |
22
24
 
23
- Wrong: `gh issue close 367 --repo org/repo --comment "$(< tmp/file.txt)" 2>&1`
24
- Right: Write the comment to a tmp file, then use two separate calls:
25
- 1. `gh issue comment 367 --repo org/repo --body-file tmp/file.txt`
26
- 2. `gh issue close 367 --repo org/repo`
25
+ Prefer tier 1 over tier 2. Use tier 2 only when no dedicated tool exists. NEVER use tier 3.
27
26
 
28
- MUST NOT use `$()` command substitution in Bash commands it triggers a permission prompt every time. Write content to a tmp file first, then pass it with a `-F`, `--body-file`, or similar flag.
27
+ ## The Bash Tool Is Not a Terminal
28
+
29
+ The Bash tool is a managed environment, not a raw shell. It already captures stdout, stderr, and the exit code automatically. There is NEVER a reason to add shell plumbing — every shell operator triggers a permission prompt that blocks the user for zero benefit.
30
+
31
+ **If the Bash tool already does it, do not do it yourself:**
32
+
33
+ | You want to... | The tool already does it | Do NOT add |
34
+ |----------------|------------------------|------------|
35
+ | Get the exit code | Returned automatically | `; echo $?`, `; echo "Exit code: $?"` |
36
+ | Capture stderr | Captured automatically | `2>&1`, `2>/dev/null` |
37
+ | Limit output | Returned in full | `\| head`, `\| tail`, `\| grep` |
38
+ | Run the next step | Make a separate tool call | `&&`, `;`, `\|\|` |
39
+ | Pass output to another command | Write to a tmp file | `$(...)`, backticks |
40
+ | Run inline code | Use Read/Grep/Edit tools | `node -e`, `python -c` |
41
+
42
+ **One command per Bash call. No operators. No plumbing. If the command has a `;`, `&&`, `|`, `$()`, `2>&1`, or `2>/dev/null` in it — it is wrong.**
29
43
 
30
44
  ## Use Dedicated Tools
31
45
 
@@ -105,6 +105,31 @@ All projects follow the same directory layout (see `simpleapps:project-defaults`
105
105
 
106
106
  MUST NOT use `find`, `grep`, `cat`, `ls`, or any shell command to explore other projects. The paths are known — use the dedicated tools directly.
107
107
 
108
+ ### Search all wikis
109
+
110
+ Every wiki on the machine is a local knowledge base. When looking for how something was solved, search across ALL wikis — not just the current project:
111
+
112
+ 1. Read `~/.simpleapps/settings.json` to get `projectRoot`
113
+ 2. Pull the latest for all wikis before searching:
114
+ - `git -C {projectRoot}/clients/*/wiki pull` (one call per wiki, not a glob)
115
+ - `git -C {projectRoot}/simpleapps/*/wiki pull`
116
+ 3. Search across all wikis with Grep:
117
+ - `Grep(pattern: "...", path: "{projectRoot}/clients", glob: "*/wiki/*.md")`
118
+ - `Grep(pattern: "...", path: "{projectRoot}/simpleapps", glob: "*/wiki/*.md")`
119
+ 4. Read the matching pages to get the full context
120
+
121
+ Use Glob to discover which projects have wikis: `Glob(pattern: "{projectRoot}/clients/*/wiki")` and `Glob(pattern: "{projectRoot}/simpleapps/*/wiki")`.
122
+
123
+ The wikis are kept fresh by `/curate-wiki` runs across projects. Searching locally is instant and requires no internet access — the knowledge is already on the machine.
124
+
125
+ **What to search for:** testing patterns and checklists, architecture decisions, coding conventions, deployment procedures, and how specific features were implemented. Other sites have already solved many of the same problems — search before building from scratch.
126
+
127
+ ## Testing Page
128
+
129
+ Every project wiki SHOULD have a `Testing.md` page. This is the E2E verification checklist that `/verify` uses to walk through the site in Chrome. The page grows over time — `/curate-wiki` SHOULD add testing knowledge learned during the session (new edge cases, failure patterns, test data) to the Testing page.
130
+
131
+ A good Testing page covers: test tiers (automated vs manual), test data (items, accounts, cards), and an E2E checklist organized by page area (homepage, listing, detail, cart, checkout, etc.). Each checklist item is a concrete, verifiable condition — not vague ("works") but specific ("price shows $9.26").
132
+
108
133
  ## Keep It Lean
109
134
 
110
135
  - Document patterns and principles, not exhaustive lists
@@ -64,6 +64,29 @@ gh issue create --repo simpleapps-com/<repo> \
64
64
  - Include the Basecamp todo URL in the GitHub issue body (under a `## Basecamp` heading)
65
65
  - After creating the issue, provide the GitHub issue URL to the user so they can add it to the Basecamp todo comments
66
66
 
67
+ ## Development Lifecycle
68
+
69
+ The full workflow from task to delivery, each step feeding the next:
70
+
71
+ ```
72
+ /triage → /wip → /investigate → /discuss → /implement → /quality → /verify → /curate-wiki
73
+ ```
74
+
75
+ | Phase | Command | What happens |
76
+ |-------|---------|-------------|
77
+ | Pick work | `/triage` | See open PRs and unlinked issues |
78
+ | Scaffold | `/wip` | Create a WIP file from Basecamp or GitHub issue |
79
+ | Research | `/investigate` | Explore codebase, update WIP with findings |
80
+ | Align | `/discuss` | Conversational alignment before acting |
81
+ | Build | `/implement` | Execute the plan — code changes only, no commits |
82
+ | Code checks | `/quality` | Lint, typecheck, test, package freshness |
83
+ | Browser checks | `/verify` | Walk through wiki's Testing.md checklist in Chrome |
84
+ | Capture | `/curate-wiki` | Update wiki with session learnings, audit CLAUDE.md/rules |
85
+
86
+ **Key principle:** each session generates knowledge. `/curate-wiki` captures it — including new testing patterns, edge cases, and failure modes discovered during `/implement` and `/verify`. This grows the wiki's Testing.md page over time, making future `/verify` runs more thorough. This is the learning organization in action.
87
+
88
+ Commands like `/research` and `/discuss` can be used at any stage. `/quality`, `/verify`, `/curate-wiki`, and `/wiki-audit` can run independently.
89
+
67
90
  ## References
68
91
 
69
92
  - See `simpleapps:basecamp` skill for MCP tools, Chrome fallback, and Basecamp navigation