Cursor rule
.cursor/rules/find-way.mdcPlan a large effort as a shared map of decision tickets on an issue tracker, resolving them one at a time until the way is clear. Use when an idea is too big for one session, needs structured exploration before implementation, or requires mapping decisions before building.
Cursor rules
Quality
54/100
Scores the file, not the repository.Length
1,145 words
29 headings · 2 code blocksRepository
119
— · pushed 1 days agoLast changed
3 days ago
First indexed 3 days ago.123456# Find Way78## Concept910A large effort arrives — too big for one session, wrapped in fog. **Find-way** charts the way as a **shared map** on the repo's issue tracker, then works **decision tickets** — questions whose resolution is a decision, not build slices — one at a time until the route is clear.1112**Plan, don't do.** Each ticket resolves a decision. The map is done when the way is clear — nothing left to decide before someone executes.1314**Refer by name.** Every map and ticket is an issue with a title. Always use the name, never bare ids or numbers.1516## The Map1718A single issue labelled `wayfinder:map` — the canonical artifact. Child issues are its tickets.1920```markdown21## Destination22<what reaching the end looks like — one or two lines>2324## Notes25<domain, skills to consult, standing preferences>2627## Decisions so far28- [closed ticket title](link) — one-line gist2930## Not yet specified31<in-scope fog you can't ticket yet>3233## Out of scope34<work ruled beyond the destination>35```3637## Ticket Types3839| Type | Label | Mode | Purpose |40|------|-------|------|---------|41| Research | `wayfinder:research` | AFK | Surface facts from docs/APIs |42| Prototype | `wayfinder:prototype` | HITL | Cheap artifact to react to |43| Grilling | `wayfinder:grilling` | HITL | One-question-at-a-time dialogue |44| Task | `wayfinder:task` | Either | Manual work unblocking a decision |4546**HITL** = human in the loop. **AFK** = agent alone.4748## Two Modes4950### Chart the Map5152User invokes with a loose idea.53541. **Name the destination** — grill to pin down what this map finds its way to552. **Map the frontier** — breadth-first: surface open decisions and first steps. If no fog emerges, the effort fits one session — skip the map563. **Create the map** issue (label `wayfinder:map`)574. **Create tickets** as child issues, then wire blocking edges in a second pass585. **Fire research subagents** for each `research` ticket in parallel596. Stop — charting resolves nothing6061### Work Through the Map6263User invokes with a map (URL/number). Ticket optional — without one, pick the next frontier ticket.64651. Load the map (low-res view)662. **Choose & claim** — assign ticket before any work673. **Resolve** — zoom into related/closed tickets as needed684. **Record** — post resolution comment, close issue, append to Decisions-so-far695. **Graduate fog** — create new tickets from newly-specifiable fog, clear from Not-yet-specified706. **Rule out of scope** if resolution reveals something past the destination7172**Never resolve more than one ticket per session** (except research).7374## Fog of War7576Beyond live tickets lies the **fog** — decisions you can tell are coming but can't pin down yet. The **Not yet specified** section holds this dim view.7778**Fog or ticket?** Test: can you state the question precisely now?7980- **Ticket** when the question is sharp (even if blocked)81- **Not yet specified** when you can't phrase it sharply yet8283## Out of Scope8485Work beyond the destination. Ruling something out is a scoping act, not a route step. Never graduates — returns only if destination is redrawn.8687If an existing ticket sits past the destination, close it and note in Out of scope.8889## Blocking & Frontier9091- **Blocking**: tracker's native dependency relationship92- **Unblocked**: every blocker is closed93- **Frontier**: open, unblocked, unclaimed children — the edge of the known9495## Detailed Reference9697See [REFERENCE.md](REFERENCE.md) for ticket anatomy, resolution protocol, and examples.9899---100101# Find-Way Reference102103## Ticket Anatomy104105Each ticket holds one question, sized to one 100K token agent session:106107```markdown108## Question109110<the decision or investigation this ticket resolves>111```112113**Labels:** `wayfinder:research`, `wayfinder:prototype`, `wayfinder:grilling`, or `wayfinder:task`114115**Claim:** Assign to yourself before any work — claim blocks concurrent sessions.116117**Blocking:** Use tracker's native dependency relationship so the frontier renders visually.118119**Resolution:** Post answer as a comment, close the issue, append to map's Decisions-so-far.120121## Resolution Protocol1221231. **Load the map** — read low-res view, not every ticket body1242. **Choose & claim** — assign ticket to yourself (or take first frontier ticket if not named)1253. **Resolve** — zoom into related/closed tickets as needed; invoke skills the Notes block names1264. **Record** — post resolution comment with the answer, close the issue1275. **Update map** — append to Decisions-so-far with one-line gist + link1286. **Graduate fog** — create new tickets from newly-specifiable fog; clear from Not-yet-specified1297. **Rule out of scope** if resolution reveals something past the destination130131## Ticket Types in Detail132133### Research (AFK)134Surfacing facts from docs, APIs, or knowledge bases that a decision waits on.135- Resolved by a `/research` subagent136- Use when knowledge outside the working directory is required137- **Label:** `wayfinder:research`138139### Prototype (HITL)140Raise fidelity by building cheap, rough, concrete artifact to react to — outline, stub, UI/logic code.141- Use the `/prototype` skill142- Links the prototype as an asset143- Use when "how should it look" or "how should it behave" is key144- **Label:** `wayfinder:prototype`145146### Grilling (HITL)147Conversation via `/grilling` and `/domain-modeling` skills, one question at a time.148- The default case for clarifying decisions149- **Label:** `wayfinder:grilling`150151### Task (HITL or AFK)152Manual work unblocking a decision — signing up for service, provisioning access, moving data.153- This is the **only** type that does rather than decides154- Earns its place by unblocking a decision, not by delivering the destination155- Agent drives AFK tasks alone; HITL tasks get precise checklist156- **Label:** `wayfinder:task`157158## Fog-to-Ticket Graduation159160When resolving a ticket clears fog, graduate the newly-specifiable bits into fresh tickets:1611621. **Identify the fog** in Not-yet-specified that the resolution illuminates1632. **Create new tickets** with crisp question statements1643. **Wire blocking edges** if the new tickets depend on each other or existing ones1654. **Clear from fog** — remove the graduated patch from Not-yet-specified so it lives only as its ticket166167## Out-of-Scope Close Protocol168169If a ticket turns out to sit past the destination:1701711. **Close the ticket** — mark it resolved or won't-fix1722. **Add one line to Out of scope** — gist + why it's out of scope, linking the closed ticket1733. **Never append to Decisions so far** — scope boundaries aren't steps on the route174175## Map State Transitions176177| State | Meaning | Action |178|-------|---------|--------|179| **Open, unblocked, unclaimed** | Frontier — ready to take | Claim and resolve |180| **Open, blocked** | Waiting on something | Wait for blockers to close |181| **Open, claimed** | Concurrent session working | Skip for now |182| **Closed** | Decided — lives in Decisions so far | Reference, don't re-open |183184## Concurrency185186Users may run unblocked tickets in parallel, so expect the tracker to be edited concurrently. Always:187188- Refresh the map before picking a ticket189- Claim immediately before starting work190- Never assume state hasn't changed since last read191
Also in danielvm-git/bigpowers
Diff this repo’s formatsOne 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?
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| danielvm-git/bigpowers.cursor/rules/align-grid.mdc · 119 | Cursor rules | lint-formatdo-notagent-behaviour | 65/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/assess-impact.mdc · 119 | Cursor rules | testtesting-strategydeployment | 66/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/audit-code.mdc · 119 | Cursor rules | setuptestlint-formatstyle+4 | 66/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/audit-plan.mdc · 119 | Cursor rules | buildteststylegit | 74/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/build-epic.mdc · 119 | Cursor rules | buildgit | 58/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/change-request.mdc · 119 | Cursor rules | no sections | 48/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/commit-message.mdc · 119 | Cursor rules | lint-formatstyletypesgit+3 | 82/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/compose-workflow.mdc · 119 | Cursor rules | styledo-notagent-behaviour | 65/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/context7-mcp.mdc · 119 | Cursor rules | style | 54/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/deepen-architecture.mdc · 119 | Cursor rules | testtesting-strategydo-not | 57/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/define-language.mdc · 119 | Cursor rules | lint-formatdo-not | 65/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/delegate-task.mdc · 119 | Cursor rules | git | 62/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/deploy.mdc · 119 | Cursor rules | setupbuildtestdeployment | 77/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/develop-tdd.mdc · 119 | Cursor rules | teststylearchtesting-strategy+5 | 85/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/diagnose-root.mdc · 119 | Cursor rules | no sections | 39/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/dispatch-agents.mdc · 119 | Cursor rules | git | 54/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/edit-document.mdc · 119 | Cursor rules | no sections | 39/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/elaborate-spec.mdc · 119 | Cursor rules | test | 58/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/enforce-first.mdc · 119 | Cursor rules | no sections | 50/100 | 3 days ago | |
| danielvm-git/bigpowers.cursor/rules/evolve-skill.mdc · 119 | Cursor rules | no sections | 50/100 | 3 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.
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| TechSquidTV/Hermes.cursor/rules/10-hermes-api.mdc · 45 | Cursor rules | testlint-formatstylearch+5 | 100/100 | 3 days ago | |
| hiromaily/go-crypto-wallet.cursor/rules/typescript.mdc · 126 | Cursor rules | setupbuildtestlint-format+6 | 100/100 | 3 days ago | |
| markstev/mark-starter.cursor/rules/frontend.mdc · 0 | Cursor rules | setuptestlint-formatstyle+6 | 99/100 | 3 days ago | |
| dodgecfr/combatfilms-webapp.cursor/rules/frontend.mdc · 0 | Cursor rules | setuptestlint-formatstyle+7 | 99/100 | 3 days ago | |
| deifos/clipmira-subtitles.cursor/rules/frontend.mdc · 1 | Cursor rules | setuptestlint-formatstyle+7 | 99/100 | 3 days ago | |
| Allymahmoud/case-intake-platform.cursor/rules/frontend.mdc · 0 | Cursor rules | setuptestlint-formatstyle+7 | 99/100 | 3 days ago | |
| langflow-ai/langflow.cursor/rules/docs_development.mdc · 153k | Cursor rules | setupbuildtestlint-format+7 | 97/100 | 3 days ago | |
| TechSquidTV/Hermes.cursor/rules/20-hermes-api-tests.mdc · 45 | Cursor rules | teststyletesting-strategysecurity+3 | 97/100 | 3 days ago |
