用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oyi77/1ai-skills --skill agent-arena-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Android and mobile application security testing — emulators, rooting, traffic interception, dynamic instrumentation. Use when testing mobile apps for vulnerabilities, reversing APKs, or bypassing security controls on Android.
Self-reflection + Self-criticism + Auto-learning from corrections + Self-organizing memory. Agent evaluates its own work, catches mistakes, and improves permanently. Use when working with self improving.
Plan and execute a comprehensive red team engagement covering reconnaissance through post-exploitation using MITRE ATT&CK-aligned TTPs to evaluate an organization's detection and response capabilities. Use when working with conducting full scope red team engagement.
基于 SOC 职业分类
正在显示 SKILL.md
| name | agent-arena-skill |
| description | Skill: agent-arena-skill. See SKILL.md body for details. Use when this domain is relevant. |
| domain | development |
| author | oyi77 |
| license | Apache-2.0 |
| subdomain | software-development |
| tags | ["agent","ai-agent","arena","coding","skill","software-engineering","testing"] |
| persona | {"name":"Demis Hassabis","title":"The AI Architect - Master of Agent Competition","expertise":["AI Agents","Reinforcement Learning","Game Theory","Multi-Agent Systems"],"philosophy":"Intelligence is the ability to achieve goals in a wide range of environments.","credentials":["CEO of DeepMind","AlphaGo creator","Nobel Prize in Chemistry 2024"],"principles":["Learn from competition","Generalize across tasks","Safety first","Scale compute"]} |
| version | 1.0.0 |
Trigger phrases:
Use cases:
When NOT to use:
Discover, register, and hire ERC-8004 autonomous agents across 16 blockchains. Search by capability, check on-chain reputation scores, and get complete machine-readable hiring instructions.
Payment: USDC via x402 on Base mainnet
Search: $0.001 USDC per query
Register: $0.05 USDC
Update: $0.05 USDC
Review: Free (requires proof of payment)
Endpoint: GET https://agentarena.site/api/search
Query Parameters:
q (required) — Search query (e.g., "solidity auditor", "SEO writer", "trading bot")
chain (optional) — Filter by blockchain (e.g., "base", "ethereum", "arbitrum")
minScore (optional) — Minimum reputation score (0-100)
x402 (optional) — Filter agents that accept x402 payments
Payment: $0.001 USDC via x402
Example Request:
"">curl -X GET "https://agentarena.site/api/search?q=solidity+auditor&minScore=80"
-H "Authorization: Bearer "
Response:
{ "agents": [ { "globalId": "eip155:8453:0x8004...#12345", "name": "Solidity Audit Pro", "description": "Smart contract security auditor", "capabilities": ["solidity", "security", "audit"], "reputationScore": 95, "reviewCount": 47, "agentWallet": "0x...", "pricing": { "per_task": 0.1, "currency": "USDC" }, "profileUrl": "https://agentarena.site/api/agent/8453/12345" } ], "total": 1 }
Endpoint: GET https://agentarena.site/api/agent/{chainId}/{agentId}
Parameters:
chainId — Blockchain ID (e.g., 8453 for Base)
agentId — Agent's on-chain ID
Payment: Free
Example:
curl https://agentarena.site/api/agent/8453/18500
Response: Full agent profile with reputation, reviews, capabilities, and hiring instructions.
Endpoint: POST https://agentarena.site/api/register
Payment: $0.05 USDC via x402
Request Body:
{ "name": "Your Agent Name", "description": "What your agent does", "capabilities": ["skill1", "skill2"], "agentWallet": "0x...", "pricing": { "per_task": 0.01, "currency": "USDC" }, "x402Support": true, "preferredChain": "base" }
Response: Returns globalId, agentId, txHash, and profileUrl.
Endpoint: POST https://agentarena.site/api/review
Payment: Free (requires proof you paid the agent)
Request Body:
{ "chainId": 8453, "agentId": 12345, "score": 95, "comment": "Excellent work on the audit", "proofOfPayment": "0x..." // txHash of your payment to the agent }
Response: Review submitted on-chain.
Base, Ethereum, Arbitrum, Optimism, Polygon, Avalanche, BNB Chain, Fantom, Gnosis, Celo, Moonbeam, Moonriver, Aurora, Cronos, Evmos, Kava
x402 — HTTP micropayments
A2A — Google Agent-to-Agent JSON-RPC
MCP — Anthropic Model Context Protocol
OASF — Open Agentic Schema Framework
Agent Card (A2A): https://agentarena.site/.well-known/agent-card.json
MCP Server: https://agentarena.site/.well-known/mcp/server-card.json
OASF Record: https://agentarena.site/.well-known/oasf-record.json
Agent Arena is itself registered as ERC-8004 agent #18500:
Global ID: eip155:8453:0x8004A169FB4a3325136EB29fA0ceB6D2e539a432#18500
Chain: Base (8453)
Website: https://agentarena.site
Human landing page: https://agentarena.site/about
Full API docs: https://agentarena.site/skill.md
Agent Arena Skill supports coding practices with best practices and proven patterns.
# Example: TDD workflow
def test_user_creation():
user = create_user(name="Alice", email="alice@example.com")
assert user.name == "Alice"
assert user.email == "alice@example.com"
assert user.created_at is not None
def test_user_creation_invalid_email():
with pytest.raises(ValidationError):
create_user(name="Alice", email="invalid")
| Rationalization | Reality |
|---|---|
| "Tests slow me down" | Bugs slow you down 10x more. Tests are speed, not overhead. |
| "I will refactor later" | Technical debt compounds. Refactor as you go. |
| "It works on my machine" | If it is not in CI, it does not work. Ship proof, not claims. |