pm

Installation
SKILL.md

pm

Product management skill dispatcher.

Critical Rules

  • Never execute workflow logic here — this file only parses args and dispatches
  • Step 0 always runs first — no exceptions
  • Unknown verb → run help.md — never error silently
  • Pass all remaining args through — workflow receives $REMAINING_ARGS unchanged

Step 0: Parse Arguments

VERB="[first non-flag argument, or empty]"
REMAINING_ARGS="[everything after VERB, preserving order and flags]"

case "$VERB" in
  "")         VERB="help" ;;
Related skills

More from cloudvoyant/codevoyant

Installs
4
First Seen
Mar 25, 2026