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 neat-technologies/neat --skill claude-skillgit clone --depth 1 https://github.com/neat-technologies/neatWrote 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/neat-technologies/neat/claude-skill)<a href="https://agentmods.dev/skills/neat-technologies/neat/claude-skill"><img src="https://agentmods.dev/badge/skills/neat-technologies/neat/claude-skill.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.00000 | $0.01850 |
| Opus 5 | $0.00000 | $0.00925 |
| Sonnet 5 | $0.00000 | $0.00370 |
| Haiku 4.5 | $0.00000 | $0.00185 |
Grade B, and why
claude-skill scanned grade B with 1 finding 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 8d 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
`~/.neat/hooks/neat-search-nudge.mjs`, wired into `~/.claude/settings.json`) Copies of this mod
1 near-identical copy found in the catalogue:
- graph-first — 95% identical, 5 lines differ
How it starts
The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NEAT — Claude Code skill
This skill exposes NEAT's live semantic graph to Claude Code over MCP. Once installed, Claude can ask the running NEAT daemon (neatd) about a project's services, dependencies, recent errors, and policy violations — same as any other agent NEAT supports.
What you get
Sixteen MCP tools, served by @neat.is/mcp over stdio — ten read-only graph queries plus six /neat extend tools for instrumentation. The canonical list lives in MCP_TOOL_NAMES (@neat.is/types); the server registrations are the source for every description below.
Read tools
| Tool | What it does |
|---|---|
get_root_cause |
Trace a failing node up its dependency graph to the underlying cause. Use when something is breaking and you want the upstream culprit. |
get_blast_radius |
List every node downstream of a node — what would break if it failed or was redeployed. |
get_dependencies |
Transitive outgoing dependencies, BFS to depth N, each carrying distance, edge type, and provenance (EXTRACTED vs OBSERVED). |
get_observed_dependencies |
Only the runtime (OBSERVED via OTel) outgoing dependencies — compare what code declares against what production does. |
get_incident_history |
Recent OTel error events recorded against a node, most recent first. |
get_divergences |
Places where the code (EXTRACTED) and production (OBSERVED) disagree, ranked by confidence × severity. The most NEAT-shaped query — reach for it on "is anything weird?" |
get_graph_diff |
Diff a saved graph snapshot against the current live graph — added/removed/changed nodes and edges. |
get_recent_stale_edges |
Most recent OBSERVED → STALE transitions — integrations that have gone quiet. |
check_policies |
Inspect or dry-run the project's policy.json. Returns current violations, or violations a hypothetical action would cause. |
semantic_search |
Search nodes by natural-language query (embedding vectors when available, substring fallback otherwise). |
What ships with it
5 files 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.
- 8d ago First seen · 125 lines · 0 tokens per session scan B fde3608c5d4c
claude-skill is a skill published in the GitHub repository neat-technologies/neat (18 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,850 tokens. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
truecourse-fix
Fix TrueCourse violations that have suggested fixes.
bug-localization
Identify the precise location of bugs in source code, modules, and systems. Use this skill when debugging applications, investigating test failures, analyzing error reports, tracing runtime issues, or performing root cause analysis. Analyzes stack traces, error messages, failing tests, and code patterns to pinpoint…
bug-to-patch-generator
Generate code fixes and patches from bug reports, failing test cases, error messages, and stack traces. Use this skill when debugging code, fixing test failures, addressing GitHub issues, resolving runtime errors, or patching security vulnerabilities. Analyzes the bug context, identifies root causes, and generates…
counterexample-generator
Generate concrete counterexamples when formal verification, assertions, or specifications fail. Use this skill when debugging failed proofs, understanding why verification fails, creating minimal reproducing examples, analyzing assertion violations, investigating invariant breaks, or diagnosing specification…
runtime-error-explainer
Explains runtime errors and compilation failures with actionable debugging guidance. Use when Python or Java code throws runtime exceptions (NullPointerException, TypeError, AttributeError, etc.), compilation errors (syntax errors, type mismatches, import failures), or dependency issues. Analyzes error messages, stack…
truecourse-list
List TrueCourse violations found in this repository.