New Skills! v1.1 brings /wayfinder, /research, /implement, /to-spec, /to-tickets

New Skills! v1.1 brings /wayfinder, /research, /implement, /to-spec, /to-tickets

Matt Pocock · ~15 min
New Skills! v1.1 brings /wayfinder, /research, /implement, /to-spec, /to-tickets
Skills v1.1 Wayfinder TDD Code Review SDLC

v1.1 Is Ready

0:00

A massive update has been merged into the skills repository. Version 1.1 introduces a new grilling approach, renamed skills for clarity, and a complete development lifecycle flow from ideation to committed code.

This is one of the biggest updates to the skills system — a complete rethinking of how agents should handle large projects.

/to-spec & /to-tickets Renames

0:37

Two skills have been renamed for broader applicability:

  • /to-prd/to-spec — "Spec" is a broader term that covers technical and non-technical specifications, not just product requirement documents.
  • /to-issues/to-tickets — "Tickets" is universal and not biased toward any specific platform like GitHub Issues.
Install or update via: npx skills add mattpocock/skills

Grilling Skill Improvements

2:34

Significant fixes to the grilling skill to make AI-assisted interrogation more effective:

  • Fixed multi-question bug — agents now ask one question at a time instead of dumping multiple questions
  • Confirmation gate — added a checkpoint before moving from grilling to implementation
  • Fixed self-grilling — resolved issues particularly with Fable where agents would grill themselves
  • Facts vs decisions — clear distinction between factual information gathered and decisions made during grilling

Complete Development Lifecycle Flow

4:06

v1.1 introduces a full software development lifecycle managed by skills:

Grill → Spec → Tickets → Implement → Code Review → Commit

The /implement skill is a key addition that handles:

  • TDD at pre-agreed seams
  • Type checking throughout
  • Test file creation and validation
  • Full sweep of implementation
  • Automatic code review
  • Final commit

Code Review with Refactoring Smells

6:45

Code review operates on two axes evaluated by parallel sub-agents:

  • Standards — checks against the project's coding-standards.md
  • Spec — verifies the code matches the originating specification

The review also checks for Martin Fowler refactoring smells:

  • Mysterious name
  • Duplicated code
  • Feature envy
  • Data clumps
  • Primitive obsession
  • Repeated switches
  • Divergent change
  • Speculative generality
  • Message chains
  • Middleman

Introducing Wayfinder

7:52

The star of v1.1. Wayfinder tackles projects that are too big for a single agent session.

Wayfinder creates a map on GitHub Issues with blocking relationships, breaking the project into manageable chunks where each ticket is scoped to one agent session.

This solves the problem of agents losing context on large projects by ensuring no single task exceeds what one session can handle.

Wayfinder Ticket Types

9:32

Wayfinder generates four types of tickets:

  • Research — AFK agent task, gathers information autonomously
  • Grilling — requires a user session for interactive Q&A
  • Prototype — cheap throwaway artifact, either UI or logic
  • Task — configuration, provisioning, or straightforward implementation
After all tickets are closed → the map feeds into → spec generation

Supporting Skills: /research & /prototype

11:21

Two new skills that support the Wayfinder workflow:

  • /research — runs as a background agent, gathers from primary sources, outputs markdown
  • /prototype — model-invoked by Wayfinder, creates cheap artifacts with a choice of logic or UI focus

TDD Skill Updates

12:12

The TDD skill has been updated to serve as reference material only:

  • Red-green cycle — write failing test, make it pass (no refactor in the loop)
  • Refactoring moved — refactoring is now handled during code review, not during TDD
This separation keeps the TDD cycle tight and fast, deferring structural improvements to the review phase.

Migration Guide & What's Next

13:15

To migrate to v1.1:

  1. Clear existing skills
  2. Run npx skills add mattpocock/skills

The skills repo has grown to 160K stars and 7M downloads. An AI Coding Crash Course is planned for August.

🎯 Key Takeaways

  • Skills v1.1 is a major update (160K stars, 7M downloads)
  • /to-prd/to-spec, /to-issues/to-tickets for broader terminology
  • Complete SDLC: Grill → Spec → Tickets → Implement → Code Review → Commit
  • Grilling fixed: one question at a time, confirmation gate, facts vs decisions
  • Code review checks both coding standards and spec compliance with Martin Fowler smells
  • Wayfinder breaks large projects into GitHub Issues maps with blocking relationships
  • 4 ticket types: research, grilling, prototype, task
  • Each ticket scoped to exactly one agent session
  • TDD is reference-only: red-green cycle, refactoring deferred to code review
  • /research and /prototype are new supporting skills for Wayfinder