docs/windows.md
Windows-specific installation and usage notes.
Claude Code supports Windows Package Manager:
winget install Anthropic.ClaudeCode
Then 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-files
git 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.sh
wsl ./scripts/init-session.sh
Instead 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:
cat, head, echo work automaticallyIf 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.md
Run PowerShell as Administrator if you get permission errors:
# Right-click PowerShell → Run as Administrator
For best experience on Windows:
Open an issue at github.com/OthmanAdi/planning-with-files/issues.