# Wayfinder

> Maintain a persistent map and investigation frontier for huge or vague work, using canonical normalized tickets and opt-in compatibility.

- Skill: `carlitose/wayfinder` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add carlitose/wayfinder`
- Raw SKILL.md: https://api.skillmd.com/api/skills/carlitose/wayfinder/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: carlitose (https://skillmd.com/u/carlitose)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/carlitose/wayfinder

---


# Wayfinder

Owns: investigation map, durable frontier, and uncertainty routing. It plans by default;
it does not execute the destination or define another ticket format.

All emitted or consumed ticket metadata uses the canonical
[Ticket Envelope v1](../ticket-autopilot/references/ticket-envelope-v1.md). Delegate
serialization to `to-tickets` or the shared CLI.

## Defaults

- Maps live at `docs/specs/<slug>.md` or `docs/specs/<slug>-wayfinder.md`.
- Every map has one `## Artifact Graph` section, stable Artifact ID, `Role: wayfinder`,
  and exactly `Standalone: true` or one `Parent` with a reciprocal owner edge.
- Tickets live at `docs/tickets/<spec-slug>/`.
- Backward compatibility is opt-in. Still flag destructive migrations, breaking external
  contracts, and irreversible changes.
- Ask one concise question only when the destination itself is ambiguous; otherwise state
  assumptions.

## Destination gate

- Clear destination: state assumptions and chart immediately.
- Do not invoke `grilling` ceremonially.
- If unresolved answers would materially change the Destination, scope, or initial frontier,
  invoke canonical [grilling](../grilling/SKILL.md).
- Ask one question at a time and wait for confirmation.
- Create zero durable artifacts before confirmation.

## Deferred decisions

- Known Destination with an unresolved decision: Do not run the interview inline.
- Use `to-tickets` to emit a canonical Ticket Envelope with `execution_mode: HITL`; its
  body must require [grilling](../grilling/SKILL.md) and confirmation of that decision.
- Keep that ticket on the frontier until the decision is confirmed.
- Do not add Ticket Envelope fields for interview state.

## Process

1. Reconstruct only enough context to identify destination, decisions, unknowns,
   exclusions, and the next blocking edges.
2. Create or update the map:

```markdown
# <Title>

## Artifact Graph
- Artifact ID: `artifact:<stable-id>`
- Role: `wayfinder`
- Standalone: true

## Type
Wayfinding spec

## Status
Active

## Destination
Reachable target outcome.

## Decisions So Far
- Decision, evidence, and durable record.

## Not Yet Specified
- Unknown that blocks reliable execution.

## Out of Scope
- Explicit exclusion.

## Frontier / Blocking Edges
- Edge, why it blocks, unblock condition, and owning ticket.

## Ticket Plan
- ID, type, mode, blockers, title, expected output.

## Next Review
- What the next agent or human inspects.
```

3. Record durable architecture/product/diagnostic decisions through `to-spec`, then link
   them from the map.
4. Create narrow `research`, `prototype`, `grilling`, or `task` tickets through
   `to-tickets`. Each must name its question/outcome, evidence, frontier, work plan, and
   exclusions.
5. Parse existing tickets with the shared `ticket-parse` command before using their mode,
   blockers, or ID. Do not infer those fields from headings such as `Blocked By`.
6. Stop at the map unless the user explicitly requests execution. Route one ready ticket
   to `execute-ticket` or a folder to `ticket-autopilot`.

## Maintenance

- Reuse the persisted Destination and scope as confirmed context.
- Do not restart `grilling` unless the user explicitly changes it or new evidence would
  materially change the Destination, scope, or initial frontier.
- On such a change, return to the Destination gate before writing any durable update.
- Fold completed-ticket evidence and decisions back into the map.
- Remove resolved unknowns instead of leaving stale questions.
- Keep the frontier to the next few material edges.
- Prefer another investigation ticket over guessing.
- Report map path, ticket folder, ready/blocked frontier, and recommended next step.

