pm:review
Installation
SKILL.md
Compatibility: If
AskUserQuestionis unavailable, present options as a numbered list and wait for the user's reply. IfTaskis unavailable, run parallel steps sequentially.
Review a product roadmap for quality, prioritization, and strategic coherence.
Step 0: Parse arguments and load artifact
Accept a roadmap file path or slug. Default to the most recently modified file in .codevoyant/roadmaps/.
ROADMAP_PATH="${1:-}"
SILENT=false
[[ "$*" =~ --silent ]] && SILENT=true
If ROADMAP_PATH not provided, find the most recent file:
ls -t .codevoyant/roadmaps/*.md 2>/dev/null | head -1