scope-task
Scope Task
Overview
This skill researches and scopes a single new task, then inserts it into an existing ROADMAP.md at the specified position. It follows the same discovery depth as project-init — web research, self-reflection, and user interview — but focused on one task rather than an entire project. The output is a properly formatted action item inserted into the roadmap, ready for do-task to implement.
Workflow
Step 1: Parse Arguments
Extract two pieces from the user's input:
- Task ID — numeric identifier in
<phase>.<item>format (e.g.,2.5,3.3) - Task Title — the descriptive title following the ID (e.g., "Integrate Research into SPEC.md")
If either is missing or malformed, ask the user to provide the full invocation: /scope-task <phase.item> <Task Title>.
Step 2: Load Project Context
More from b-j-roberts/vibecoding-workshop
do-task
This skill implements a specific task from a project's ROADMAP.md file. It should be used when the user wants to work on a roadmap action item by its ID (e.g., '1.1', '2.3'). Triggered by requests like '/do-task 1.1', '/do-task 2.3', or 'do task 3.1'. Works alongside the project-init skill (which creates the roadmap) and the checkpoint skill (which commits afterward).
13project-init
This skill initializes new software projects through a structured discovery, research, and documentation workflow. It should be used when the user wants to create/initialize a new project, start a new app, scaffold a new codebase, or plan a new software product. Triggered by requests like 'create a new project', 'initialize a new app', 'start a new project for X', 'I want to build X'. The skill does NOT generate code — it produces a project directory with comprehensive documentation (SPEC.md, STYLES.md, ROADMAP.md) that serves as the blueprint for implementation.
13checkpoint
Review local git changes and perform a light code review. If no issues are found, commit the changes. Does NOT write or modify code — only reviews and commits. Optionally accepts a commit message header as an argument.
13