Capture a new task into the project's task sequence (backlog) with a detailed breakdown. Use when something surfaces that should be done later — a bug, an optimization, a follow-up — and you want it recorded in SEQUENCE.md with a bite-sized, ready-to-execute breakdown. Produces a one-line sequence entry linked to a per-task breakdown file (or a session-task-planning phase file for multi-task work). Triggers on "/session-add-task" or when user says "add a task", "capture this for later", "put this on the backlog", or "remember to do X".
Triage incoming work (GitHub issues, feature requests, surfaced ideas) and route it — trivial aligned fixes go into the task sequence, while significant or direction-divergent items are escalated to a cowork research-design session. Grounds every decision in the app's architecture and product direction (PRD.md). Use as the front-of-chain intake funnel. Triggers on "/session-gatekeeper" or when user says "triage these issues", "process the backlog of issues", "should we do this issue", or "is this worth a research-design session".
Groom the task sequence (backlog) by researching un-broken-down entries and attaching ready-to-execute breakdowns. Use to keep SEQUENCE.md healthy — every entry researched, verified, and linked to a breakdown — especially for items added as raw one-liners. Safe to run periodically via /loop. Triggers on "/session-groom" or when user says "groom the backlog", "prepare the sequence", "fill in the task breakdowns", or "tidy up SEQUENCE.md".
Bootstrap the project documentation structure for session-flow skills. Creates research/, plans/, todo/, testing/, and architecture/ directories. Run once when adopting session-flow in a new project. Triggers on "/session-init" or when user says "initialize project", "setup docs structure", or "bootstrap project".
Implement the next task from the project's task sequence (backlog). Reads SEQUENCE.md, picks the next open entry that has a linked breakdown, executes it, and marks it done. Use when the user wants to make progress on the backlog without naming a specific task. Triggers on "/session-next" or when user says "implement the next task", "do the next task", "what's next — just do it", or "work the backlog".
Orchestrate agent execution from a session task plan. Parses dependency tags to dispatch sequential and parallel agents via the Task tool. Use after /session-task-planning produces a todo file. Triggers on "/session-delegation" or when user says "execute the tasks", "run the plan", or "dispatch the agents".
Create Claude Code-scoped tasks with parallelization analysis. Use when breaking down a multi-step implementation into discrete tasks that can each be completed in one Claude Code session. Produces task files with dependency tags ([seq], [parallel-after:X]) and session-fit validation. Triggers on "/session-task-planning" or when user says "break this into tasks", "plan the tasks", or "create a task list".
Surgical updates and current-state initialization for session-flow architecture documentation in _devdocs/architecture. Ensures token-efficient edits, current data-flow and system-structure notes, architecture index hygiene, and doc splitting checks. Called by session-post-implementation step 7. Triggers on "/update-architecture" or when user says "update arch docs", "sync architecture", "map current architecture", "initialize architecture docs", or "docs are out of date".