github OthmanAdi/planning-with-files v2.5.0
v2.5.0 - Match Anthropic Official Format

latest releases: v2.36.3, v2.36.2, v2.36.1...
3 months ago

✅ 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 completely

Windows (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 Code

Now 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

Don't miss a new planning-with-files release

NewReleases is sending notifications on new releases.