skills/chat/SKILL.md
Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402.
npx skillsauth add azure55562/pinion-os pinion-chatInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Send messages to the Pinion AI agent and get a response. The agent knows about the Pinion protocol, x402, OpenClaw, ERC-8004 and on-chain topics. It has web search for current information.
POST https://pinionos.com/skill/chat
Price: $0.01 USDC per call (x402 on Base)
{
"messages": [
{ "role": "user", "content": "what is x402?" }
]
}
| Field | Type | Required | Description |
|----------|-------|----------|--------------------------------------------------|
| messages | array | yes | Array of { role, content } message objects |
Roles: user or assistant. Send conversation history for multi-turn chat.
curl -X POST https://pinionos.com/skill/chat \
-H "Content-Type: application/json" \
-d '{"messages":[{"role":"user","content":"what is x402?"}]}'
The first request returns HTTP 402 with payment requirements. Sign a USDC TransferWithAuthorization (EIP-3009) and retry with the X-PAYMENT header.
{
"response": "x402 is a protocol that brings the HTTP 402 Payment Required status code to life..."
}
data-ai
Generate a fresh Ethereum keypair for Base. Useful for funding OpenClaw agents. Costs $0.01 USDC via x402.
development
Get decoded transaction details for any Base transaction hash. Costs $0.01 USDC via x402.
tools
Get an unsigned swap transaction via 1inch aggregator on Base. Includes approval tx if needed. Costs $0.01 USDC via x402.
tools
Construct an unsigned ETH or USDC transfer transaction on Base. Client signs and broadcasts. Costs $0.01 USDC via x402.