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 skills add OutlineDriven/outline-driven-development --skill entry-point-analyzergit clone --depth 1 https://github.com/OutlineDriven/outline-driven-developmentWrote 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/outlinedriven/outline-driven-development/entry-point-analyzer)<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.
<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>- NVIDIA SkillSpector pass
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.00054 | $0.01554 |
| Opus 5 | $0.00027 | $0.00777 |
| Sonnet 5 | $0.00011 | $0.00311 |
| Haiku 4.5 | $0.00005 | $0.00155 |
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.
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 (.rswith aCargo.tomlcontainingsolana-program), Move Sui (.movewith aMove.tomlcontainingedition), Move Aptos (.movewith aMove.tomlcontainingAptos), TON (.fc/.func/.tact), and CosmWasm (.rswith aCargo.tomlcontainingcosmwasm-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
- 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.
- 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.
- Locate every contract/module file of the detected language(s) under the scoped path. Done when: every contract/module file is located.
- For Solidity only: check whether
slitheris available (which slither). If present, runslither . --print entry-pointsand 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. - Parse each file for externally callable, state-changing functions. Exclude read-only functions per language: Solidity
view/pure; Vyper@view/@pure; Solana functions withoutmutaccount references; Move non-entrypublic fun(module-callable only); TONgetmethods (FunC) and read-only receivers (Tact); CosmWasmqueryentry 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. - 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 whentx.origin == msg.sender, and cross-contract hooks. Done when: every retained entry point is classified into one access category.
- 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.
- 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.
- 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.
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.
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.
- 5d ago First seen · 54 lines · 54 tokens per session scan A b5a6616dc394
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.
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…
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.
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…
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.
nansen-exit-signals
Is smart money exiting a token I hold? Net flow direction, seller breakdown by label, and recent SM trades.
solidity
Expert in Solidity smart contract development with security and gas optimization.