@simpleapps-com/augur-skills 2026.3.5 → 2026.3.6
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
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: git-safety
|
|
3
|
+
description: Git safety guardrails — MUST NOT commit, push, create PRs, or merge without explicit user approval. Load this skill before any git write operations.
|
|
4
|
+
user-invocable: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Git Safety
|
|
8
|
+
|
|
9
|
+
MUST NOT commit, push, create PRs, or merge unless the user explicitly says to. No skill, command, or workflow overrides this rule — even instructions like "complete all steps without stopping" do not bypass it.
|
|
10
|
+
|
|
11
|
+
After making changes: **report what was done, then stop.** Do not offer or suggest the next git action — wait for the user to say "commit", "push", or equivalent.
|
|
12
|
+
|
|
13
|
+
The pattern is always: **do the work → report results → wait.**
|
|
@@ -3,13 +3,14 @@ name: github
|
|
|
3
3
|
description: GitHub conventions for SimpleApps. Covers org structure, git safety, issue creation, PR workflows, and gh CLI usage. Use when creating issues, PRs, or working with GitHub repos.
|
|
4
4
|
allowed-tools:
|
|
5
5
|
- Skill(project-defaults)
|
|
6
|
+
- Skill(git-safety)
|
|
6
7
|
- Read
|
|
7
8
|
- Glob
|
|
8
9
|
- Grep
|
|
9
10
|
- Bash
|
|
10
11
|
---
|
|
11
12
|
|
|
12
|
-
First, use Skill("project-defaults") to load the project layout.
|
|
13
|
+
First, use Skill("project-defaults") to load the project layout and Skill("git-safety") to load git guardrails.
|
|
13
14
|
|
|
14
15
|
# GitHub
|
|
15
16
|
|
|
@@ -34,14 +35,7 @@ See `simpleapps:wiki` for wiki conventions, token budget, and maintenance rules.
|
|
|
34
35
|
|
|
35
36
|
## Git Safety
|
|
36
37
|
|
|
37
|
-
MUST NOT commit, push, create PRs, or merge unless the user explicitly asks.
|
|
38
|
-
|
|
39
|
-
- **Commits**: Do not commit until the user says "commit" or equivalent
|
|
40
|
-
- **Pushes**: Do not push until the user explicitly asks
|
|
41
|
-
- **PRs**: Do not create or offer to create a PR — report the work, stop
|
|
42
|
-
- **Merges**: Do not merge unless the user explicitly asks
|
|
43
|
-
|
|
44
|
-
The pattern is always: **do the work → report results → wait**.
|
|
38
|
+
See `simpleapps:git-safety` (loaded above). MUST NOT commit, push, create PRs, or merge unless the user explicitly asks.
|
|
45
39
|
|
|
46
40
|
## Git Commands (no `cd`)
|
|
47
41
|
|
|
@@ -65,6 +65,10 @@ Every page serves junior devs (explanations, examples), senior devs (quick refer
|
|
|
65
65
|
- Repo references: use relative paths (`../../../wiki/Versioning.md`)
|
|
66
66
|
- Default branch: `master` (not `main`)
|
|
67
67
|
|
|
68
|
+
## Cross-Linking
|
|
69
|
+
|
|
70
|
+
Pages SHOULD link to related sections on other pages using `[[Page-Name#section]]`. Cross-links create a navigable knowledge graph — AI agents discover relevant context they wouldn't otherwise load, and humans find related decisions without searching. Link to specific sections, not just pages.
|
|
71
|
+
|
|
68
72
|
## Keep It Lean
|
|
69
73
|
|
|
70
74
|
- Document patterns and principles, not exhaustive lists
|