@simpleapps-com/augur-skills 2026.3.15 → 2026.3.17

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.15",
3
+ "version": "2026.03.17",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -16,12 +16,15 @@ All projects live under `~/projects/` in two groups:
16
16
  ~/projects/
17
17
  ├── simpleapps/ # Internal repos (augur-*, shared infra)
18
18
  │ └── <repo-name>/
19
- └── clients/ # Client site repos
20
- └── <site-name>/
19
+ ├── clients/ # Client site repos
20
+ └── <site-name>/
21
+ └── workspaces/ # VSCode/Cursor workspace files
22
+ └── <project-name>.code-workspace
21
23
  ```
22
24
 
23
25
  - Internal repos go in `~/projects/simpleapps/`
24
26
  - Client site repos go in `~/projects/clients/`
27
+ - Workspace files go in `~/projects/workspaces/` — one `.code-workspace` per project
25
28
 
26
29
  ## Project Directory Layout
27
30
 
@@ -36,7 +39,7 @@ Every project MUST use this layout:
36
39
  ├── wiki/ # Wiki repo (simpleapps-com/<name>.wiki.git)
37
40
  ├── wip/ # Work-in-progress files (not in git)
38
41
  ├── tmp/ # Temporary files (not in git)
39
- └── .simpleapps/ # Credentials (not in git)
42
+ └── .simpleapps/ # Config, credentials, site profile (not in git)
40
43
  ```
41
44
 
42
45
  The parent `{project}/` is NOT a git repo — it keeps code and wiki side-by-side. The git repo is always at `repo/`. Use `git -C repo` for git operations from the project root.
@@ -49,17 +52,70 @@ The parent `{project}/` is NOT a git repo — it keeps code and wiki side-by-sid
49
52
  | Repo `.claude/CLAUDE.md` | `repo/` | Quick reference + wiki links |
50
53
  | Active task context | `wip/` | `{issue-number}-{short-desc}.md` files |
51
54
  | Temporary files | `tmp/` | Throwaway files, scratch space, build artifacts |
52
- | Project secrets | `{project}/.simpleapps/` | Site-specific credentials |
53
- | Global secrets | `~/.simpleapps/` | Shared credentials across all projects |
55
+ | SimpleApps config | `.simpleapps/` | Settings, site profile, credentials (see below) |
54
56
 
55
57
  **WIP**: Research, plans, decisions, test results. MUST NOT contain secrets, final docs, or code.
56
58
 
57
- **Credentials**: Project-level (`.simpleapps/`) overrides user-level (`~/.simpleapps/`). MUST NOT be committed.
58
-
59
59
  ## Plugin Rules
60
60
 
61
61
  The plugin ships rule templates in `plugins/simpleapps/rules/` that MUST exist in every project's `repo/.claude/rules/`. Rules are always loaded into context — they enforce baseline guardrails (like git safety) without depending on a skill being invoked. The `/project-init` command copies missing rules from the plugin into the project.
62
62
 
63
+ ## .simpleapps/ Configuration
64
+
65
+ Two scopes, project overrides user:
66
+
67
+ ```
68
+ ~/.simpleapps/ # User global
69
+ ├── settings.json # Config (projectRoot, orgName)
70
+ ├── basecamp.json # Basecamp MCP credentials
71
+ └── augur-api.json # Augur API MCP credentials
72
+
73
+ {project}/.simpleapps/ # Project (gitignored)
74
+ ├── settings.json # Project config overrides
75
+ ├── site.json # Site profile (defaults, PII, auth)
76
+ ├── basecamp.json # Project basecamp overrides (if needed)
77
+ └── augur-api.json # Project augur-api overrides (if needed)
78
+ ```
79
+
80
+ ### File types
81
+
82
+ | File | Scope | Purpose | Read by |
83
+ |------|-------|---------|---------|
84
+ | `settings.json` | Global + project | Infrastructure config | All skills via project-defaults |
85
+ | `site.json` | Project only | Site profile — defaults, search terms, PII, auth | Skills needing site context |
86
+ | `basecamp.json` | Global + project | Basecamp MCP credentials | Basecamp MCP server |
87
+ | `augur-api.json` | Global + project | Augur API MCP credentials | Augur API MCP server |
88
+
89
+ ### settings.json
90
+
91
+ ```json
92
+ {
93
+ "projectRoot": "~/projects"
94
+ }
95
+ ```
96
+
97
+ Resolution: read `{project}/.simpleapps/settings.json` first, fall back to `~/.simpleapps/settings.json`, fall back to defaults. Field-level override — project wins for any field it defines.
98
+
99
+ ### site.json
100
+
101
+ One per client project. Consistent structure across all sites — same fields, different values. Replaces the old `{siteId}.json` pattern.
102
+
103
+ ```json
104
+ {
105
+ "siteId": "...",
106
+ "siteName": "...",
107
+ "auth": { },
108
+ "defaults": { }
109
+ }
110
+ ```
111
+
112
+ ### Rules
113
+
114
+ - MUST NOT commit `.simpleapps/` to git — contains PII and credentials
115
+ - MUST NOT save site data to wiki or memory — PII
116
+ - MUST NOT create `{siteId}.json` files — use `site.json` instead
117
+ - If old `{siteId}.json` files exist, `/project-init` will flag them for migration to `site.json`
118
+
63
119
  ## Symlink Setup
64
120
 
65
121
  The repo contains `.claude/rules/` and `.claude/commands/` with project-specific rules and commands. To make these active from the project root (without starting Claude Code inside `repo/`), symlink them into the project-level `.claude/` folder:
@@ -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