Fix: PRD Skill Stub to Prevent Repeated Loading
Created a minimal stub skill that stops Claude from repeatedly calling Skill().
Problem
Even after removing skill files (v7.8.9), Claude kept trying to load Skill(octo:prd) 4-5 times when users said "octo design a PRD..." because:
- Claude pattern-matches "PRD" and attempts to load a skill
- Without a skill file to find, it keeps retrying
- Eventually works but wastes time with failed loads
Solution
Created a minimal stub skill-prd.md that:
- Loads successfully (stops the retry loop)
- Contains explicit "DO NOT call Skill() again" instruction
- Has inline PRD workflow so execution starts immediately
- Minimal content that won't trigger re-loading
Result
When user says "octo design a PRD...":
- Claude loads skill once ✅
- Skill says "STOP - execute directly"
- PRD workflow begins immediately
Upgrade
/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