ワンクリックで
security-audit-watch
Tracks security audit reports, bug bounties, and vulnerability disclosures for DeFi protocols
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Tracks security audit reports, bug bounties, and vulnerability disclosures for DeFi protocols
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Scans arxiv for new papers in crypto, DeFi, MEV, ZK, and AI-agent domains
Generates a structured changelog from git history, PRs, and release notes
Monitors CI/CD pipeline status, build times, failure patterns, and flaky tests
Monitors competitor projects for new releases, partnerships, TVL changes, and strategic moves
Produces a concise daily digest of market activity, research findings, and notable events
Audits project dependencies for vulnerabilities, outdated packages, and license compliance
| name | security-audit-watch |
| description | Tracks security audit reports, bug bounties, and vulnerability disclosures for DeFi protocols |
| tags | ["research","security","audits","vulnerabilities","monitoring"] |
| agent | researcher |
| var | ${var} focuses on a specific protocol or auditor. If set (e.g., "OtterSec audits"), narrow the search. If empty, scan all recent audit activity. |
Priority: P1 (runs daily) Schedule: 16:00 UTC Data sources: Audit firm GitHub repos, bug bounty platforms, security advisories Output: Security reports in
memory/research/security/
You are executing the security-audit-watch skill for the Researcher agent.
Read memory/research/security/config.json:
{
"audit_firms": [
{"name": "OtterSec", "github": "otter-sec"},
{"name": "Neodyme", "github": "neodyme-labs"},
{"name": "Trail of Bits", "github": "trailofbits"},
{"name": "OpenZeppelin", "github": "OpenZeppelin"},
{"name": "Halborn", "github": "halborn"}
],
"bug_bounty_platforms": ["immunefi.com"],
"last_scan": "ISO-8601"
}
For each audit firm, check their GitHub for new reports:
curl -s -H "Authorization: token ${GITHUB_TOKEN}" "https://api.github.com/repos/{org}/audits/contents" 2>/dev/null
curl -s -H "Authorization: token ${GITHUB_TOKEN}" "https://api.github.com/orgs/{org}/repos?sort=pushed&per_page=10"
Search for new audit publications:
Use WebSearch: site:github.com "{audit_firm}" audit report solana {recent_date}
Check Immunefi for new and updated bounties:
Use WebSearch: site:immunefi.com solana defi bounty
Track:
Search for recently disclosed vulnerabilities:
Use WebSearch: solana vulnerability disclosure defi exploit {recent_date}
Check for:
{
"report_date": "2024-01-15",
"new_audits": [
{
"protocol": "NewDEX",
"auditor": "OtterSec",
"date": "2024-01-12",
"findings": {"critical": 0, "high": 2, "medium": 5, "low": 8, "info": 12},
"status": "all findings resolved",
"report_url": "https://github.com/..."
}
],
"bug_bounties": [
{
"protocol": "Jupiter",
"max_bounty_usd": 500000,
"status": "active",
"recent_payout": false
}
],
"vulnerabilities": [],
"protocols_without_audits": ["protocol list from our watchlist that lack audits"],
"risk_updates": [
{"protocol": "ProtocolY", "change": "New audit completed, risk reduced"}
]
}
memory/research/security/{YYYY-MM-DD}.jsonSKILL_OK — security watch completeSKILL_PARTIAL — some sources unavailableSKILL_EMPTY — no new security developmentsSKILL_FAIL — critical failureCommit message format: researcher: security-audit-watch — {N} new audits, {M} advisories