Back to skills
SkillHub ClubAnalyze Data & AIFull StackData / AI

pinion-chat

Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
356
Hot score
99
Updated
March 20, 2026
Overall rating
C3.4
Composite score
3.4
Best-practice grade
B81.2

Install command

npx @skill-hub/cli install chu2bard-pinion-os-chat

Repository

chu2bard/pinion-os

Skill path: skills/chat

Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402.

Open repository

Best for

Primary workflow: Analyze Data & AI.

Technical facets: Full Stack, Data / AI.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: chu2bard.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install pinion-chat into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/chu2bard/pinion-os before adding pinion-chat to shared team environments
  • Use pinion-chat for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: pinion-chat
description: Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402.
---

# AI Agent Chat

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.

## Endpoint

```
POST https://pinionos.com/skill/chat
```

**Price:** $0.01 USDC per call (x402 on Base)

## Request Body

```json
{
  "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.

## Example Request

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

## Example Response

```json
{
  "response": "x402 is a protocol that brings the HTTP 402 Payment Required status code to life..."
}
```

## When to Use

- Ask about the Pinion protocol, x402, or Base.
- Get explanations of on-chain concepts.
- Use as a sub-agent for research within an autonomous workflow.
pinion-chat | SkillHub