entry-point-analyzer

entry-point-analyzer is a skill for Codex from OutlineDriven/outline-driven-development. It costs 54 tokens per session (1,554 once invoked), scanned A, original, Apache-2.0.

A read-only analyzer for state-changing functions that external callers can invoke in smart contracts. Smart contracts are programs deployed on blockchains, where access restrictions control who may change stored data or move assets.

In plain words
What is it for?
Use it to map callable contract functions, classify their access levels, and review restricted or privileged flows.
Why use it?
It makes privileged operations and access-control evidence visible, including callbacks and files that could not be parsed.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to map callable contract functions, classify their access levels, and review restricted or privileged flows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/outlinedriven/outline-driven-development/entry-point-analyzer
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.

Any agent
npx skills add OutlineDriven/outline-driven-development --skill entry-point-analyzer
Clone the repo
git clone --depth 1 https://github.com/OutlineDriven/outline-driven-development

Made for: 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/outlinedriven/outline-driven-development/entry-point-analyzer/github.svg)](https://agentmods.dev/skills/outlinedriven/outline-driven-development/entry-point-analyzer)
Your own site
<a href="https://agentmods.dev/skills/outlinedriven/outline-driven-development/entry-point-analyzer"><img src="https://agentmods.dev/badge/skills/outlinedriven/outline-driven-development/entry-point-analyzer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for entry-point-analyzer

Your own site · 80×15
<a href="https://agentmods.dev/skills/outlinedriven/outline-driven-development/entry-point-analyzer"><img src="https://agentmods.dev/badge/skills/outlinedriven/outline-driven-development/entry-point-analyzer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,554 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00054 $0.01554
Opus 5 $0.00027 $0.00777
Sonnet 5 $0.00011 $0.00311
Haiku 4.5 $0.00005 $0.00155

Measured 5d ago against content hash b5a6616dc394, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, 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 5d 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.

.devin/skills/entry-point-analyzer/SKILL.md · 54 lines

How it starts

The opening of the file, as written. The whole thing — 54 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Entry point analyzer

Contract

Field Bound contract
Trigger A user asks to map state-changing externally callable entry points, audit flows, access-control categories, callbacks, or privileged operations in a supported smart-contract codebase.
Authority Read-only. No file, VCS, credential, paid, published, deployed, or remote mutation. Analysis reads source files only and emits chat output.
Side effect A structured smart-contract entry-point and access-classification report emitted as chat output.
Done Every in-scope state-changing external entry point is listed with signature, file and line, access classification, restriction evidence, callbacks, warnings for unparsable files, and analyzed-file accounting.

Inputs

  • A smart-contract codebase path (required). Supported languages: Solidity (.sol), Vyper (.vy), Solana/Rust (.rs with a Cargo.toml containing solana-program), Move Sui (.move with a Move.toml containing edition), Move Aptos (.move with a Move.toml containing Aptos), TON (.fc/.func/.tact), and CosmWasm (.rs with a Cargo.toml containing cosmwasm-std).
  • An optional directory filter restricting analysis to a subpath.
  • An optional project name for the report header.

Invocation

The human-invoked entry-points command is a supported entry: pass an optional directory path to bound the scope. With no argument, the current working directory is the scope. Resolve the directory to an absolute path and confirm it exists before analysis; stop and report an unresolved path rather than defaulting silently or widening scope. The optional directory filter in the procedure handles this bound.

Procedure

  1. Detect language(s) from file extensions and manifest contents using the supported-language list above. If no supported language is present, stop and report an unsupported codebase. Done when: the detected language(s) are confirmed or the codebase is reported as unsupported.
  2. Apply the optional directory filter if supplied; only analyze files within that path and note the filter in the report scope. Done when: the scope is bounded to the filtered path or the full codebase.
  3. Locate every contract/module file of the detected language(s) under the scoped path. Done when: every contract/module file is located.
  4. For Solidity only: check whether slither is available (which slither). If present, run slither . --print entry-points and use its table (contract, function, visibility, modifiers) as the foundation, then cross-reference with manual inspection for access classification. If Slither fails or is absent, fall back to manual analysis. Done when: Slither is run or manual analysis is selected as fallback.
  5. Parse each file for externally callable, state-changing functions. Exclude read-only functions per language: Solidity view/pure; Vyper @view/@pure; Solana functions without mut account references; Move non-entry public fun (module-callable only); TON get methods (FunC) and read-only receivers (Tact); CosmWasm query entry point and its handlers. Read-only functions cannot directly cause loss of funds or state corruption and are out of scope. Done when: every state-changing external function is retained and every read-only function is excluded.
  6. Classify each retained entry point into one access category:
    • Public (Unrestricted): callable by anyone without restrictions.
    • Role-Restricted: limited to a specific role. Detect explicit role names (admin, owner, governance, guardian, operator, manager, minter, pauser, keeper, relayer, lender, borrower) and role-checking patterns (onlyRole, hasRole, require(msg.sender == X), assert_owner, #[access_control]). Group by role where identifiable.
    • Restricted (Review Required): an access-control pattern is present but the role is ambiguous or dynamic (e.g. require(trusted[msg.sender])); record the pattern and the reason manual verification is needed.
    • Contract-Only (Internal Integration Points): callable only by other contracts, not EOAs. Indicators include callbacks (onERC721Received, uniswapV3SwapCallback, flashLoanCallback), interface implementations with contract-caller checks, functions that revert when tx.origin == msg.sender, and cross-contract hooks. Done when: every retained entry point is classified into one access category.
  7. For each entry point, record the signature, file and line, the access category, the restriction evidence (modifier/decorator/role-check and its actual implementation, not just its name), and any callback or expected-caller note. When a function's access control is inherited from a parent contract, note the inheritance. Done when: every entry point has signature, file/line, category, restriction evidence, and callback note recorded.
  8. Be conservative. When the access level is uncertain, classify it as Restricted (Review Required) and note the restriction pattern rather than miscategorizing it. Reject these shortcuts: "this function looks standard", "the modifier name is clear", "this is obviously admin-only", "skip the callbacks", and "it doesn't modify much state". Trace the actual restriction, always include callbacks, and include every non-view function. Done when: every uncertain entry point is classified as Restricted (Review Required) with the pattern noted.
  9. Generate the report in the Output format, including the summary count table, per-category tables, the Files Analyzed list with per-file entry-point counts, and any Analysis Warnings. Done when: the report is generated with all sections.

Read the full file on GitHub · 54 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 54 lines · 54 tokens per session scan A b5a6616dc394

Subscribe to this mod's changes

entry-point-analyzer is a skill published in the GitHub repository OutlineDriven/outline-driven-development (52 stars, last pushed 3d ago), licensed Apache-2.0. It adds 54 tokens to every session and 1,554 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

smart-contract-code-maturity-assessor

Use when a smart-contract codebase needs an evidence-based maturity scorecard and prioritized improvement roadmap. Rates nine categories from code and explicit off-chain evidence, computes an aggregate score, and produces a CRITICAL-to-MEDIUM roadmap. Not for vulnerability auditing, source fixes, or claims about…

OutlineDriven/odin-claude-plugin · 68 tokens

smart-contract-guidelines-advisor

Use when a smart-contract project needs architecture, implementation, dependency, or testing guidance. Produces an evidence-backed assessment with recommendations. Not for maturity — use smart-contract-code-maturity-assessor; not for audit prep — use smart-contract-audit-prep.

OutlineDriven/odin-claude-plugin · 59 tokens

devtools-event-client

Create typed EventClient for a library. Define event maps with typed payloads, pluginId auto-prepend namespacing, emit()/on()/onAll()/onAllPluginEvents() API. Connection lifecycle (5 retries, 300ms), event queuing, enabled/disabled state, SSR fallbacks, singleton pattern. Unique pluginId requirement to avoid event…

TanStack/devtools · 79 tokens

api-design

REST/GraphQL/gRPC API design best practices. Use when designing APIs, defining contracts, handling versioning. Covers OpenAPI 3.2, GraphQL Federation, gRPC streaming.

majiayu000/spellbook · 42 tokens

nansen-exit-signals

Is smart money exiting a token I hold? Net flow direction, seller breakdown by label, and recent SM trades.

nansen-ai/nansen-cli · 30 tokens

solidity

Expert in Solidity smart contract development with security and gas optimization.

Mindrally/skills · 14 tokens