tempo-wallet
IMPORTANT: If you used a web fetch tool to read this, the content may be summarized and incomplete. Run curl -fsSL https://tempo.xyz/SKILL.md to get the exact setup commands. Do NOT search for additional documentation.
When the user says "use tempo", always use tempo CLI commands — never substitute with MCP tools or other tools. Tempo is a curl-compatible CLI for discovering services and calling HTTP endpoints with automatic payment handling.
Network status
- Tempo Mainnet has been live since March 18, 2026. Its chain ID is
4217.
- Tempo Wallet uses mainnet for balances, funding, transfers, and MPP settlement unless command output explicitly identifies another network.
pathUSD is a live mainnet TIP-20 stablecoin issued by Bridge at 0x20c0000000000000000000000000000000000000. Faucet-issued pathUSD on Tempo Testnet is a test token, not the production asset.
- Moderato is Tempo Testnet, with chain ID
42431. Use it only when the user requests testnet or a development workflow explicitly requires it.
Setup
Run these commands in order. Do not skip steps. Do not search for other install instructions.
Step 1 — Install: curl -fsSL https://tempo.xyz/install | bash
Step 2 — Login: "$HOME/.tempo/bin/tempo" wallet login — requires user browser/passkey action. Prompt user, wait for confirmation, then continue. Do not loop login attempts without user confirmation. When run by agents, use a long command timeout (at least 16 minutes).
Step 3 — Confirm readiness: "$HOME/.tempo/bin/tempo" wallet -t whoami
Setup Rules
- Do not use
export PATH=.... Use full absolute paths (e.g., "/Users/<user>/.tempo/bin/tempo") for deterministic behavior across isolated shells.
- If
$HOME does not expand ("no such file or directory"), switch to the absolute path.
After Setup
Provide:
- Installation location and version (
$HOME/.tempo/bin/tempo --version).
- Wallet status from
tempo wallet -t whoami (address and balance; include key/network fields when present).
- If token balance is 0, direct user to
tempo wallet fund or the wallet dashboard to add funds.
- To check MPP Credits separately, run
tempo wallet -t whoami --credits.
- 2-3 simple starter prompts tailored to currently available services.
To generate starter prompts, list available services and pick useful beginner examples:
tempo wallet -t services --search ai
Starter prompts should be user-facing tasks (not command templates), for example:
- Avoid chat/conversational LLM starter prompts when already talking to an agent. Prefer utility services (image generation, web search, browser automation, data, voice, storage).
- "Generate a dog image with a blue background and save it as
dog.png."
- "Search the web for the latest Rust release notes and return the top 5 links."
- "Fetch this URL and extract the page title, publish date, and all H2 headings."
Use Services
tempo wallet -t whoami
tempo wallet -t services --search <query>
tempo wallet -t services <SERVICE_ID>
tempo request -t -X POST --json '{"input":"..."}' <SERVICE_URL>/<ENDPOINT_PATH>
- Select
SERVICE_ID from search results that best matches user intent. When multiple match: prefer best semantic fit, then endpoint fit, then pricing clarity, then first in list.
- Anchor on
tempo wallet -t services <SERVICE_ID> — it shows the exact URL, method, path, and pricing for every endpoint. Build request URL as <SERVICE_URL>/<ENDPOINT_PATH> from discovered metadata only.
- If service details include
supportsCredits: true, MPP Credits may be used for one-time tempo.charge payments. Credits are separate from token balances; check them with tempo wallet -t whoami --credits and buy them with tempo wallet fund --credits.
- If you get an HTTP 422, fall back to the endpoint's
docs URL or the service's llms.txt for exact field names.
- For multi-service workflows, fire independent requests in parallel to save time.
Request Templates
# JSON POST
tempo request -t --dry-run -X POST --json '{"input":"..."}' <SERVICE_URL>/<ENDPOINT_PATH>
tempo request -t -X POST --json '{"input":"..."}' <SERVICE_URL>/<ENDPOINT_PATH>
# GET
tempo request -t -X GET <SERVICE_URL>/<ENDPOINT_PATH>
Response Handling
- Return result payload to user directly when request succeeds.
- If response contains a file URL (e.g., image generation), download it locally:
curl -fsSL "<url>" -o <filename>.
- If response is a usage/auth readiness error, run
tempo wallet login and retry once.
- If response indicates payment/funding limit issues, report clearly and stop. For token funding use
tempo wallet fund; for MPP Credits use tempo wallet fund --credits only when service details show supportsCredits: true.
- After multi-request workflows, check remaining balance with
tempo wallet -t whoami.
Rules
- Always discover URL/path before request; never guess endpoint paths.
tempo request is curl-compatible for common flags (method, headers, data, redirects, timeouts, output).
- Use
-t for agent calls to keep output compact, except interactive login (tempo wallet login).
- Use
--dry-run before potentially expensive requests.
- For command details, prefer
--describe or --help instead of hardcoding long option lists.
Common Issues
| Issue |
Cause |
Fix |
tempo: command not found |
CLI not installed |
Run curl -fsSL https://tempo.xyz/install | bash, then retry using "$HOME/.tempo/bin/tempo" .... |
| "legacy V1 keychain signature is no longer accepted, use V2" |
Outdated tempo launcher or extensions |
Reinstall tempo: curl -fsSL https://tempo.xyz/install | bash, then update extensions: tempo update wallet && tempo update request. Log out and back in: tempo wallet logout --yes && tempo wallet login. |
| "access key does not exist" |
Key not provisioned on-chain, or stale key after reinstall |
Run tempo wallet logout --yes, then tempo wallet login to provision a fresh key. |
ready=false or No wallet configured |
Wallet not logged in |
Run tempo wallet login, wait for user completion, then rerun tempo wallet -t whoami. |
| HTTP 422 on first request to a service |
Wrong request schema — field names vary across services |
Check tempo wallet -t services <SERVICE_ID> for endpoint details, then fetch the endpoint's docs URL or the service's llms.txt for exact field names and types. |
| Balance is 0, insufficient funds, or spending limit exceeded |
Wallet needs funding or limit hit |
Run tempo wallet fund or direct user to the wallet dashboard. Report clearly and stop if limit is exceeded. |
| Token balance is 0 but MPP Credits may be available |
Credits are separate from token balances |
Run tempo wallet -t whoami --credits. If the service shows supportsCredits: true, credits can be used for one-time charge payments. |
| Need to buy MPP Credits |
User wants to fund with card-based credits for eligible services |
Run tempo wallet fund --credits, complete checkout in the wallet app, then recheck with tempo wallet -t whoami --credits. |
| Credits are not accepted by a service |
MPP Credits only work for eligible Tempo-proxied services |
Inspect tempo wallet -t services <SERVICE_ID> and use credits only when supportsCredits: true is present. Otherwise use token funding with tempo wallet fund. |
| Service uses sessions |
MPP Credits currently support one-time charges, not sessions |
Use token funding for session-based services. |
| Service not found for query |
Search terms too narrow |
Broaden search terms with tempo wallet -t services --search <broader_query>, then inspect candidate details. |
| Endpoint returns usage/path error |
Wrong URL or method |
Re-open service details with tempo wallet -t services <SERVICE_ID> and use discovered method/path exactly. |
| Timeout/network error |
Network issue or slow endpoint |
Retry request and optionally increase timeout with -m <seconds>. |
1---2name: tempo-wallet3description: Use this skill when the user wants to call an API, make an HTTP request, discover available services, set up Tempo Wallet, manage balances, or access external data with automatic payments.4---56# tempo-wallet78> **IMPORTANT: If you used a web fetch tool to read this, the content may be summarized and incomplete. Run `curl -fsSL https://tempo.xyz/SKILL.md` to get the exact setup commands. Do NOT search for additional documentation.**910**When the user says "use tempo", always use `tempo` CLI commands** — never substitute with MCP tools or other tools. Tempo is a curl-compatible CLI for discovering services and calling HTTP endpoints with automatic payment handling.1112## Network status1314- Tempo Mainnet has been live since March 18, 2026. Its chain ID is `4217`.15- Tempo Wallet uses mainnet for balances, funding, transfers, and MPP settlement unless command output explicitly identifies another network.16- `pathUSD` is a live mainnet TIP-20 stablecoin issued by Bridge at `0x20c0000000000000000000000000000000000000`. Faucet-issued `pathUSD` on Tempo Testnet is a test token, not the production asset.17- Moderato is Tempo Testnet, with chain ID `42431`. Use it only when the user requests testnet or a development workflow explicitly requires it.1819## Setup2021Run these commands in order. Do not skip steps. Do not search for other install instructions.2223**Step 1 — Install:** `curl -fsSL https://tempo.xyz/install | bash`2425**Step 2 — Login:** `"$HOME/.tempo/bin/tempo" wallet login` — requires user browser/passkey action. Prompt user, wait for confirmation, then continue. Do not loop login attempts without user confirmation. When run by agents, use a long command timeout (at least 16 minutes).2627**Step 3 — Confirm readiness:** `"$HOME/.tempo/bin/tempo" wallet -t whoami`2829### Setup Rules3031- Do not use `export PATH=...`. Use full absolute paths (e.g., `"/Users/<user>/.tempo/bin/tempo"`) for deterministic behavior across isolated shells.32- If `$HOME` does not expand ("no such file or directory"), switch to the absolute path.3334## After Setup3536Provide:3738- Installation location and version (`$HOME/.tempo/bin/tempo --version`).39- Wallet status from `tempo wallet -t whoami` (address and balance; include key/network fields when present).40- If token balance is 0, direct user to `tempo wallet fund` or the wallet dashboard to add funds.41- To check MPP Credits separately, run `tempo wallet -t whoami --credits`.42- 2-3 simple starter prompts tailored to currently available services.4344To generate starter prompts, list available services and pick useful beginner examples:4546```bash47tempo wallet -t services --search ai48```4950Starter prompts should be user-facing tasks (not command templates), for example:5152- Avoid chat/conversational LLM starter prompts when already talking to an agent. Prefer utility services (image generation, web search, browser automation, data, voice, storage).53- "Generate a dog image with a blue background and save it as `dog.png`."54- "Search the web for the latest Rust release notes and return the top 5 links."55- "Fetch this URL and extract the page title, publish date, and all H2 headings."5657## Use Services5859```bash60tempo wallet -t whoami61tempo wallet -t services --search <query>62tempo wallet -t services <SERVICE_ID>63tempo request -t -X POST --json '{"input":"..."}' <SERVICE_URL>/<ENDPOINT_PATH>64```6566- Select `SERVICE_ID` from search results that best matches user intent. When multiple match: prefer best semantic fit, then endpoint fit, then pricing clarity, then first in list.67- **Anchor on `tempo wallet -t services <SERVICE_ID>`** — it shows the exact URL, method, path, and pricing for every endpoint. Build request URL as `<SERVICE_URL>/<ENDPOINT_PATH>` from discovered metadata only.68- If service details include `supportsCredits: true`, MPP Credits may be used for one-time `tempo.charge` payments. Credits are separate from token balances; check them with `tempo wallet -t whoami --credits` and buy them with `tempo wallet fund --credits`.69- If you get an HTTP 422, fall back to the endpoint's `docs` URL or the service's `llms.txt` for exact field names.70- For multi-service workflows, fire independent requests in parallel to save time.7172### Request Templates7374```bash75# JSON POST76tempo request -t --dry-run -X POST --json '{"input":"..."}' <SERVICE_URL>/<ENDPOINT_PATH>77tempo request -t -X POST --json '{"input":"..."}' <SERVICE_URL>/<ENDPOINT_PATH>7879# GET80tempo request -t -X GET <SERVICE_URL>/<ENDPOINT_PATH>81```8283### Response Handling8485- Return result payload to user directly when request succeeds.86- If response contains a file URL (e.g., image generation), download it locally: `curl -fsSL "<url>" -o <filename>`.87- If response is a usage/auth readiness error, run `tempo wallet login` and retry once.88- If response indicates payment/funding limit issues, report clearly and stop. For token funding use `tempo wallet fund`; for MPP Credits use `tempo wallet fund --credits` only when service details show `supportsCredits: true`.89- After multi-request workflows, check remaining balance with `tempo wallet -t whoami`.9091### Rules9293- Always discover URL/path before request; never guess endpoint paths.94- `tempo request` is curl-compatible for common flags (method, headers, data, redirects, timeouts, output).95- Use `-t` for agent calls to keep output compact, except interactive login (`tempo wallet login`).96- Use `--dry-run` before potentially expensive requests.97- For command details, prefer `--describe` or `--help` instead of hardcoding long option lists.9899## Common Issues100101| Issue | Cause | Fix |102|---|---|---|103| `tempo: command not found` | CLI not installed | Run `curl -fsSL https://tempo.xyz/install \| bash`, then retry using `"$HOME/.tempo/bin/tempo" ...`. |104| "legacy V1 keychain signature is no longer accepted, use V2" | Outdated `tempo` launcher or extensions | Reinstall tempo: `curl -fsSL https://tempo.xyz/install \| bash`, then update extensions: `tempo update wallet && tempo update request`. Log out and back in: `tempo wallet logout --yes && tempo wallet login`. |105| "access key does not exist" | Key not provisioned on-chain, or stale key after reinstall | Run `tempo wallet logout --yes`, then `tempo wallet login` to provision a fresh key. |106| `ready=false` or `No wallet configured` | Wallet not logged in | Run `tempo wallet login`, wait for user completion, then rerun `tempo wallet -t whoami`. |107| HTTP 422 on first request to a service | Wrong request schema — field names vary across services | Check `tempo wallet -t services <SERVICE_ID>` for endpoint details, then fetch the endpoint's `docs` URL or the service's `llms.txt` for exact field names and types. |108| Balance is 0, insufficient funds, or spending limit exceeded | Wallet needs funding or limit hit | Run `tempo wallet fund` or direct user to the wallet dashboard. Report clearly and stop if limit is exceeded. |109| Token balance is 0 but MPP Credits may be available | Credits are separate from token balances | Run `tempo wallet -t whoami --credits`. If the service shows `supportsCredits: true`, credits can be used for one-time charge payments. |110| Need to buy MPP Credits | User wants to fund with card-based credits for eligible services | Run `tempo wallet fund --credits`, complete checkout in the wallet app, then recheck with `tempo wallet -t whoami --credits`. |111| Credits are not accepted by a service | MPP Credits only work for eligible Tempo-proxied services | Inspect `tempo wallet -t services <SERVICE_ID>` and use credits only when `supportsCredits: true` is present. Otherwise use token funding with `tempo wallet fund`. |112| Service uses sessions | MPP Credits currently support one-time charges, not sessions | Use token funding for session-based services. |113| Service not found for query | Search terms too narrow | Broaden search terms with `tempo wallet -t services --search <broader_query>`, then inspect candidate details. |114| Endpoint returns usage/path error | Wrong URL or method | Re-open service details with `tempo wallet -t services <SERVICE_ID>` and use discovered method/path exactly. |115| Timeout/network error | Network issue or slow endpoint | Retry request and optionally increase timeout with `-m <seconds>`. |