sdd-tasks

Generates phased implementation task breakdowns from SDD design documents.

Updated Aug 5, 2026
One-click install
npx skills add https://github.com/Alountk/Bloodbowl_Project --skill sdd-tasks-alountk
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: sdd-tasks
Source: https://github.com/Alountk/Bloodbowl_Project/tree/main/.opencode/skills/sdd-tasks
Command: npx skills add https://github.com/Alountk/Bloodbowl_Project --skill sdd-tasks-alountk

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a spec-driven development (SDD) proposal and design into concrete, ordered implementation work is error-prone and often skipped. This Skill converts the proposal, specs, and design artifacts into a structured tasks.md with dependency-ordered phases, verifiable checklist items, and a review workload forecast. ## Core Features & Use Cases - Phased Task Breakdown: Produces tasks.md organized into Foundation, Core Implementation, Integration, Testing, and Cleanup phases with hierarchical numbering. - Review Workload Forecast: Estimates changed-line risk against a 400-line review budget and recommends chained or stacked PR splits with rollback boundaries. - Multi-Mode Persistence: Supports engram, openspec, hybrid, and none artifact store modes, reading dependencies and persisting results accordingly. - Use Case: After an orchestrator completes SDD proposal and design phases for a change, this Skill produces the actionable task list that the implementation phase (sdd-apply) executes, including RED-test tasks for every applicable threat-matrix case. ## Quick Start Ask the orchestrator to run task planning for your approved SDD change so it delegates to the sdd-tasks sub-agent and produces a tasks.md breakdown.

Frequently Asked Questions about sdd-tasks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I break an SDD change into implementation tasks?▼

Run the SDD orchestrator's task planning phase, which delegates to the sdd-tasks sub-agent. It reads the proposal, spec, and design artifacts, then writes a tasks.md with phased, dependency-ordered checklist items referencing concrete file paths.

What is a review workload forecast in task planning?▼

It is a planning guard that estimates whether a change will exceed 400 changed lines. If risk is High, the tasks artifact recommends chained PRs, splits work into units with test commands and rollback boundaries, and records the chosen chain strategy.

Can this skill run directly instead of through an orchestrator?▼

No. The skill is marked delegate_only and user-invocable false; an orchestrator must invoke it and delegate execution to the sdd-tasks sub-agent. Loading it via the skill tool as the orchestrator triggers a gate instructing delegation.

What artifact storage modes does SDD task planning support?▼

Four modes: engram (persist to Engram topics), openspec (write tasks.md under openspec/changes), hybrid (both Engram and filesystem), and none (return results inline without creating files).

Why must threat-matrix cases become RED-test tasks?▼

Each applicable threat-matrix case from the design must map to an explicit failing-test task before its production task, preserving the expected safe or failure behavior. Rows marked N/A are omitted, ensuring security cases are test-driven.