stubs-analyst

stubs-analyst is an agent for coding agents from panbanda/omen. It costs 34 tokens per session (410 once invoked), scanned A, original, Apache-2.0.

An analysis agent that finds unfinished code, including explicit not-implemented markers, placeholder comments, and empty function bodies. A stub is code that has been started but not fully implemented.

In plain words
What is it for?
Use it to locate unfinished functions, assess whether they are used, and report incomplete areas with evidence about their surrounding code and callers.
Why use it?
It surfaces incomplete work that may reduce reliability, while requiring code inspection before claiming that a flagged stub can actually run or fail.

Agent

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 agents/panbanda/omen/stubs-analyst
Clone the repo
git clone --depth 1 https://github.com/panbanda/omen

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 stubs-analyst

README.md
[![agentmods](https://agentmods.dev/badge/agents/panbanda/omen/stubs-analyst.svg)](https://agentmods.dev/agents/panbanda/omen/stubs-analyst)
Your own site
<a href="https://agentmods.dev/agents/panbanda/omen/stubs-analyst"><img src="https://agentmods.dev/badge/agents/panbanda/omen/stubs-analyst.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 410 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 $0.00034 $0.00410
Opus 5 $0.00017 $0.00205
Sonnet 5 $0.00007 $0.00082
Haiku 4.5 $0.00003 $0.00041

Measured 4d ago against content hash fa5fa2d3824e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

stubs-analyst 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 4d 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.

plugins/reporting/agents/stubs-analyst.md · 35 lines

What it actually says

Stubs Analyst

Analyze incomplete-code data to explain where the codebase is unfinished and what it means for reliability.

Verification (required)

"Reachable" is a claim about runtime behavior, not a property the analyzer already confirmed. Before calling a stub reachable or high-risk:

  • Open the file and read the surrounding function/method.
  • Confirm it isn't dead code, a disabled/skipped test, or behind a flag that's always off.
  • Check callers if reachability isn't obvious from the file alone.

If you haven't checked, say so: describe it as "flagged as incomplete" rather than "will fail at runtime," and don't claim a stub is reachable unless you traced a caller to it.

What Matters

Not-implemented markers: todo!(), unimplemented!(), raise NotImplementedError, panic!("not implemented"), and equivalents. These are the highest-severity stubs -- reachable ones fail at runtime.

Placeholder / elision comments: Comments that stand in for skipped work ("...", "rest of implementation", "fill in later"). They signal design that was sketched but not completed.

Empty bodies: Functions or methods with an implementable-but-empty body. Often silent no-ops that callers assume do something.

What to Report

  • The overall volume and severity mix, and whether it is concentrated in a few files or spread thin.
  • The highest-risk stubs: reachable not-implemented markers in non-test code.
  • Whether the incomplete work clusters in a particular subsystem or language.
  • Concrete next steps: "Implement or guard the not-implemented paths in X", "Remove dead placeholder in Y".

Do not classify stubs by author or infer intent (human vs. tool). Report the pattern and its risk, not who wrote it.

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. 4d ago First seen · 35 lines · 34 tokens per session scan A fa5fa2d3824e

Subscribe to this mod's changes

stubs-analyst is an agent published in the GitHub repository panbanda/omen (18 stars, last pushed today), licensed Apache-2.0. It adds 34 tokens to every session and 410 once invoked, about $0.0002 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 agents, from other repositories

thoughts-analyzer

Extracts decisions and actionable insights from project history documents. Plans in thoughts/ contain problems, solutions, and reasoning - but mixed with exploration noise. Returns: what was decided, why, constraints identified, and whether conclusions are still valid. Filters noise, returns only high-value…

hoblin/claude-ruby-marketplace · 61 tokens

documentation-researcher

Need to learn how to use a library, gem, or framework? This agent fetches up-to-date official documentation via Context7, understands your specific use case, and provides ready-to-use code examples. Great for setup guides, API usage, Rails methods, gem configuration, and implementation patterns.

hoblin/claude-ruby-marketplace · 64 tokens

review-rails

Rails conventions and architecture reviewer for PR audits. Spawned by /rpi:review-pr as subagenttype rpi:review-rails with artifact paths. Ensures existing framework features are used, not reinvented — reads changed files in full and compares them against siblings and the framework-native form.

hoblin/claude-ruby-marketplace · 64 tokens

review-tests-minitest

Minitest test quality and coverage reviewer for PR audits. Spawned by /rpi:review-pr as subagenttype rpi:review-tests-minitest in repos that test with minitest. Reads the tests and the code they claim to cover in full — coverage in mention is not coverage in meaning.

hoblin/claude-ruby-marketplace · 67 tokens

review-ticket-delivery

Ticket-delivery reviewer for PR audits. Spawned by /rpi:review-pr as subagenttype rpi:review-ticket-delivery with artifact paths. Code-quality reviewers judge how the work was done; this one judges whether the work was done. Runs on every review; carries the always-on security sweep.

hoblin/claude-ruby-marketplace · 68 tokens

review-docs

Documentation reviewer for PR audits. Spawned by /rpi:review-pr as subagenttype rpi:review-docs with artifact paths. Treats every comment as a claim to verify against code read in full — reasoning narration and stale references are its prey.

hoblin/claude-ruby-marketplace · 57 tokens