# Agentcash Onboarding

> AgentCash Onboarding

- Skill: `elophanto/agentcash-onboarding` (Agent Skill)
- Install (CLI): `npx skillmds@latest add elophanto/agentcash-onboarding`
- Raw SKILL.md: https://api.skillmd.com/api/skills/elophanto/agentcash-onboarding/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: elophanto (https://skillmd.com/u/elophanto)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/elophanto/agentcash-onboarding

---

# AgentCash Onboarding

## Description
Set up AgentCash for pay-per-call access to premium APIs via x402 micropayments. Creates a wallet, optionally redeems invite credits, and installs the core AgentCash skill.

## Triggers
- agentcash
- agent cash
- set up agentcash
- onboard agentcash
- install agentcash
- agentcash wallet
- invite code agentcash
- x402
- pay per call
- micropayments api

## Instructions

AgentCash gives EloPhanto pay-per-call access to premium APIs via x402 micropayments. This is a one-time setup: wallet creation, optional invite credits, and core skill integration.

### Onboarding Flow

When the user wants to set up AgentCash:

1. **Run onboard**

   If the user has an invite code:
   ```bash
   npx agentcash@latest onboard <invite-code>
   ```

   Without an invite code:
   ```bash
   npx agentcash@latest onboard
   ```

   This creates a wallet and installs the core AgentCash skill. Without a code the user is prompted with a link to deposit or redeem credits later.

2. **Check balance**
   ```bash
   npx agentcash wallet info
   ```
   Shows wallet address, USDC balance, and deposit link. If balance is 0, direct the user to https://agentcash.dev/onboard to get free credits.

3. **Redeem a code later** (if they skipped it during onboard)
   ```bash
   npx agentcash wallet redeem <invite-code>
   ```

### After Onboarding

Once setup is complete the core AgentCash skill (installed by the onboard command) handles:
- Discovering paid endpoints: `npx agentcash discover <origin>`
- Making paid API requests: `npx agentcash fetch <url>`
- Wallet management: balance, redeem, deposit

Deposits accepted as USDC on Base or Solana.

## Verify

- The intended other agent / tool / channel actually received the message; an ack, message ID, or response payload is captured
- Identity, scopes, and permissions used by the call were the minimum required; over-permissioned tokens are called out
- Failure handling was exercised: at least one retry/timeout/permission-denied path is shown to behave as designed
- Hand-off context passed to the next actor is complete enough that the receiver could act without a follow-up question
- Any state mutated (config, memory, queue, file) is listed with before/after values, not just 'updated'
- Sensitive material (keys, tokens, PII) was redacted from logs/transcripts shared in the verification evidence

## Resources
- Homepage: https://agentcash.dev
- Onboard / get credits: https://agentcash.dev/onboard

