@leing2021/super-pi 0.30.5 → 0.30.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/README.md
CHANGED
|
@@ -109,12 +109,13 @@ Super Pi is not a fork or wrapper. It extracts useful methods from the projects
|
|
|
109
109
|
| Project | What Super Pi adopted |
|
|
110
110
|
|---------|------------------------|
|
|
111
111
|
| [addyosmani/agent-skills](https://github.com/addyosmani/agent-skills) | "Use when" skill trigger conditions, source-driven verification, stop-the-line hard gate, anti-rationalization, and the five-axis review baseline. Adopted as embedded micro-patterns only — no new skills, tools, commands, or agents. |
|
|
112
|
-
| [everything-claude-code](https://github.com/affaan-m/
|
|
112
|
+
| [everything-claude-code (ECC)](https://github.com/affaan-m/ECC) | Checkpoint resume, continuous learning loops, and token-conscious agent workflow design. (Repo renamed; original link dead.) |
|
|
113
113
|
| [humanlayer/12-factor-agents](https://github.com/humanlayer/12-factor-agents) | Context window ownership, compacting resolved errors, retry caps, and pre-fetching obvious prerequisites. Adopted as lightweight context hygiene rules inside the existing Phase 1 pipeline. |
|
|
114
|
-
| [superpowers](https://github.com/obra/superpowers) | Strict TDD gates, design checklists, review discipline, and the idea that agents need hard gates instead of gentle suggestions. |
|
|
115
|
-
| [compound-engineering-plugin](https://github.com/EveryInc/compound-engineering-plugin) | The five-step think → plan → build → review → learn loop
|
|
114
|
+
| [superpowers](https://github.com/obra/superpowers) | Strict TDD gates, design checklists, review discipline, the rationalization table (excuse → reality), and the idea that agents need hard gates instead of gentle suggestions. |
|
|
115
|
+
| [compound-engineering-plugin](https://github.com/EveryInc/compound-engineering-plugin) | The five-step think → plan → build → review → learn loop, the knowledge-compounding backbone, and solution retirement (knowledge must be able to leave, not only accumulate). |
|
|
116
116
|
| [gstack](https://github.com/garrytan/gstack) | YC-style forcing questions, CEO Review cognitive frameworks, browser QA patterns, failure maps, and evidence-first validation. |
|
|
117
117
|
| [mattpocock/skills](https://github.com/mattpocock/skills) | Context glossary (`CONTEXT.md`), lightweight ADR (three-condition threshold + "What qualifies" catalog), feedback-loop-first debug discipline, deep-module vocabulary (module/interface/depth/seam/adapter/leverage/locality + internal seams + rejected framings), interview discipline (facts-vs-decisions, one-question-at-a-time), the review Spec axis, and the out-of-scope knowledge base. Absorbed as self-contained `skills/references/` content — no external path deps, no issue-tracker deps, no standalone skills grafted (super-pi's existing 01-brainstorm/domain-language/module-design already cover the active disciplines). |
|
|
118
|
+
| [DietrichGebert/ponytail](https://github.com/DietrichGebert/ponytail) | The Ladder (7-rung minimalism decision chain: need-to-exist → codebase reuse → stdlib → platform-native → installed dep → one line → minimum), the `debt:` marker convention (name the ceiling and upgrade trigger), and dependency-axis review tags (`stdlib:` / `native:` / `dependency:`) flowing into the 04-review Standards axis. Embedded into `rules/common/` — no intensity tiers, no hooks/MCP, no standalone skills. |
|
|
118
119
|
|
|
119
120
|
---
|
|
120
121
|
|
package/package.json
CHANGED
package/skills/03-work/SKILL.md
CHANGED
|
@@ -55,6 +55,15 @@ Anti-rationalization — when a gate fails or evidence is missing:
|
|
|
55
55
|
- Stop, report the blocker with evidence, and either fix the root cause or ask for direction.
|
|
56
56
|
- Do not continue unrelated implementation after failed verification.
|
|
57
57
|
|
|
58
|
+
Common rationalizations and their reality:
|
|
59
|
+
|
|
60
|
+
| Excuse | Reality |
|
|
61
|
+
|--------|---------|
|
|
62
|
+
| "Close enough — the gate almost passed" | A failed gate means not done. Fix it or stop and report; those are the only exits. |
|
|
63
|
+
| "One more retry will converge" | Past the 3-failure cap, retries do not converge — the failure is structural. Ask for direction. |
|
|
64
|
+
| "The fix is tiny, skip re-verification" | Unverified fixes are how regressions land. Every fix ends with verification. |
|
|
65
|
+
| "This failure is a special case" | No evidence, no exception. Treat it like every other failure. |
|
|
66
|
+
|
|
58
67
|
This is a hard gate — do not push past a failing test or broken build to continue implementation. Errors compound.
|
|
59
68
|
|
|
60
69
|
## Error compaction after recovery
|
package/skills/05-learn/SKILL.md
CHANGED
|
@@ -37,7 +37,7 @@ See [shared pipeline instructions](../references/pipeline-config.md) for model r
|
|
|
37
37
|
- Every solution MUST include YAML frontmatter per `references/solution-schema.yaml` (title, category, severity, tags, applies_when).
|
|
38
38
|
- Use `references/category-map.md` to map the problem to the correct solution category.
|
|
39
39
|
- Check for overlap with nearby solution docs before creating a new artifact.
|
|
40
|
-
- Use `references/overlap-rules.md` to decide whether to create, update, or
|
|
40
|
+
- Use `references/overlap-rules.md` to decide whether to create, update, consolidate, or retire.
|
|
41
41
|
- Use **`pattern_extractor`** to identify recurring patterns across existing artifacts before writing a new solution.
|
|
42
42
|
- Structure the document with `assets/solution-template.md`.
|
|
43
43
|
- Determine storage level:
|
|
@@ -5,3 +5,13 @@ Use these overlap levels when deciding whether to create a new solution doc or u
|
|
|
5
5
|
- **High** — same problem, same root cause, and same solution approach. Update the existing doc.
|
|
6
6
|
- **Moderate** — related problem area but a different angle or solution. Create a new doc and cross-link it.
|
|
7
7
|
- **Low** — only loosely related. Create a distinct doc.
|
|
8
|
+
|
|
9
|
+
## Retirement
|
|
10
|
+
|
|
11
|
+
When an existing solution is discovered stale — the described code/API no longer exists, or the fix has been superseded:
|
|
12
|
+
|
|
13
|
+
- **Superseded** — fold into the replacing solution (keep the old tags searchable there) and delete the old one.
|
|
14
|
+
- **Dead reference** — delete. Git is the archive; no tombstones.
|
|
15
|
+
- **Scope narrowed** — update `applies_when` instead of deleting.
|
|
16
|
+
|
|
17
|
+
Never leave an artifact describing code that no longer exists — stale solutions pollute every future search.
|