RuleStack

Configs

Stacks

Compare

Diff

RuleStack

Configs

Stacks

Compare

Diff

Read API

RuleStack

Configs

Stacks

Compare

Diff

Read API

Configs/Cursor rules/danielvm-git/bigpowers

Cursor rule

.cursor/rules/quick-fix.mdc

Streamlined fast-path for trivial data-only fixes — no TDD, no branching ceremony. Collapses 6 skills into 2 for changes that are purely data with no logic risk. Aborts with fallback to investigate-bug if guardrails trigger.

Cursor rules

Quality

85/100

Scores the file, not the repository.

Length

706 words

13 headings · 4 code blocks

Repository

119

— · pushed 1 days ago

Last changed

3 days ago

First indexed 3 days ago.
danielvm-git/bigpowers/.cursor/rules/quick-fix.mdcRawGitHub
1---
2description: "Streamlined fast-path for trivial data-only fixes — no TDD, no branching ceremony. Collapses 6 skills into 2 for changes that are purely data with no logic risk. Aborts with fallback to investigate-bug if guardrails trigger."
3alwaysApply: false
4---
5 
6# Quick Fix
7 
8> **HARD GATE** — ALL entry criteria must pass before invoking quick-fix. If any guardrail triggers during execution, abort immediately and fall back to `investigate-bug`. Do NOT use quick-fix for logic changes, multi-file edits, or diffs > 5 lines.
9 
10Fast-track for trivial data-only fixes that do not require the full bug-fix chain.
11 
12When a bug fix is purely data — an add-missing-key, a typo correction, a config value update — the standard 6-skill chain (investigate-bug → diagnose-root → develop-tdd → kickoff-branch → verify-work → release-branch) is wasteful overhead. Quick-fix collapses it to 2 skills: **quick-fix** then **release-branch**.
13 
14## Discovered gate failures (e51s04)
15 
16A **Preflight**, **golden suite**, or **baseline red** failure discovered during unrelated work is valid quick-fix entry when the root cause is a data-only gap (missing key, typo, stale config) — **no user-reported bug required**. If guardrails abort (logic change, >1 file, >5 lines), fall back to `fix-bug` instead of narrating and continuing.
17 
18## Entry Criteria (ALL must be true)
19 
20Before invoking quick-fix, evaluate every item in this checklist:
21 
221. **Purely data change** — adding a missing key, fixing a typo, updating a config value, correcting a constant
232. **No logic change** — no function signature, condition, loop, or control flow is modified
243. **No refactor risk** — the change does not reorganize or rename existing structures
254. **No API surface change** — no exported symbol, interface, or contract changes
265. **Verifiable with a single assertion** — one test, one curl, one grep can prove it works
276. **Affects ≤ 1 file**
287. **Affects ≤ 5 lines changed**
29 
30## Guardrails (HARD ABORT — all must pass)
31 
32If ANY guardrail triggers, **abort immediately** and suggest `investigate-bug` instead:
33 
34| Guardrail | Check |
35|-----------|-------|
36| **>1 file** | The fix touches more than one file |
37| **>5 lines** | The diff exceeds 5 lines |
38| **Logic change** | Any function signature, condition, or loop is modified |
39| **Complex verify** | The verify command is more than one pipeline |
40| **Test breakage** | Running `npm test` or equivalent breaks any existing test |
41 
42> **Fallback:** If any guardrail triggers, tell the user: *"This fix exceeds quick-fix guardrails. Use `investigate-bug` for the full TDD bug-fix chain instead."*
43 
44## Fast-Path Workflow
45 
46Only 2 skills needed for eligible fixes:
47 
48```
49quick-fix → apply change, run one-line verify, commit with fix:
50release-branch → merge and ship (existing skill)
51```
52 
53**Skipped skills (with justification):**
54 
55| Skipped skill | Why skipped |
56|---------------|-------------|
57| `investigate-bug` | Root cause is obvious (data gap, not logic error) |
58| `diagnose-root` | No isolation needed — the data point is the root cause |
59| `develop-tdd` | No logic to test — single assertion proves correctness |
60| `kickoff-branch` | Change is so small it does not warrant a separate worktree |
61 
62> Justification is included in the `fix:` commit body so the audit trail is preserved.
63 
64## Process
65 
66### 1. Evaluate entry criteria
67 
68Run the entry criteria checklist above. If any criterion fails → abort, suggest `investigate-bug`.
69 
70### 2. Apply the fix
71 
72Make the data change — add the missing key, fix the typo, update the value. Keep it to ≤5 lines in 1 file.
73 
74### 3. Verify
75 
76Run the single-assertion verify command. Example:
77 
78```bash
79grep -q "Bosnia" src/flags.js && echo "FIX VERIFIED" || echo "FIX FAILED"
80```
81 
82### 4. Commit
83 
84```bash
85git add <file>
86git commit -m "fix(<scope>): <description>"
87git commit --amend -m "fix(<scope>): <description>
88 
89Skipped skills (justified for data-only change):
90- investigate-bug: root cause is a data gap, not a logic error
91- diagnose-root: the missing data point is the root cause
92- develop-tdd: single assertion proves correctness
93- kickoff-branch: change is too small for a separate worktree"
94```
95 
96### 5. Release
97 
98Invoke `release-branch` to merge and ship.
99 
100 
101## Example
102 
103### Bosnia flag missing from FLAGS dictionary
104 
105```gherkin
106Given a bug where FLAGS dictionary is missing entry "Bosnia"
107And no logic depends on the missing entry (purely a data gap)
108When the agent invokes quick-fix
109Then the missing entry is added to the dictionary
110And a one-line verify confirms the key exists: grep -q "Bosnia" src/flags.js
111And a fix: commit is created with the skipped-skills rationale in the body
112And the change is ready for release-branch
113```
114 

Commands it names

  • git add <file>
  • git commit -m "fix(<scope>): <description>"
  • git commit --amend -m "fix(<scope>): <description>
  • npm test

Sections

  • Quick Fix
  • Discovered gate failures (e51s04)
  • Entry Criteria (ALL must be true)
  • Guardrails (HARD ABORT — all must pass)
  • Fast-Path Workflow
  • Process
  • 1. Evaluate entry criteria
  • 2. Apply the fix
  • 3. Verify
  • 4. Commit
  • 5. Release
  • Example
  • Bosnia flag missing from FLAGS dictionary

What it covers

testcode-stylegit-prdeploymentagent-behaviour

Stack — with the evidence

shell

(0.80)

node

(0.70)

react

(0.70)

astro

(0.70)

express

(0.70)

vitest

(0.70)

typescript

(0.60)

javascript

(0.60)

python

(0.60)

github-actions

(0.60)

Format

Cursor rules

The most expressive format here. Many small .mdc files, each with frontmatter declaring when it should load, so a rule about migrations only enters context when a migration is open. Costs the most to maintain and only one editor reads it.

What the corpus says about it

Repository

Owner
danielvm-git
Language
—
License
—
Archived
no

All configs in this repo

Also in danielvm-git/bigpowers

Diff this repo’s formats

One repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?

The other instruction files in this repository
RepositoryFormatStackCoversScoreChanged
danielvm-git/bigpowers.cursor/rules/align-grid.mdc · 119Cursor rulesnodeshell+8lint-formatdo-notagent-behaviour65/1003 days ago
danielvm-git/bigpowers.cursor/rules/assess-impact.mdc · 119Cursor rulesshellnode+8testtesting-strategydeployment66/1003 days ago
danielvm-git/bigpowers.cursor/rules/audit-code.mdc · 119Cursor rulesshellnode+8setuptestlint-formatstyle+466/1003 days ago
danielvm-git/bigpowers.cursor/rules/audit-plan.mdc · 119Cursor rulesnodeshell+8buildteststylegit74/1003 days ago
danielvm-git/bigpowers.cursor/rules/build-epic.mdc · 119Cursor rulesshellnode+8buildgit58/1003 days ago
danielvm-git/bigpowers.cursor/rules/change-request.mdc · 119Cursor rulesshellnode+8no sections48/1003 days ago
danielvm-git/bigpowers.cursor/rules/commit-message.mdc · 119Cursor rulesshellnode+8lint-formatstyletypesgit+382/1003 days ago
danielvm-git/bigpowers.cursor/rules/compose-workflow.mdc · 119Cursor rulesshellnode+8styledo-notagent-behaviour65/1003 days ago
danielvm-git/bigpowers.cursor/rules/context7-mcp.mdc · 119Cursor rulesshellnode+8style54/1003 days ago
danielvm-git/bigpowers.cursor/rules/deepen-architecture.mdc · 119Cursor rulesshellnode+8testtesting-strategydo-not57/1003 days ago
danielvm-git/bigpowers.cursor/rules/define-language.mdc · 119Cursor rulesshellnode+8lint-formatdo-not65/1003 days ago
danielvm-git/bigpowers.cursor/rules/delegate-task.mdc · 119Cursor rulesshellnode+8git62/1003 days ago
danielvm-git/bigpowers.cursor/rules/deploy.mdc · 119Cursor rulesnodeshell+8setupbuildtestdeployment77/1003 days ago
danielvm-git/bigpowers.cursor/rules/develop-tdd.mdc · 119Cursor rulesshellnode+8teststylearchtesting-strategy+585/1003 days ago
danielvm-git/bigpowers.cursor/rules/diagnose-root.mdc · 119Cursor rulesshellnode+8no sections39/1003 days ago
danielvm-git/bigpowers.cursor/rules/dispatch-agents.mdc · 119Cursor rulesshellnode+8git54/1003 days ago
danielvm-git/bigpowers.cursor/rules/edit-document.mdc · 119Cursor rulesshellnode+8no sections39/1003 days ago
danielvm-git/bigpowers.cursor/rules/elaborate-spec.mdc · 119Cursor rulesshellnode+8test58/1003 days ago
danielvm-git/bigpowers.cursor/rules/enforce-first.mdc · 119Cursor rulesshellnode+8no sections50/1003 days ago
danielvm-git/bigpowers.cursor/rules/evolve-skill.mdc · 119Cursor rulesshellnode+8no sections50/1003 days ago
Diff against .cursor/rules/align-grid.mdc Diff against .cursor/rules/assess-impact.mdc Diff against .cursor/rules/audit-code.mdc Diff against .cursor/rules/audit-plan.mdc Diff against .cursor/rules/build-epic.mdc Diff against .cursor/rules/change-request.mdc Diff against .cursor/rules/commit-message.mdc Diff against .cursor/rules/compose-workflow.mdc Diff against .cursor/rules/context7-mcp.mdc Diff against .cursor/rules/deepen-architecture.mdc Diff against .cursor/rules/define-language.mdc Diff against .cursor/rules/delegate-task.mdc Diff against .cursor/rules/deploy.mdc Diff against .cursor/rules/develop-tdd.mdc Diff against .cursor/rules/diagnose-root.mdc Diff against .cursor/rules/dispatch-agents.mdc Diff against .cursor/rules/edit-document.mdc Diff against .cursor/rules/elaborate-spec.mdc Diff against .cursor/rules/enforce-first.mdc Diff against .cursor/rules/evolve-skill.mdc

Similar configs

Same format, overlapping stack, ranked by quality.

Same format, overlapping stack, ranked by quality
RepositoryFormatStackCoversScoreChanged
hiromaily/go-crypto-wallet.cursor/rules/typescript.mdc · 126Cursor rulesgobun+5setupbuildtestlint-format+6100/1003 days ago
TechSquidTV/Hermes.cursor/rules/10-hermes-api.mdc · 45Cursor rulestypescriptpytest+15testlint-formatstylearch+5100/1003 days ago
dodgecfr/combatfilms-webapp.cursor/rules/frontend.mdc · 0Cursor rulestypescriptturborepo+15setuptestlint-formatstyle+799/1003 days ago
deifos/clipmira-subtitles.cursor/rules/frontend.mdc · 1Cursor rulestypescriptnextjs+5setuptestlint-formatstyle+799/1003 days ago
markstev/mark-starter.cursor/rules/frontend.mdc · 0Cursor rulestypescriptturborepo+14setuptestlint-formatstyle+699/1003 days ago
Allymahmoud/case-intake-platform.cursor/rules/frontend.mdc · 0Cursor rulestypescriptturborepo+13setuptestlint-formatstyle+799/1003 days ago
langflow-ai/langflow.cursor/rules/docs_development.mdc · 153kCursor rulespythonnode+16setupbuildtestlint-format+797/1003 days ago
TechSquidTV/Hermes.cursor/rules/20-hermes-api-tests.mdc · 45Cursor rulestypescriptpytest+15teststyletesting-strategysecurity+397/1003 days ago
RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack