Description
The bowser skill was defined using the wrong directory and file naming convention.
The Pi Coding Agent expects skills to follow this structure:
- Folder named after the skill
- Skill definition file always named
SKILL.md
Incorrect Structure
.pi/
└── skills/
└── bowser.md
Correct Structure
.pi/
└── bowser/
└── SKILL.md
Impact
Anyone cloning the repo and attempting to use the bowser skill would find it not discovered or loaded, since Pi looks for .pi/<skill-name>/SKILL.md — not
.pi/skills/<skill-name>.md.
Fix
mkdir -p .pi/bowser
mv .pi/skills/bowser.md .pi/bowser/SKILL.md
rmdir .pi/skills