@complexthings/superpowers-agent 8.2.2 → 8.3.1

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.
@@ -1,9 +1,11 @@
1
1
  # SUPERPOWERS Reference Guide
2
2
 
3
+ You are an autonomous agent with access to the `superpowers-agent` system. Reference documentation is in the `AGENTS.md` and the detailed reference guide below.
4
+
3
5
  > This is detailed reference documentation for the superpowers-agent system.
4
6
  > Load this file only when you need specific information not covered in AGENTS.md.
5
7
 
6
- **Current Version:** ^^SAV:7.1.2^^
8
+ **Bootstrapped Version:** `^^SAV:7.1.2^^`
7
9
 
8
10
  ---
9
11
 
@@ -17,92 +19,24 @@ npm install -g @complexthings/superpowers-agent
17
19
 
18
20
  ---
19
21
 
20
- ## Version Detection Details
21
-
22
- When superpowers-agent runs, it displays its version as `^^SAV:X.Y.Z^^` in output.
22
+ ## Version Check
23
23
 
24
- **How to check for updates:**
25
- 1. Note the bootstrapped version in AGENTS.md: `^^SAV:7.1.2^^`
26
- 2. Compare with version shown when running superpowers-agent commands
27
- 3. If versions differ, inform user:
28
- ```
24
+ At conversation start:
25
+ 1. Run a superpowers-agent command and note the version string `^^SAV:X.Y.Z^^` in output
26
+ 2. Compare against bootstrapped version `^^SAV:7.1.2^^`
27
+ 3. If they differ, notify the user:
29
28
  Your superpowers-agent may have updates. Run:
29
+ ```sh
30
30
  superpowers-agent update && superpowers-agent bootstrap && superpowers-agent setup-skills
31
31
  ```
32
32
 
33
- **When to check:**
34
- - At conversation start
35
- - When commands behave unexpectedly
36
- - When user asks about updates or capabilities
37
-
38
- ---
39
-
40
- ## Skill Locations
41
-
42
- ### Project Skills (highest priority)
43
- - `.agents/skills/`
44
- - `.claude/skills/`
45
- - `.copilot/skills/`
46
- - `.opencode/skill/`
47
- - `.cursor/skills/`
48
- - `.gemini/skills/`
49
- - `.codex/skills/`
50
-
51
- ### Personal Skills
52
- - `~/.agents/skills/`
53
- - `~/.claude/skills/`
54
- - `~/.copilot/skills/`
55
- - `~/.config/opencode/skill/`
56
- - `~/.cursor/skills/`
57
- - `~/.gemini/skills/`
58
- - `~/.codex/skills/`
59
-
60
- ### Superpowers Skills
61
- - `~/.agents/superpowers/skills/`
62
-
63
- **Priority:** Project > Personal > Superpowers (when names match)
64
-
65
- ---
66
-
67
- ## Skill Naming Conventions
68
-
69
- | Prefix | Source |
70
- |--------|--------|
71
- | `skill-name` | Project skills |
72
- | `claude:skill-name` | Claude skills |
73
- | `copilot:skill-name` | Copilot skills |
74
- | `opencode:skill-name` | OpenCode skills |
75
- | `cursor:skill-name` | Cursor skills |
76
- | `gemini:skill-name` | Gemini skills |
77
- | `codex:skill-name` | Codex skills |
78
- | `superpowers:skill-name` | Superpowers skills |
79
-
80
33
  ---
81
34
 
82
- ## Creating New Skills
83
-
84
- 1. Use the `brainstorming` skill to plan the skill
85
- 2. Use the `writing-skills` skill to create it
86
- 3. Test with `testing-skills-with-subagents`
87
- 4. Save to `.agents/skills/` (project) or `~/.agents/superpowers/skills/` (global)
88
-
89
- ---
90
-
91
- ## Skills with Checklists
92
-
93
- If a skill has a checklist, create todos for EACH item. Mental tracking = steps get skipped.
35
+ ## Skill Loading Rules
94
36
 
95
- ---
96
-
97
- ## Common Mistakes to Avoid
98
-
99
- Reject these rationalizations:
100
-
101
- - "I'll read all the skills upfront to understand them" -> Load JIT only
102
- - "This is too simple for a skill" -> Simple tasks benefit most from proven process
103
- - "I already know how to do this" -> Skills encode edge cases you'll miss
104
- - "I'll just skim the skill" -> Follow instructions exactly as written
105
-
106
- ---
37
+ - Load skills **JIT only** — never preload to "understand" them
38
+ - Follow skill instructions **exactly as written** — no skimming, no shortcuts
39
+ - If a skill has a checklist, create a todo for **each item** — no mental tracking
40
+ - Simple tasks benefit from skills as much as complex ones
107
41
 
108
- *Generated by Superpowers on 2026-03-13*
42
+ **Skill priority (highest to lowest):** Project → Personal → Superpowers