create-prd
Create PRD
Create a business-focused Product Requirements Document through structured brainstorming.
Required Inputs
- Feature name or product idea.
- Optional: existing
_prd.mdfile for update mode.
Workflow
-
Determine the project name and working directory.
- Derive the slug from the feature name provided by the user.
- Use
tasks/prd-<slug>/as the target directory. - If
_prd.mdalready exists in the target directory, read it and operate in update mode. - If the directory does not exist, create it.
- Create
tasks/prd-<slug>/adrs/directory if it does not exist.
-
Discover context through parallel research.
More from compozy/looper
create-tasks
Decomposes PRDs and TechSpecs into detailed, independently implementable task files with enrichment from codebase exploration. Use when a PRD or TechSpec exists and needs to be broken down into executable tasks, or when task files need enrichment with implementation context. Do not use for PRD creation, TechSpec generation, or direct task execution.
3execute-prd-task
Executes one PRD task end-to-end using a provided task file, PRD directory, tracking file paths, and auto-commit mode. Use when a prompt includes a task specification that must be implemented, validated, and reflected in task tracking files. Do not use for PR review batches, generic coding tasks without a PRD task file, or standalone verification-only work.
3create-techspec
Creates a Technical Specification by translating PRD business requirements into implementation designs through interactive technical clarification. Use when a PRD exists and needs a technical plan, or when technical architecture decisions need documentation. Do not use for PRD creation, task breakdown, or direct code implementation.
3fix-reviews
Executes provider-agnostic PR review remediation using existing review round files under tasks/prd-<name>/reviews-NNN/. Use when resolving batched review issues, updating issue/grouped markdown files, implementing fixes, and verifying the result. Do not use for PRD task execution, review export/fetch, or generic coding tasks without review issue files.
1