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/explyt/spring-plugin/review-core-correctnessnpx skills add explyt/spring-plugin --skill review-core-correctnessgit clone --depth 1 https://github.com/explyt/spring-pluginWrote 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/explyt/spring-plugin/review-core-correctness)<a href="https://agentmods.dev/skills/explyt/spring-plugin/review-core-correctness"><img src="https://agentmods.dev/badge/skills/explyt/spring-plugin/review-core-correctness.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.00067 | $0.03180 |
| Opus 5 | $0.00034 | $0.01590 |
| Sonnet 5 | $0.00013 | $0.00636 |
| Haiku 4.5 | $0.00007 | $0.00318 |
Grade A, and why
review-core-correctness 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 — 212 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Core correctness reviewer
You are the mandatory reviewer pass. This is a normative skill and the main reasoning-first reviewer. It covers everything that must not be lost between narrow domain reviewers: correctness, contracts, architecture sanity, UX behavior, tests, and core code-quality rules.
Owned checklist IDs
Use and reference these checklist IDs when applicable:
G1,G2,G3,G4,G7,G9,G10,G11,G13PERF1,PERF11,PERF12- also reference
G5,G6,G12(owned by review-persistence-security-resources) andG8(owned by review-ui-platform) when needed for broad reasoning - and, when needed for broad reasoning,
H42,H43,H44,H45,H46
Non-negotiable review method
- Read
REVIEW_SCOPE.mdandREVIEW_PACKET.mdfirst. - Understand the intent before judging the code.
- Trace the happy path, then every unhappy path.
- If you find one logic bug, apply the Neighborhood Scan Rule: scan the whole method, class and sibling files.
- Do not replace reasoning with checklist ticking. Use the checklist to ensure coverage, not to avoid thinking.
Hard rules
1. Correctness
The most important question: does the code do what it claims to do?
- Read the PR description and linked issue. Understand the intent before reading code.
- Trace the happy path. Does it produce the correct result?
- Trace every unhappy path. What happens on:
null, empty collection, missing file, missing config?- Unresolved Spring bean, missing annotation attribute, malformed YAML/properties file?
- Library class absent from the project classpath (feature must degrade, not throw)?
- Concurrent modification, race condition?
- User cancels the operation mid-way?
- Component is disposed during async callback?
- Boundary conditions: first element, last element, empty, single item, maximum size.
- State consistency: if the code modifies state, is the state consistent after every possible exit point — including exceptions and cancellation? If a
trysets state in thetrybody but does not reset incatch/finally, that is a bug. - If there is an
if, ask:What happens in the else?Missingelsebranches are a top source of silent bugs. - Order of operations: when multiple side effects happen in sequence (resolve beans, update gutter markers, show notification), ask:
Is this the order the user expects?Getting this wrong silently breaks UX. - Transitive consistency: if the code resolves a graph of objects (beans → dependent beans, endpoint mappings → handler methods, configs → imported configs), invalidity must propagate to dependents. A resolved parent with an unresolved child is a logic bug.
- Silent early returns hiding bugs:
val x = getSomething() ?: return— ask in what case this is null and whetherreturnmasks a state bug. - Return type semantics:
getX()(singular) → single item or null.getXs()(plural) → collection. ReturnSetif duplicates are impossible,Listonly if order matters.
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 · 212 lines · 67 tokens per session scan A 60c7fd21612f
review-core-correctness is a skill published in the GitHub repository explyt/spring-plugin (160 stars, last pushed yesterday), licensed Apache-2.0. It adds 67 tokens to every session and 3,180 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-08-30.
Other skills, from other repositories
analyze-external-methods
Analyze an OpenTaint scan's dropped external methods and decide which of them are propagators and optionally sinks. Use when a dropped-external-methods.yaml needs classification for dropped method type.
create-rule
Author and verify an OpenTaint rule. Use whenever a rule creation is needed.
appsec-agent
Run an end-to-end OpenTaint application-security analysis while owning the long project build and scans and delegating each other pipeline stage. Use when the user asks to find vulnerabilities, or scan an application for security issues.
create-dataflow-approximation
Model a method's taint propagation as code-based dataflow approximation and refine it against a test project until the sample passes. Use for a dropped method that requires code-based approximation.
create-test-project
Create an OpenTaint test project with positive/negative samples for verifying a rule or approximation. Use when a rule or approximation needs a test project to check against.
discover-attack-surface
Classify project-used dependency members and record the taint sources among them not covered by the built-in rules. Use for the source-discovery depth pass.