| name | pg-update |
| description | Use when updating Proxygate CLI or SDK to the latest version. Also triggers proactively when an update notification is shown. Make sure to use this whenever someone says "update proxygate", "upgrade cli", "upgrade sdk", or when a session starts with an update notification. |
| metadata | {"openclaw":{"requires":{"anyBins":["npm","pnpm"],"bins":["proxygate"]},"homepage":"https://proxygate.ai"}} |
Proxygate Update
Check for and install updates to Proxygate CLI and SDK.
Process
1. Check current version
proxygate --version 2>/dev/null || echo "NOT_INSTALLED"
If not installed, direct to pg-setup.
2. Check latest version
npm view @proxygate/cli version 2>/dev/null || echo "UNAVAILABLE"
3. Update CLI
npm install -g @proxygate/cli@latest
proxygate --version
4. Update skills
New CLI versions may include updated skills:
proxygate skills install
5. Clear update cache
rm -f ~/.claude/cache/proxygate-update-check.json
SDK Update
If @proxygate/sdk is in the project's dependencies:
npm install @proxygate/sdk@latest
pnpm add @proxygate/sdk@latest
Success criteria
Related skills
| Need | Skill |
|---|
| First-time setup | pg-setup |
| Buy API access | pg-buy |
| Sell API capacity | pg-sell |
| Check status | pg-status |
| Update CLI/SDK | This skill |