Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/woohyun212/security-skill/entry-point-analyzernpx skills add woohyun212/security-skill --skill entry-point-analyzergit clone --depth 1 https://github.com/woohyun212/security-skillWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/woohyun212/security-skill/entry-point-analyzer)<a href="https://agentmods.dev/skills/woohyun212/security-skill/entry-point-analyzer"><img src="https://agentmods.dev/badge/skills/woohyun212/security-skill/entry-point-analyzer.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00022 | $0.03067 |
| Opus 5 | $0.00011 | $0.01533 |
| Sonnet 5 | $0.00004 | $0.00613 |
| Haiku 4.5 | $0.00002 | $0.00307 |
Grade A, and why
entry-point-analyzer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 278 lines — stays where its author put it; the contents beside it link to each section on GitHub.
What this skill does
Systematically discovers and classifies all state-changing entry points in smart contracts (Solidity, Rust/Solana, Move), web APIs, and CLI tools. For each entry point the skill records its type, access control, mutability, and payability — then produces a prioritized attack surface summary that feeds directly into vulnerability testing, threat modeling, and compliance reviews.
Entry point types covered:
- External/public functions — callable by any address or user
- Admin-only functions — gated by
onlyOwner, roles, or multisig - Payable functions — accept ETH or native token transfers
- Callback handlers —
onERC721Received,uniswapV3SwapCallback,flashLoanreceivers, etc. - Fallback/receive functions —
fallback()andreceive()in Solidity - Delegatecall targets — proxy implementations and libraries called via
delegatecall - Web API endpoints — REST mutations, GraphQL mutations, WebSocket message handlers
- CLI sub-commands — sub-commands that mutate state or invoke privileged operations
When to use
- Before starting a deep audit: enumerate what can be called and by whom before reading logic
- When scoping a bug bounty engagement: identify unprotected state-changing paths quickly
- When reviewing a protocol upgrade: compare old vs new entry point sets for regressions
- When building a threat model: entry points are the canonical input for threat modeling exercises
- When triaging a reported vulnerability: confirm which entry point the exploit traverses
- When assessing a web API surface: map all mutation endpoints before testing authorization
Prerequisites
- Read access to the contract source or API codebase
- For Solidity contracts: ripgrep or grep available:
# Debian/Ubuntu apt install ripgrep # macOS brew install ripgrep - (Optional) Slither for automated function classification in Solidity:
pip install slither-analyzer - (Optional)
solc-selectto match the project's compiler version:pip install solc-select solc-select install 0.8.26 && solc-select use 0.8.26 - Environment variable
SECSKILL_TARGET: path to the source root being analyzed
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 278 lines · 22 tokens per session scan A 8c814a5b340d
entry-point-analyzer is a skill published in the GitHub repository woohyun212/security-skill (21 stars, last pushed 4mo ago), licensed MIT. It adds 22 tokens to every session and 3,067 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…