Skip to content

Commit 4027ea6

Browse files
mattpocockclaude
andcommitted
refactor(decision-mapping): rename to wayfinding
Reframe the planning skill around the Wayfinder persona — chart a route through a foggy problem, resolving tickets one at a time until the way to the goal is clear. "Decision map" was jargony and inaccurate (only 1 of 4 ticket types is a decision). Rename the folder and skill name, rewrite the description and framing, and prune: unify node->ticket, bind "frontier" to the unblocked set, drop the duplicated "one question at a time" (owned by /grilling), trim intro no-ops. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent b38badf commit 4027ea6

3 files changed

Lines changed: 27 additions & 18 deletions

File tree

.changeset/wayfinding-rename.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
"mattpocock-skills": minor
3+
---
4+
5+
Rename the **`decision-mapping`** skill to **`wayfinding`**, invoked as `/wayfinding`.
6+
7+
"Decision map" was jargony and inaccurate — only one of the skill's four ticket types (Grilling) is actually a decision. The skill is reframed around the **Wayfinder**: you chart a route through a foggy problem, resolving investigation tickets one at a time until the way to the goal is clear. This makes one coherent leading-word frame (fog of war / frontier / the map) instead of mixing an invented term on top of it.
8+
9+
Also a pruning pass: unified `node``ticket`, bound "the frontier" to the unblocked tickets, dropped the duplicated "one question at a time" (owned by `/grilling`), and trimmed intro no-ops.

skills/in-progress/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Skills that are still being developed. They're not ready to ship — expect rough edges, breaking changes, and abandoned experiments. They're excluded from the plugin and the top-level README until they graduate to a stable bucket.
44

5-
- **[decision-mapping](./decision-mapping/SKILL.md)**Turn a loose idea into a sequenced map of investigation tickets, then drive them to resolution one at a time. User-invoked.
5+
- **[wayfinding](./wayfinding/SKILL.md)**As the Wayfinder, chart a route through a foggy problem — turn a loose idea into a map of investigation tickets and resolve them one at a time until the way to the goal is clear. User-invoked.
66
- **[loop-me](./loop-me/SKILL.md)** — Grill yourself into implementable workflow specs over multiple sessions, using the current directory as a stateful workspace. User-invoked.
77
- **[wizard](./wizard/SKILL.md)** — Generate an interactive bash wizard that walks a human through a manual procedure (setup, a one-off migration, a state transition) — opening URLs, capturing values, writing `.env` and GitHub Actions secrets. User-invoked.
88
- **[writing-beats](./writing-beats/SKILL.md)** — Shape an article as a journey of beats, choose-your-own-adventure style. Pick a starting beat, write only that beat, then pivot to the next, until the article reaches a natural end.

skills/in-progress/decision-mapping/SKILL.md renamed to skills/in-progress/wayfinding/SKILL.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
name: decision-mapping
3-
description: Turn a loose idea into a sequenced map of investigation tickets, then drive them to resolution one at a time.
2+
name: wayfinding
3+
description: As the Wayfinder, chart a route through a foggy problem — turn a loose idea into a map of investigation tickets and resolve them one at a time until the way to the goal is clear.
44
disable-model-invocation: true
55
---
66

7-
This skill is invoked when a loose idea requires more than one agent session to turn into a plan. It creates a stateful decision map in a markdown file, and drives the user through a sequence of tickets to resolve the open questions - which may require either prototyping, research or grilling. The map is domain-agnostic: it plans engineering work, course content, or anything else that fits the same shape.
7+
You are the **Wayfinder**. A loose idea has arrived — too big for one agent session, and wrapped in fog: you can't yet see the route from here to a plan. Chart it: stand up a map, then work its tickets one at a time. The map is domain-agnosticengineering work, course content, whatever fits the shape.
88

9-
## The Decision Map
9+
## The Map
1010

11-
The decision map is a single compact Markdown file, one per planning effort, git-tracked alongside the project. It is the canonical artifact — the **whole map is loaded as context into every session**, so it must stay compact.
11+
The map is a single compact Markdown file, one per wayfinding effort, git-tracked alongside the project. It is the canonical artifact — the **whole map is loaded as context into every session**, so it must stay compact.
1212

1313
Assets created during tickets should be linked to from the map, not duplicated within it.
1414

@@ -53,19 +53,19 @@ There are four types of tickets:
5353

5454
## Fog of war
5555

56-
The map is _deliberately_ incomplete beyond the frontier. Your job is to investigate the frontier, and to resolve tickets in order to push the frontier forward. Push back the fog of war, one node at a timeuntil the path to the finish line is clear and no tickets remain.
56+
The map is _deliberately_ incomplete beyond the frontier — don't chart what you can't yet see. The frontier is the unblocked tickets at the edge of the known; resolve them to push it forward. Push back the fog of war one ticket at a time, until the way to the goal is clear and no tickets remain.
5757

5858
## Invocation
5959

6060
Two branches. Either way, **every session ends with a [Handoff](#handoff)** — never resolve more than one ticket per session.
6161

62-
### Create the map
62+
### Chart the map
6363

6464
User invokes with a loose idea.
6565

66-
1. Run a `/grilling` and `/domain-modeling` session to surface the open decisions. Ask one question at a time.
67-
2. Write a new decision map — mostly fog, frontier identified, trivially-decidable entries resolved inline.
68-
3. Handoff. Map-building is one session's work; do not also resolve tickets.
66+
1. Run a `/grilling` and `/domain-modeling` session to surface the open decisions.
67+
2. Write a new map — mostly fog, frontier identified, trivially-decidable entries resolved inline.
68+
3. Handoff. Charting the map is one session's work; do not also resolve tickets.
6969

7070
### Work through the map
7171

@@ -75,7 +75,7 @@ User invokes with a path to an existing map. A ticket slug is **optional** — w
7575
2. Choose the ticket. If the user named one, use it. Otherwise pick the first `open` ticket in document order that is [unblocked](#structure). [Claim it](#structure): set `Status: in-progress` and save before any work.
7676
3. Resolve it, invoking skills as needed — including any the `## Notes` block names. If in doubt, use `/grilling` and `/domain-modeling`.
7777
4. Record the answer in the ticket's body and set `Status: resolved`.
78-
5. Add newly-discovered tickets with correct `Blocked by` edges. If the decisions made invalidate other parts of the map, update or delete those nodes.
78+
5. Add newly-discovered tickets with correct `Blocked by` edges. If the decisions made invalidate other parts of the map, update or delete those tickets.
7979
6. Handoff.
8080

8181
The user may run unblocked tickets in parallel, so expect other agents to be editing the map in their own sessions.
@@ -91,18 +91,18 @@ End every session by clearing the context and opening one or more fresh sessions
9191
>
9292
> **One session** — resolves the next unblocked ticket:
9393
> ```
94-
> Invoke /decision-mapping with the map at <path>.
94+
> Invoke /wayfinding with the map at <path>.
9595
> ```
9696
>
9797
> **Parallel** — paste one line per window, up to all 3:
9898
> ```
99-
> Invoke /decision-mapping with the map at <path>, ticket auth-strategy.
100-
> Invoke /decision-mapping with the map at <path>, ticket cache-layer.
101-
> Invoke /decision-mapping with the map at <path>, ticket rate-limits.
99+
> Invoke /wayfinding with the map at <path>, ticket auth-strategy.
100+
> Invoke /wayfinding with the map at <path>, ticket cache-layer.
101+
> Invoke /wayfinding with the map at <path>, ticket rate-limits.
102102
> ```
103103
104-
**No open tickets remain.** The fog is pushed back far enough that the path to the finish line is clear — the map is done. (The initial grilling may also surface no fog at all, in which case there was never a map to build.) Recommend implementing directly, or using `/to-prd` to schedule a multi-session implementation.
104+
**No open tickets remain.** The fog is pushed back far enough that the way to the goal is clear — the map is done. (The initial grilling may also surface no fog at all, in which case there was never a map to chart.) Recommend implementing directly, or using `/to-prd` to schedule a multi-session implementation.
105105
106106
## Notes
107107
108-
An optional block declaring the **domain**, any skills every session should `consult`, and freeform standing preferences the planning surfaces.
108+
An optional block declaring the **domain**, any skills every session should `consult`, and freeform standing preferences for this effort.

0 commit comments

Comments
 (0)