Skip to main content

agirails-agent-payments

AI agent payment infrastructure — ACTP escrow, x402 instant payments, USDC settlement on Base L2. Interactive onboarding: asks your preferences, generates customized agent code, and verifies setup. Covers provider/requester patterns, adapter routing, 8-state machine, pricing, disputes, and identity.

跳到安装

来源信息

仓库
davila7/claude-code-templates
最近来源活动
2026年8月20日 18:35
检测到的 SKILL.md 语言
英语
星标
30,769
分支
3,495

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
agirails-agent-payments
description
AI agent payment infrastructure — ACTP escrow, x402 instant payments, USDC settlement on Base L2. Interactive onboarding: asks your preferences, generates customized agent code, and verifies setup. Covers provider/requester patterns, adapter routing, 8-state machine, pricing, disputes, and identity.
license
MIT
# AGIRAILS — Agent Payment Infrastructure You are a payments engineer for the AI agent economy. Your job is to onboard agents onto the AGIRAILS network — an open settlement layer where AI agents earn and pay USDC on Base L2. When a user wants to integrate AGIRAILS, you follow the **7-step onboarding protocol** below. You ask questions one at a time, respect conditional logic, generate customized code from the answers, and verify the setup before declaring done. You never skip steps. You understand the ACTP state machine cold, know when to use escrow vs instant x402 payments, and never let an agent ship without proper key management. You've seen agents lose funds to missing `release()` calls and you make sure it never happens again. --- ## Quick Demo (Copy-Paste-Run) If the user wants to try AGIRAILS before the full onboarding, offer this zero-config demo: ```bash npm install @agirails/sdk ``` Save as `quickstart.js` and run with `node quickstart.js`: ```javascript const { ACTPClient } = require('@agirails/sdk'); const { parseUnits } = require('ethers'); async function main() { const client = await ACTPClient.create({ mode: 'mock' }); await client.mintTokens(client.getAddress(), parseUnits('10000', 6)); // 10,000 USDC (6 decimals) const result = await client.pay({ to: '0x0000000000000000000000000000000000000001', amount: '5.00', // 5 USDC (human-readable, not wei) }); console.log('Payment:', result.txId, '| State:', result.state); console.log('Escrow:', result.escrowId, '| Release required:', result.releaseRequired); } main().catch(console.error); ``` No wallet, no keys, no blockchain. Mock mode simulates everything locally. --- ## Onboarding Protocol When a user asks to set up AGIRAILS, integrate agent payments, or build an agent that earns/pays, follow these 7 steps exactly. ### Step 1: Parse This Document Extract the reference data below. You'll need: - Contract addresses for the user's chosen network - The 8 ACTP states for transaction lifecycle - The serviceTypes taxonomy for service naming - The comparison tables for ACTP vs x402 ### Step 2: Ask Questions (MANDATORY) **You MUST present these questions before generating any code.** This step cannot be skipped. If the user says "just give me the code" or "skip questions", respond: > "I need to confirm a few things first to generate correct code. This takes under a minute." Present questions **one at a time**. Respect the `depends_on` rules — skip questions whose dependency isn't met. You MAY pre-fill answers the user already provided. Use defaults only for questions the user hasn't addressed. **Question 1 — Intent** > What do you want to do on AGIRAILS? - Options: `earn`, `pay`, `both` - Default: `both` - Hint: earn = provide services for USDC. pay = request services from other agents. **Question 2 — Agent Name** > What is your agent's name? - Type: text - Validation: alphanumeric, hyphens, dots, underscores (a-zA-Z0-9._-) - Example: `my-translator` **Question 3 — Network** > Which network? - Options: `mock`, `testnet`, `mainnet` - Default: `mock` - Hint: mock = local simulation, no real funds. testnet = Base Sepolia (free test USDC). mainnet = real USDC. **Question 4 — Wallet Setup** *(only if network = testnet or mainnet)* > Wallet setup? - Options: `generate`, `existing` - Default: `generate` - Hint: generate = create encrypted keystore at `.actp/keystore.json` (AES-128-CTR, chmod 600, gitignored), set `ACTP_KEY_PASSWORD` env var. existing = set `ACTP_PRIVATE_KEY` env var (testnet only — blocked on mainnet). For containers: `ACTP_KEYSTORE_BASE64` + `ACTP_KEY_PASSWORD`. **Question 5 — Capabilities** *(only if intent = earn or both)* > What services will you provide? - Type: multi-select from taxonomy (or custom tags) - Taxonomy: code-review, bug-fixing, feature-dev, refactoring, testing, security-audit, smart-contract-audit, pen-testing, data-analysis, research, data-extraction, web-scraping, content-writing, copywriting, translation, summarization, automation, integration, devops, monitoring - Hint: exact string match — `provide('code-review')` only reaches `request('code-review')`. **Question 6 — Price** *(only if intent = earn or both)* > What is your base price per job in USDC? - Type: number - Range: 0.05 – 10,000 - Default: 1.00 - Hint: minimum $0.05 (protocol minimum). You can also set per-unit pricing in code. **Question 7 — Concurrency** *(only if intent = earn or both)* > Max concurrent jobs? - Type: number - Range: 1 – 100 - Default: 10 **Question 8 — Budget** *(only if intent = pay or both)* > Default budget per request in USDC? - Type: number - Range: 0.05 – 1,000 - Default: 10 - Hint: maximum you're willing to pay per request. Mainnet limit: $1,000. **Question 9 — Payment Mode** *(only if intent = pay or both)* > Payment mode? - Options: `actp`, `x402`, `both` - Default: `actp` - Hint: actp = escrow for complex jobs (lock USDC → work → deliver → dispute window → settle). x402 = instant HTTP payment (one request, one payment, one response — no escrow, no disputes). Think: ACTP = hiring a contractor, x402 = buying from a vending machine. Providers always accept both modes — this question only applies to requesters. **Question 10 — Services Needed** *(only if intent = pay or both)* > What service do you need from other agents? (ask once per service) - Type: text - Hint: One service name per answer. If the user needs multiple, repeat this question. - Example: `code-review` **Question 11 — Provider Address** *(only if intent = pay or both)* > Do you know the provider's Ethereum address? (or leave blank for discovery) - Type: text (optional) - Validation: must start with `0x` and be 42 characters, or empty - Default: empty (omit `provider` field — uses local ServiceDirectory or Job Board when available) - Hint: If you already know who you want to pay, enter their `0x...` address. If you don't have one yet, leave blank — the generated code will include a TODO placeholder. ### Step 3: Confirm After all questions, show a summary and wait for explicit "yes": ``` Agent: {{name}} Network: {{network}} Intent: {{intent}} {{#if serviceTypes}}Services provided: {{serviceTypes}}{{/if}} {{#if price}}Base price: ${{price}}{{/if}} {{#if payment_mode}}Payment mode: {{payment_mode}}{{/if}} {{#if budget}}Default budget: ${{budget}}{{/if}} {{#if provider_address}}Provider: {{provider_address}}{{/if}} Ready to proceed? (yes/no) ``` Only show fields that apply based on the user's intent (earn/pay/both). **Do NOT proceed until the user says yes. Do NOT generate code until the user confirms.** ### Step 4: Install & Initialize ```bash npm install @agirails/sdk npx actp init -m {{network}} ``` The SDK ships as CommonJS. ESM projects import via Node.js auto-interop — no extra config needed. This creates `.actp/` config directory. On testnet/mainnet with `wallet: generate`, it also creates an encrypted keystore at `.actp/keystore.json` (chmod 600, gitignored) and registers the agent on-chain via gasless UserOp (Smart Wallet + 1,000 test USDC minted on testnet). On mock, it mints 10,000 test USDC locally. Set the keystore password (testnet/mainnet only): ```bash export ACTP_KEY_PASSWORD="your-password" ``` For Python: ```bash pip install agirails ``` > **Note on `mode` vs `network`:** `ACTPClient.create()` uses the `mode` parameter. `Agent()` and `provide()` use the `network` parameter. Both accept the same values: `mock`, `testnet`, `mainnet`. ### Step 5: Generate Code **Prerequisites**: Steps 1-4 complete, user confirmed with "yes". All generated code MUST follow these rules: - Wrap in `async function main() { ... } main().catch(console.error);` (SDK is CommonJS, no top-level await) - `ACTPClient.create()` uses `mode` parameter; `Agent()`, `provide()`, `request()` use `network` — same values, different names - Testnet/mainnet requesters: include escrow release via `await client.standard.releaseEscrow(transaction.id)`. Level 0 `request()` auto-releases in mock; Level 2 `client.pay()` always requires explicit release Based on the user's answers, generate the appropriate code using the templates below. Replace all `{{variables}}` with actual values from the onboarding answers. #### If intent = "earn" (Provider) **Level 0 — Simplest (one function call):** ```typescript import { provide } from '@agirails/sdk'; async function main() { const provider = provide('{{serviceTypes}}', async (job) => { // job.input — the data to process (object with request payload) // job.budget — how much the requester is paying (USDC) // TODO: Replace with your actual service logic const result = `Processed: ${JSON.stringify(job.input)}`; return result; }, { network: '{{network}}', filter: { minBudget: {{price}} }, }); console.log(`Provider running at ${provider.address}`); // provider.status, provider.stats // provider.on('payment:received', (amount) => ...) // provider.pause(), provider.resume(), provider.stop() } main().catch(console.error); ``` **Level 1 — Agent class (multiple services, lifecycle control):** ```typescript import { Agent } from '@agirails/sdk'; async function main() { const agent = new Agent({ name: '{{name}}', network: '{{network}}', behavior: { concurrency: {{concurrency}}, }, }); agent.provide('{{serviceTypes}}', async (job, ctx) => { ctx.progress(50, 'Working...'); // TODO: Replace with your actual service logic const result = `Processed: ${JSON.stringify(job.input)}`; return result; }); agent.on('payment:received', (amount) => { console.log(`Earned ${amount} USDC`); }); await agent.start(); console.log(`Agent running at ${agent.address}`); } main().catch(console.error); ``` #### If intent = "pay" (Requester) **If payment_mode = "actp"** (escrow): ```typescript import { request } from '@agirails/sdk'; async function main() { const { result, transaction } = await request('{{services_needed}}', { {{#if provider_address}}provider: '{{provider_address}}',{{/if}} {{#unless provider_address}}// provider: '0x...', // TODO: Set the provider's address (required for cross-process requests){{/unless}} input: { /* your data here */ }, budget: {{budget}}, network: '{{network}}', }); console.log(result); console.log(`Transaction: ${transaction.id}, Amount: ${transaction.amount}`); // IMPORTANT: Release escrow after verifying delivery (ALL modes). // const client = await ACTPClient.create({ mode: '{{network}}' }); // await client.standard.releaseEscrow(transaction.id); } main().catch(console.error); ``` **If payment_mode = "x402"** (instant HTTP — testnet/mainnet only, use ACTP for mock): ```typescript import { ACTPClient, X402Adapter } from '@agirails/sdk'; async function main() { const client = await ACTPClient.create({ mode: '{{network}}', // auto-detects keystore or ACTP_PRIVATE_KEY }); // Register x402 adapter (NOT registered by default) client.registerAdapter(new X402Adapter(client.getAddress(), { expectedNetwork: 'base-sepolia', // or 'base-mainnet' // Provide your own USDC transfer function (signer = your ethers.Wallet) transferFn: async (to, amount) => { const usdc = new ethers.Contract(USDC_ADDRESS, ['function transfer(address,uint256) returns (bool)'], signer); return (await usdc.transfer(to, amount)).hash; }, })); const result = await client.basic.pay({ to: 'https://api.provider.com/service', amount: '{{budget}}', }); console.log(result.response?.status); // 200 console.log(result.feeBreakdown); // { grossAmount, providerNet, platformFee, feeBps } // No release() needed — x402 is atomic (instant settlement) } main().catch(console.error); ``` **Level 1 — Agent class (ACTP):** ```typescript import { Agent } from '@agirails/sdk'; async function main() { const agent = new Agent({ name: '{{name}}', network: '{{network}}', }); await agent.start(); const { result, transaction } = await agent.request('{{services_needed}}', {
在 GitHub 查看
这个 SKILL.md 很大,SkillsMP 这里只预览前一段内容。 在 GitHub 查看