/update
Update PBR to latest version with changelog display
$ npx -y skills add SienkLogic/plan-build-run --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/update
Context preview
What this command does when you run it.
Update PBR to latest version with changelog display
Command definition
update.mddescription: "Update PBR to latest version with changelog display" allowed-tools: - Bash - AskUserQuestion
<objective> Check for PBR updates, install if available, and display what changed. </objective>
<process>
1. Detect Current Version
pbr-tools help 2>/dev/null | head -1
cat ${CLAUDE_PLUGIN_ROOT}/package.json 2>/dev/null | node -e "const d=require('fs').readFileSync('/dev/stdin','utf8');console.log(JSON.parse(d).version)" 2>/dev/null2. Check Latest Version
npm view plan-build-run version 2>/dev/null
3. Compare and Offer Update
If newer version available, display changelog and ask for confirmation.
npm install -g plan-build-run@latest
4. Post-Update
Display: "Updated to v{version}. Restart Claude Code to use the new version." </process>
Plan it. Build it. Run it. A Claude Code plugin for structured development with context-engineered agents.
Repo: SienkLogic/plan-build-run
Other commands on plan-build-run.
- /add-phase
Add phase to end of current milestone in roadmap
Open command - /add-todo
Capture idea or task as todo from current conversation context
Open command - /audit-fix
Run audit, prioritize findings, auto-fix via quick tasks, test, and commit.
Open command - /audit-milestone
Audit milestone completion against original intent before archiving
Open command - /audit
Review past Claude Code sessions for PBR workflow compliance and UX quality.
Open command - /autonomous
Run multiple phases hands-free. Chains discuss, plan, build, and verify automatically.
Open command

