@simpleapps-com/augur-skills 2026.3.27 → 2026.3.29
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
|
@@ -51,11 +51,13 @@ The parent `{project}/` is NOT a git repo — it keeps code and wiki side-by-sid
|
|
|
51
51
|
| Repo `.claude/rules/` | `repo/` | Minimal summaries referencing wiki |
|
|
52
52
|
| Repo `.claude/CLAUDE.md` | `repo/` | Quick reference + wiki links |
|
|
53
53
|
| Active task context | `wip/` | `{issue-number}-{short-desc}.md` files |
|
|
54
|
-
| Temporary files | `tmp/` |
|
|
54
|
+
| Temporary files | `tmp/` | Scratch space — commit msgs, PR bodies, intermediate output. Full access. |
|
|
55
55
|
| SimpleApps config | `.simpleapps/` | Settings, site profile, credentials (see below) |
|
|
56
56
|
|
|
57
57
|
**WIP**: Research, plans, decisions, test results. MUST NOT contain secrets, final docs, or code.
|
|
58
58
|
|
|
59
|
+
**tmp/**: Fully available for scratch work — commit messages, PR bodies, issue comments, intermediate output, and any throwaway files. Read, write, and delete freely without asking. Create the folder if missing. Clean up files after use.
|
|
60
|
+
|
|
59
61
|
## Plugin Rules
|
|
60
62
|
|
|
61
63
|
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.
|
|
@@ -77,6 +77,12 @@ If a rule or test seems wrong, investigate why it exists before concluding it sh
|
|
|
77
77
|
|
|
78
78
|
When reviewing code, scan for existing suppressions (`eslint-disable`, `@ts-ignore`, `.skip`, `noqa`, `phpcs:ignore`, etc.) and flag every instance to the user. These are hidden technical debt.
|
|
79
79
|
|
|
80
|
+
## pnpm lockfile sync
|
|
81
|
+
|
|
82
|
+
In pnpm workspace projects, the root `pnpm-lock.yaml` and site-level lockfiles MUST stay in sync. CI uses `--frozen-lockfile` and will reject mismatched lockfiles — this is the most common cause of deploy failures.
|
|
83
|
+
|
|
84
|
+
After ANY `pnpm install`, `pnpm update`, or `pnpm add` in a workspace, run `pnpm install` at the repo root to regenerate the root lockfile. Commit both lockfiles together. If you forget, the next deploy will fail.
|
|
85
|
+
|
|
80
86
|
## Browser Error Overlays
|
|
81
87
|
|
|
82
88
|
When debugging in the browser (Chrome automation), Next.js and other frameworks show a **red error overlay** at the bottom of the page when there are runtime errors. This overlay contains the actual error message, stack trace, and usually the exact file and line number causing the problem.
|
|
@@ -21,6 +21,10 @@ Reserve Bash for commands that have no dedicated tool equivalent.
|
|
|
21
21
|
|
|
22
22
|
MUST NOT use `cd` in any Bash command — not even in compound commands like `cd /path && git log`. Use `git -C repo` for git, and path arguments for everything else. The `cd` deny rule does not suppress Claude Code's built-in security prompt for compound cd+git commands, so any `cd` usage will interrupt the user.
|
|
23
23
|
|
|
24
|
+
## Check site.json first
|
|
25
|
+
|
|
26
|
+
Before asking the user for credentials, tokens, siteId, domain, or any site-specific configuration, read `.simpleapps/site.json`. It is the single source of truth for site-level data — credentials, auth tokens, defaults, and identifiers. If what you need is not there, ask the user to add it to `site.json` rather than providing it in chat (chat data is ephemeral; `site.json` persists across sessions).
|
|
27
|
+
|
|
24
28
|
## Read the error first
|
|
25
29
|
|
|
26
30
|
When debugging in the browser, MUST check for error overlays (red error pill/badge at the bottom of the page) before guessing at the problem. Click it, read the full error, stack trace, and source location. The answer is almost always right there.
|