pg-setup

Use when setting up ProxyGate for the first time, installing the CLI, configuring auth (API key or wallet), or connecting to the gateway. Make sure to use this skill whenever someone mentions "get started with proxygate", "install proxygate", "setup wallet", "configure proxygate", "connect to gateway", "login", or wants to start using ProxyGate APIs, even if they don't explicitly say "setup".

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "pg-setup" with this command: npx skills add jwelten/pg-setup

ProxyGate Setup

First-time setup for ProxyGate — install CLI, authenticate, start using APIs.

Two ways to authenticate

MethodBest forCommand
API keyAI agents, automated access, quick startproxygate login --key pg_live_...
Wallet keypairOn-chain operations (deposit, withdraw)proxygate login --keypair ~/id.json

Most users should start with an API key — it's the fastest path to making API calls. Get one at app.proxygate.ai/keys.

You can add both later (dual mode: API key for proxy, keypair for vault ops).

Process

1. Check existing install

proxygate --version 2>/dev/null || echo "NOT_INSTALLED"
proxygate whoami 2>/dev/null || echo "NOT_CONFIGURED"
  • Installed and configured → skip to verify
  • Installed but not configured → skip to authenticate
  • Not installed → start from install

2. Install the CLI

npm install -g @proxygate/cli
# or
pnpm add -g @proxygate/cli

3. Authenticate

Option A: API key (recommended for agents)

proxygate login --key pg_live_abc123...

Get a key at app.proxygate.ai/keys. No Solana wallet needed.

Option B: Wallet keypair (for on-chain operations)

proxygate login --keypair ~/.proxygate/keypair.json
# or generate a new one:
proxygate login --generate

Option C: Interactive menu

proxygate login
# Shows a menu:
#   1. API key     — For AI agents and automated access
#   2. Wallet      — Connect a Solana keypair for on-chain operations

Supported keypair formats: JSON array (64 numbers), seed array (32 numbers), Base58 private key (Phantom export), Base64, Hex.

4. Verify

proxygate whoami                    # check auth mode + balance
proxygate apis -q weather           # browse available APIs
proxygate proxy agent-us-weather /   # make your first API call

5. Install Claude Code skills (optional)

proxygate skills install

Auth management

proxygate whoami                    # check current auth mode
proxygate login --key pg_live_...   # add/change API key
proxygate login --keypair ~/id.json # add/change wallet
proxygate logout                    # remove API key (keep wallet)
proxygate logout --all              # remove all auth (with confirmation)

Troubleshooting

ProblemFix
command not found: proxygatenpm install -g @proxygate/cli
Authentication failedCheck your API key at app.proxygate.ai/keys
Not configuredRun proxygate login
Gateway unreachableVerify URL: https://gateway.proxygate.ai
Balance shows 0Deposit USDC — use /pg-buy

Success criteria

  • CLI installed (proxygate --version returns a version)
  • proxygate whoami shows auth mode and balance
  • proxygate apis shows available APIs
  • proxygate proxy <service> <path> returns a response

Related skills

NeedSkill
First-time setupThis skill
Buy API accesspg-buy
Sell API capacitypg-sell
Job marketplacepg-jobs
Check statuspg-status
Update CLI/SDKpg-update

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

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

Registry SourceRecently Updated
3260Profile unavailable
General

Pg Status

Use when checking ProxyGate status — balance, usage, listings, tunnel health, earnings, seller profile, or job status. Make sure to use this skill whenever s...

Registry SourceRecently Updated
3280Profile unavailable
General

Pg Sell

Use when selling API capacity on ProxyGate — creating listings, managing listings (update/pause/delete), rotating keys, uploading docs, starting tunnels, man...

Registry SourceRecently Updated
3200Profile unavailable
General

Pg Buy

Use when buying API access through ProxyGate — depositing USDC, browsing available APIs, making proxy requests, streaming responses, or rating sellers. Make...

Registry SourceRecently Updated
3080Profile unavailable