Skip to content
Development
Command

/update

Update PBR to latest version with changelog display

From plugin
plan-build-run
1770 skills18 agents70 commands
Install
$ npx -y skills add SienkLogic/plan-build-run --agent claude-code

How 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.md
description: "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/null

2. 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>

Ships withplan-build-run

Plan it. Build it. Run it. A Claude Code plugin for structured development with context-engineered agents.

Get the whole plugin, auto-invoked
Stats
17
Stars
1
Views
5
Forks
Maintained
Maintenance
JavaScript
Language
MIT
License
4mo ago
Last commit
5mo ago
Created

Repo: SienkLogic/plan-build-run