소스 정보
- 저장소
- jiayaoqijia/cryptoskill
- 최근 소스 활동
- 2026년 5월 19일 16:50
- 감지된 SKILL.md 언어
- 영어
- 스타
- 72
- 포크
- 16
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jiayaoqijia/cryptoskill --skill x402-cli명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
"Peer-driven onchain reputation layer for AI agents enabling kudos across reliability, speed, accuracy, creativity, and security categories."
"Interaction layer where humans, AI agents, and blockchain converge, powering a trustless reputation economy for ERC-8004 ecosystem."
"Interaction layer powering trustless reputation economy for ERC-8004 ecosystem with rewards for honest contributions."
SOC 직업 분류 기준
SKILL.md 표시 중
| name | x402-cli |
| description | Pay for x402 payment-gated HTTP endpoints using USDC stablecoins |
| version | 1.0.3 |
| metadata | {"openclaw":{"requires":{"env":"[Truncated]","bins":"[Truncated]"},"primaryEnv":"EVM_PRIVATE_KEY","install":["[Truncated]","[Truncated]"],"homepage":"https://github.com/razvanmacovei/x402-cli"}} |
Pay for x402 payment-gated HTTP endpoints using USDC stablecoins.
Use this tool when you need to access an API that returns HTTP 402 Payment Required with x402 payment requirements. The tool handles the full payment flow: probe → sign → pay → return response.
Set EVM_PRIVATE_KEY environment variable with a wallet private key that holds USDC on the target network (e.g., Base Sepolia for testnet).
x402-cli --json --skip-verify <url>
Returns JSON with probe.paymentRequirements containing the price, network, and asset.
x402-cli --json -y <url>
Returns JSON with payment.body containing the backend response and payment.paymentResponse containing the transaction hash.
x402-cli --json -y -X POST -d '{"query": "hello"}' -H 'Content-Type: application/json' <url>
x402-cli --json -y -k <url>
0 — Success (payment accepted or probe completed)1 — Error (network, config, or unexpected failure)2 — Payment rejected by facilitator3 — Route is free (no payment needed){
"status": "accepted",
"probe": {
"statusCode": 402,
"paymentRequired": true,
"paymentRequirements": { "...x402 requirements..." }
},
"payment": {
"statusCode": 200,
"accepted": true,
"signer": "0x...",
"paymentResponse": { "success": true, "transaction": "0x...", "network": "eip155:84532" },
"body":
.status — "free", "payment_required", "accepted", "rejected", "error".probe.paymentRequirements.accepts[0].amount — price in atomic units.probe.paymentRequirements.accepts[0].network — chain ID (e.g., eip155:84532).payment.body — the actual backend response after payment.payment.paymentResponse.transaction — on-chain transaction hash