Fix: PRD Command Recursive Loop
Eliminated the recursive skill loading loop that caused /octo:prd and /octo:prd-score commands to trigger 8+ times without producing output.
Problem
When running /octo:prd <feature>, the command file contained:
/skill skill-prd
Write a PRD for: $ARGUMENTS.feature
This caused a loop: command loads skill → skill content triggers detection → skill loads again → infinite recursion.
Solution
- Removed
/skill skill-prddirective fromprd.md - Removed
/skill skill-prd-scoredirective fromprd-score.md - Instructions are now inlined directly in command files
- Added "STOP - DO NOT INVOKE /skill OR Skill() AGAIN" header
Result
Commands now execute ONCE without looping:
/octo:prd WordPress integration on Pressable
# → Executes single workflow, creates PRD
/octo:prd-score docs/auth-prd.md
# → Scores PRD once, outputs reportUpgrade
/octo:update --updateOr reinstall:
/plugin uninstall claude-octopus
/plugin install claude-octopus@nyldn-pluginsFull changelog: https://github.com/nyldn/claude-octopus/blob/main/CHANGELOG.md