Blockchain security scanner for AI agents (testnet). Pay with Base Sepolia USDC via x402 protocol.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install aegis-security-hackathon或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install aegis-security-hackathon⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/aegis-security-hackathon/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: aegis-security-hackathon version: 1.0.0 description: Blockchain security scanner for AI agents (testnet). Pay with Base Sepolia USDC via x402 protocol. homepage: https://hackathon.aegis402.xyz metadata: {"emoji":"🛡️","category":"blockchain-security","api_base":"https://hackathon.aegis402.xyz/v1","network":"testnet"} ---
Blockchain security API for AI agents. Testnet version - pay with Base Sepolia USDC.
> ⚠️ This is the hackathon/testnet deployment. For production, use aegis-security.
| File | URL | |------|-----| | SKILL.md (this file) | https://hackathon.aegis402.xyz/skill.md | | package.json (metadata) | https://hackathon.aegis402.xyz/skill.json |
Base URL: https://hackathon.aegis402.xyz/v1
npm install @x402/fetch @x402/evm
import { x402Client, wrapFetchWithPayment } from '@x402/fetch';
import { ExactEvmScheme } from '@x402/evm/exact/client';
const client = new x402Client()
.register('eip155:*', new ExactEvmScheme(yourEvmWallet));
const fetch402 = wrapFetchWithPayment(fetch, client);
// Payments on Base Sepolia (testnet USDC)
const res = await fetch402('https://hackathon.aegis402.xyz/v1/check-token/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48?chain_id=1');
const data = await res.json();
Requirements: Testnet USDC on Base Sepolia (chain ID 84532)
Get testnet USDC: Base Sepolia Faucet
---
| Endpoint | Price | Use Case | |----------|-------|----------| | POST /simulate-tx | $0.05 | Transaction simulation, DeFi safety | | GET /check-token/:address | $0.01 | Token honeypot detection | | GET /check-address/:address | $0.005 | Address reputation check |
---
Scan any token for honeypots, scams, and risks.
curl "https://hackathon.aegis402.xyz/v1/check-token/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48?chain_id=1"
Response:
{
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"isHoneypot": false,
"trustScore": 95,
"risks": [],
"_meta": { "requestId": "uuid", "duration": 320 }
}
Verify if address is flagged for phishing or poisoning.
curl "https://hackathon.aegis402.xyz/v1/check-address/0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
Response:
{
"address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
"isPoisoned": false,
"reputation": "NEUTRAL",
"tags": ["wallet", "established"],
"_meta": { "requestId": "uuid", "duration": 180 }
}
Predict balance changes and detect threats before signing.
curl -X POST "https://hackathon.aegis402.xyz/v1/simulate-tx" \
-H "Content-Type: application/json" \
-d '{
"from": "0xYourWallet...",
"to": "0xContract...",
"value": "1000000000000000000",
"data": "0x...",
"chain_id": 8453
}'
Response:
{
"isSafe": true,
"riskLevel": "LOW",
"simulation": {
"balanceChanges": [
{ "asset": "USDC", "amount": "-100.00", "address": "0x..." }
]
},
"warnings": [],
"_meta": { "requestId": "uuid", "duration": 450 }
}
---
402 Payment Required with Base Sepolia payment instructionsNetwork: Base Sepolia (eip155:84532) Currency: Testnet USDC
---
const tokenCheck = await fetch402(`https://hackathon.aegis402.xyz/v1/check-token/${tokenAddress}?chain_id=8453`);
const { isHoneypot, trustScore } = await tokenCheck.json();
if (isHoneypot || trustScore < 50) {
console.log('⚠️ Risky token detected!');
}
const simulation = await fetch402('https://hackathon.aegis402.xyz/v1/simulate-tx', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ from, to, value, data, chain_id: 8453 })
});
const { isSafe, riskLevel, warnings } = await simulation.json();
if (!isSafe || riskLevel === 'CRITICAL') {
console.log('🚨 Dangerous transaction!', warnings);
}
---
| Level | Meaning | |-------|---------| | SAFE | No issues detected | | LOW | Minor concerns, generally safe | | MEDIUM | Some risks, proceed with caution | | HIGH | Significant risks detected | | CRITICAL | Do not proceed |
---
| Chain | ID | check-token | check-address | simulate-tx | |-------|-----|-------------|---------------|-------------| | Ethereum | 1 | ✅ | ✅ | ✅ | | Base | 8453 | ✅ | ✅ | ✅ | | Polygon | 137 | ✅ | ✅ | ✅ | | Arbitrum | 42161 | ✅ | ✅ | ✅ | | Optimism | 10 | ✅ | ✅ | ✅ | | BSC | 56 | ✅ | ✅ | ✅ |
---
curl https://hackathon.aegis402.xyz/health
---
---
🛡️ Built for the Agentic Economy. Powered by x402 Protocol.
安装 Hackathon 后,可以对 AI 说这些话来触发它
Help me get started with Hackathon
Explains what Hackathon does, walks through the setup, and runs a quick demo based on your current project
Use Hackathon to blockchain security scanner for AI agents (testnet)
Invokes Hackathon with the right parameters and returns the result directly in the conversation
What can I do with Hackathon in my finance & investment workflow?
Lists the top use cases for Hackathon, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/aegis-security-hackathon/ 目录(个人级,所有项目可用),或 .claude/skills/aegis-security-hackathon/(项目级)。重启 AI 客户端后,用 /aegis-security-hackathon 主动调用,或让 AI 根据上下文自动发现并使用。
Hackathon 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Hackathon 可免费安装使用。请查阅仓库了解许可证信息。
Blockchain security scanner for AI agents (testnet). Pay with Base Sepolia USDC via x402 protocol.
Hackathon 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using Hackathon
Identifies repetitive steps in your workflow and sets up Hackathon to handle them automatically