Windows-specific installation and usage notes.
Claude Code supports Windows Package Manager:
winget install Anthropic.ClaudeCodeThen install the skill:
/plugin marketplace add OthmanAdi/planning-with-files
/plugin install planning-with-files@planning-with-files
# Create plugins directory
mkdir -p $env:USERPROFILE\.claude\plugins
# Clone the repository
git clone https://github.com/OthmanAdi/planning-with-files.git $env:USERPROFILE\.claude\plugins\planning-with-filesgit clone https://github.com/OthmanAdi/planning-with-files.git
Copy-Item -Recurse planning-with-files\skills\* $env:USERPROFILE\.claude\skills\| Unix/macOS | Windows |
|---|---|
~/.claude/skills/ |
%USERPROFILE%\.claude\skills\ |
~/.claude/plugins/ |
%USERPROFILE%\.claude\plugins\ |
.claude/plugins/ |
.claude\plugins\ |
The helper scripts (init-session.sh, check-complete.sh) are bash scripts.
If you have Git for Windows installed, run scripts in Git Bash:
./scripts/init-session.shwsl ./scripts/init-session.shInstead of running scripts, manually create the files:
# Copy templates to current directory
Copy-Item templates\task_plan.md .
Copy-Item templates\findings.md .
Copy-Item templates\progress.md .The hooks use Unix-style commands. On Windows with Claude Code:
- Hooks run in a Unix-compatible shell environment
- Commands like
cat,head,echowork automatically - No changes needed to the skill configuration
If you see path errors, ensure you're using the correct separator:
# Windows
$env:USERPROFILE\.claude\skills\
# Not Unix-style
~/.claude/skills/If templates appear corrupted, check line endings:
# Convert to Windows line endings if needed
(Get-Content template.md) | Set-Content -Encoding UTF8 template.mdRun PowerShell as Administrator if you get permission errors:
# Right-click PowerShell → Run as AdministratorFor best experience on Windows:
- Windows Terminal - Modern terminal with good Unicode support
- Git Bash - Unix-like environment on Windows
- WSL - Full Linux environment
Open an issue at github.com/OthmanAdi/planning-with-files/issues.