@simpleapps-com/augur-skills 2026.3.27 → 2026.3.28
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.
|
|
@@ -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.
|