ワンクリックで
evm-proxy-upgrade-analyzer
Detect common EVM proxy patterns and extract upgrade-related addresses and risk signals.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Detect common EVM proxy patterns and extract upgrade-related addresses and risk signals.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Context-aware caption translation skill for SRT/VTT/ASS with bilingual output and optional Gemini CLI fallback.
CRITICAL: Skill composition engine for automatic workflow generation from skill metadata. Triggers: compose skills, orchestrate, workflow, combine skills, skill pipeline, multi-skill, 技能组合, 工作流编排, 技能发现, 自动编排, skill discovery, semantic matching, StateGraph generation
Intelligent content optimization framework for preparing data and content for AI/ML training pipelines with quality analysis, dataset optimization, and hyperparameter suggestions.
CRITICAL: Multi-agent consensus engine for parallel LLM analysis, cross-validation, and collective decision-making. Triggers: consensus, multi-agent, voting, cross-validate, hallucination reduction, 多模型共识, 交叉验证, 集体决策
CRITICAL: You are an expert in multi-agent negotiation, game theory, and automated settlement protocols. Use this skill for designing and implementing agent-to-agent negotiation workflows with x402 payment settlement. Triggers on: negotiation, bargaining, agent trade, service agreement, SLA, price negotiation, x402 settlement, agent economy, "agents negotiate", "how do agents negotiate prices", "implement agent bargaining", "multi-round negotiation", "automated deal-making", "自动谈判", "智能体协商", "服务协议", "价格谈判", "多轮协商", "agent 经济"
Query Solodit audit knowledge to review smart contracts with evidence-backed findings, severity summaries, and remediation guidance. Use for contract audit prep, vulnerability triage, and secure coding reviews.
| name | evm-proxy-upgrade-analyzer |
| track | web3-core-operations |
| version | 0.1.0 |
| summary | Detect EVM proxy patterns (EIP-1967, Beacon, EIP-1167 minimal proxy) and report implementation/admin/beacon addresses plus upgrade risk flags. |
| description | Detect common EVM proxy patterns and extract upgrade-related addresses and risk signals. |
| author | guangyusong |
| tags | ["evm","proxy","eip-1967","uups","security"] |
Detect common EVM proxy patterns and report implementation/admin/beacon addresses along with basic upgrade risk flags.
{
"rpc_url": "https://...",
"proxy_address": "0x...",
"block": "latest",
"timeout_seconds": 20,
"check_uups": true,
"check_beacon_impl": true
}
Success:
{
"ok": true,
"data": {
"demo": false,
"proxy_address": "0x...",
"proxy_type": "NOT_A_CONTRACT|EIP-1167_MINIMAL|EIP-1967_PROXY|EIP-1967_BEACON|UNKNOWN",
"implementation_address": "0x..." ,
"admin_address": "0x...",
"beacon_address": "0x...",
"beacon_implementation_address": "0x...",
"is_uups": true,
"risk_score": 0,
"risk_flags": []
}
}
Error:
{
"ok": false,
"error": "...",
"details": {"message": "..."}
}
Demo mode (offline):
python3 scripts/main.py --demo
With parameters:
python3 scripts/main.py --params '{"rpc_url":"https://...","proxy_address":"0x..."}'
Via stdin:
echo '{"rpc_url":"https://...","proxy_address":"0x..."}' | python3 scripts/main.py
All errors return JSON with ok:false and exit with a non-zero code.