entry-point-analyzer

entry-point-analyzer is a skill for Claude Code, Codex from woohyun212/security-skill. It costs 22 tokens per session (3,067 once invoked), scanned A, original, MIT.

An analysis workflow that finds and classifies operations capable of changing state in smart contracts, web APIs, and command-line tools. State-changing entry points are functions or endpoints that can alter data, permissions, or assets.

In plain words
What is it for?
Use it to map an application's attack surface, prepare smart-contract or API audits, support threat modeling, and prioritize vulnerability testing.
Why use it?
It shows what can be called, who can call it, and which operations may carry risk before a detailed security audit begins.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Install

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.

agentmods
npx agentmods add skills/woohyun212/security-skill/entry-point-analyzer
Any agent
npx skills add woohyun212/security-skill --skill entry-point-analyzer
Clone the repo
git clone --depth 1 https://github.com/woohyun212/security-skill

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for entry-point-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/skills/woohyun212/security-skill/entry-point-analyzer.svg)](https://agentmods.dev/skills/woohyun212/security-skill/entry-point-analyzer)
Your own site
<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>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,067 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash 8c814a5b340d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

entry-point-analyzer/SKILL.md · 278 lines

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 handlersonERC721Received, uniswapV3SwapCallback, flashLoan receivers, etc.
  • Fallback/receive functionsfallback() and receive() 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-select to 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

Read the full file on GitHub · 278 lines

Changes

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.

  1. 6d ago First seen · 278 lines · 22 tokens per session scan A 8c814a5b340d

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

vercel/next.js · 95 tokens

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…

vercel/next.js · 103 tokens

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…

microsoft/vscode · 72 tokens

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…

openai/codex · 113 tokens