✅ FULLY FIXED - Autocomplete Now Works!
The Problem: Plugins install to cache, but Claude Code's autocomplete scans ~/.claude/skills/ folder.
The Solution: Copy the skill to ~/.claude/skills/ after installing.
Working Installation Steps
Linux/Mac:
# 1. Clean install
rm -rf ~/.claude/plugins/cache/planning-with-files
rm -rf ~/.claude/plugins/marketplaces/planning-with-files
claude plugins install OthmanAdi/planning-with-files
# 2. Copy to skills folder for autocomplete (THIS IS THE KEY!)
cp -r ~/.claude/plugins/cache/planning-with-files/planning-with-files/*/skills/planning-with-files ~/.claude/skills/
# 3. Restart Claude Code completelyWindows (PowerShell):
# 1. Clean install
Remove-Item -Recurse -Force "$env:USERPROFILE\.claude\plugins\cache\planning-with-files" -ErrorAction SilentlyContinue
Remove-Item -Recurse -Force "$env:USERPROFILE\.claude\plugins\marketplaces\planning-with-files" -ErrorAction SilentlyContinue
claude plugins install OthmanAdi/planning-with-files
# 2. Copy to skills folder for autocomplete
Copy-Item -Recurse -Path "$env:USERPROFILE\.claude\plugins\cache\planning-with-files\planning-with-files\*\skills\planning-with-files" -Destination "$env:USERPROFILE\.claude\skills\"
# 3. Restart Claude CodeNow type /plan and it will appear in autocomplete!
What Changed
- SKILL.md now has ONLY 3 frontmatter fields (matches official Anthropic format):
name:description:license:
- Removed unsupported fields:
version:,user-invocable:,allowed-tools:,hooks:
Fixes #39