Matt Pocock's wayfinder skill, part of his open-source "AI Skills for Real Engineers" collection with 237,000-plus GitHub stars, turns multi-session AI projects into a shared map of decision tickets on your issue tracker S¹P⁵. By entering the /wayfinder command, the agent plots an unclear path toward your end goal and then stops, leaving the actual coding for later S²S³. When your project is too big for one agent session, do you plan it manually or let the agent draw the map?
My read: This is the first AI planning skill I have seen that treats decisions as first-class objects rather than tasks. Most agent tools try to do more, but Wayfinder deliberately does less, mapping the route and then stopping. That restraint is the whole point, and it is what makes it credible for work that spans days or weeks rather than minutes. I do not buy that every team will adopt the decision-ticket model overnight, but the design is sound for the narrow problem it targets.
How the map works
For projects that exceed the capacity of a single agent interaction, where the end goal is known but the path is not, Wayfinder creates a collective set of decision tickets within your existing issue tracker P⁴S². The map is a single issue on your repo's tracker, labelled wayfinder:map S³. Its tickets are child issues of that map S³.
The map is an index, not a store. It lists the decisions made and points at the tickets that hold their detail. A decision lives in exactly one place: its ticket. The map never restates it, only gists it and links S³.
Each ticket contains a query that culminates in a choice, rather than a portion of a build to be carried out S²S³. Once the map is finalized, wayfinder steps back and refrains from proceeding into the coding phase S²S³. An effort can override this in its Notes, carrying execution into the map itself, but absent that override, wayfinder produces decisions, not deliverables S³.

Why it runs only on command
The skill specification includes a metadata flag disable-model-invocation set to true S³P⁶. The agent will not reach for wayfinder on its own. It is triggered manually via the /wayfinder command S². This is deliberate. Wayfinder is the heaviest, densest flow in the set, so the trigger is narrow: the scope must truly surpass what one agent session can manage, and the path to the end goal must be unclear S².
Pocock suggests an alternative skill, /grill-with-docs, for planning within a single session. The division is straightforward: use /grill-with-docs for single-session tasks and /wayfinder for those spanning multiple sessions S².
The advantages
Decisions before code. Wayfinder forces you to answer the questions that block progress before you write implementation. Each ticket is a decision, not a task, so you resolve ambiguity first S²S³.
Human-readable by design. Maps and tickets are referred to by their title names, never by bare IDs, numbers, or slugs in anything the human reads S³. The map's Decisions-so-far section uses plain language.
Works with your existing tracker. The skill writes to your repo's issue tracker. If no tracker is provided, it defaults to a local-markdown tracker S³. You do not need a new tool.
Domain-agnostic. The map works for engineering work, course content, or anything that fits the shape: a destination you can name, a route you cannot S³.
Planning-only by default. Upon finishing the map, Wayfinder transfers control. It avoids slipping into code generation unless a specific override is provided in the effort's Notes S²S³.
Two install paths. Run npx skills@latest add mattpocock/skills for the full source, or claude plugins install mattpocock-skills for a managed, read-only Claude Code plugin S¹.

Use cases
Migrating a monolith to microservices. You know the destination: independent services deployed separately. You do not know which boundaries to draw first, which database to split first, or how to handle shared authentication. Wayfinder turns each of those into a decision ticket, resolves them one at a time, and leaves you with a clear route before any code is written.
Designing a new API surface. The destination is a public API. The route is foggy: REST or GraphQL? Versioned or unversioned? How do you handle auth? Each question becomes a ticket. The map tracks which decisions are made and which remain open.
Building a course curriculum. Wayfinder is domain-agnostic S³. A course creator who knows the destination (what students can do at the end) but not the route (which modules, in what order, assessed how) can use the same decision-ticket structure to plan.
Refactoring a legacy codebase. The destination is a clean architecture. The route requires dozens of decisions: which module first, which patterns to adopt, how to handle the test gap. Wayfinder maps those decisions as child issues of a single planning ticket.
Planning a multi-team feature rollout. The destination is a shipped feature. The route involves API contracts, migration plans, rollout sequencing, and rollback strategy. Each becomes a decision ticket on the shared map.

What to do about it
If you are an engineer using Claude Code or a similar agent, install the skills and try wayfinder on your next project that is too big for one session. Run npx skills@latest add mattpocock/skills or claude plugins install mattpocock-skills S¹. The repository is MIT-licensed and open on GitHub P⁵.
A concrete example: a backend team planning a payment system rewrite would type /wayfinder, let the agent create a map issue labelled wayfinder:map, and watch it spawn child tickets for each blocking decision. Which payment provider? Which idempotency strategy? Which webhook retry policy? The team resolves those decisions across days or weeks. When the map clears, they hand off to implementation.
One thing to check this week: read the SKILL.md specification in the repository S³P⁶ before you install. The skill is opinionated about how planning should work, and the decision-ticket model is a design choice, not an industry standard.
What we don't know yet
The repository was created in February 2026 and has already drawn 237,000-plus stars P⁵. Documentation for wayfinder was released during the current week S². Watch the repo's issue tracker for real-world wayfinder maps as they appear.
Sources: S1 — skills · S2 — skills-wayfinder · S3 — skills/engineering/wayfinder/SKILL.md · P4 — docs/engineering/wayfinder.md · P5 — mattpocock/skills · P6 — skills/engineering/wayfinder/SKILL.md
More from Not A Tech Guy
- AI coding agent defense cuts malware severity 83%
- WebMCP-Phalanx blocks 80 of 80 prompt injection attacks in browser agents
- StepGuard blocks AI agent attacks 77% before they run
Generated from an audited evidence pack with primary-source research. Social-media items are discussion signals, not verified facts. Nothing here is financial, legal or medical advice.