Overview
Publish PatchPilot to npm so users can install it with npm install -g patchpilot or use it with npx patchpilot.
Why
- Currently requires local path in Claude Code settings
- If folder is moved/deleted, configuration breaks
- npm publish enables:
npx patchpilot (works everywhere)
Tasks
After Publishing
Settings become portable:
{
"hooks": {
"PreToolUse": [{
"matcher": "Bash",
"hooks": [{
"type": "command",
"command": "npx patchpilot",
"timeout": 10000
}]
}]
}
}
Priority: P1
Overview
Publish PatchPilot to npm so users can install it with
npm install -g patchpilotor use it withnpx patchpilot.Why
npx patchpilot(works everywhere)Tasks
npm publishnpx patchpilotAfter Publishing
Settings become portable:
{ "hooks": { "PreToolUse": [{ "matcher": "Bash", "hooks": [{ "type": "command", "command": "npx patchpilot", "timeout": 10000 }] }] } }Priority: P1