ProxyGate Update

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

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 22 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name and description match the actions in SKILL.md and the included script: it checks the installed proxygate version, queries npm for the latest @proxygate/cli, and tells the user how to update the CLI and SDK. The declared required binaries (proxygate and npm/pnpm) are exactly what is needed for those tasks.
Instruction Scope
Runtime instructions are narrowly focused on version checks and updates (proxygate --version, npm view, npm install -g, proxygate skills install). The included check-update.sh writes a small cache file to ~/.claude/cache and prints an upgrade hint. It does not read unrelated system files or request secrets, but it does call external package tooling (npm) and the proxygate CLI as expected.
Install Mechanism
This is an instruction-only skill (no install spec). The update flow relies on npm/pnpm to fetch and install packages (npm install -g @proxygate/cli@latest), which is appropriate for updating an npm-distributed CLI but carries the usual npm risks (postinstall scripts, arbitrary package code execution from registry). The skill itself does not automatically download or write code to disk beyond the small cache file.
Credentials
The skill declares no required environment variables or credentials and its actions do not attempt to access secrets. Note: the proxygate CLI (mentioned in the reference) can be used to manage keypairs and configs, but the update skill does not operate on those credentials.
Persistence & Privilege
always is false and the skill does not request persistent elevated privileges. The only persistent artifact is a small cache file (~/.claude/cache/proxygate-update-check.json) created by the update-check script; it does not modify other skills or system-wide agent settings.
Assessment
This skill is internally consistent for its purpose. Before running updates, confirm you trust the @proxygate packages on the npm registry (npm install -g will execute package install scripts and affect your system PATH). Be aware global npm installs may require sudo on some systems. The check script writes a small cache file to ~/.claude/cache and otherwise only runs proxygate and npm/pnpm commands; it does not request secrets. If you want extra caution, inspect the package on npmjs.com and the proxygate CLI source, and run npm install commands in a contained environment or with a non-root account.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.1
Download zip
apivk971gva0svymd1qpbr95f5m46s831mc3latestvk97616kxafw1fz8dcsz7y043xn8307j8proxygatevk971gva0svymd1qpbr95f5m46s831mc3solanavk971gva0svymd1qpbr95f5m46s831mc3updatevk971gva0svymd1qpbr95f5m46s831mc3

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

Binsproxygate
Any binnpm, pnpm

SKILL.md

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    # verify

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
# or
pnpm add @proxygate/sdk@latest

Success criteria

  • Current version detected
  • Latest version checked via npm
  • Update skipped if already current
  • CLI updated and verified
  • Skills refreshed
  • Update cache cleared

Related skills

NeedSkill
First-time setuppg-setup
Buy API accesspg-buy
Sell API capacitypg-sell
Job marketplacepg-jobs
Check statuspg-status
Update CLI/SDKThis skill

Files

3 total
Select a file
Select a file to preview.

Comments

Loading comments…