transitive-graph

transitive-graph is a skill for Claude Code from kirich1409/krozov-ai-tools. It costs 65 tokens per session (476 once invoked), scanned A, original, MIT.

A dependency-tree lookup for one specific Maven library and version, showing the libraries it brings in indirectly.

In plain words
What is it for?
It helps inspect every dependency node and connection pulled in by a Maven artifact.
Why use it?
It makes the full chain of transitive dependencies visible before or after adding a library.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Part of the maven-mcp plugin — 21 skills, 2 hooks shipped together

Good fit It helps inspect every dependency node and connection pulled in by a Maven artifact.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kirich1409/krozov-ai-tools/transitive-graph
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 kirich1409/krozov-ai-tools --skill transitive-graph
Clone the repo
git clone --depth 1 https://github.com/kirich1409/krozov-ai-tools

Made for: Claude Code.

Or install maven-mcp, the plugin that ships this one along with the rest of its 21 skills, 2 hooks.

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 transitive-graph

README.md
[![agentmods](https://agentmods.dev/badge/skills/kirich1409/krozov-ai-tools/transitive-graph/github.svg)](https://agentmods.dev/skills/kirich1409/krozov-ai-tools/transitive-graph)
Your own site
<a href="https://agentmods.dev/skills/kirich1409/krozov-ai-tools/transitive-graph"><img src="https://agentmods.dev/badge/skills/kirich1409/krozov-ai-tools/transitive-graph/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 transitive-graph

Your own site · 80×15
<a href="https://agentmods.dev/skills/kirich1409/krozov-ai-tools/transitive-graph"><img src="https://agentmods.dev/badge/skills/kirich1409/krozov-ai-tools/transitive-graph.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 476 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.00065 $0.00476
Opus 5 $0.00032 $0.00238
Sonnet 5 $0.00013 $0.00095
Haiku 4.5 $0.00006 $0.00048

Measured 11d ago against content hash f5178420293a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

transitive-graph 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 11d 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/maven-mcp/plugin/skills/transitive-graph/SKILL.md · 50 lines

What it actually says

Transitive Graph

Fetch the resolved transitive dependency graph for one Maven GAV via deps.dev.

Steps

  1. Parse groupId, artifactId, version (all required — this tool needs one specific, already-known version; there is no "latest" shortcut).

  2. Call get_transitive_graph with groupId, artifactId, version.

  3. Present the result:

    • nodes — every {groupId, artifactId, version} in the graph
    • edges{from, to} pairs, indices into nodes (render as an indented tree or a groupId:artifactId:version → groupId:artifactId:version list, whichever fits the size better)
    • If partial: true (deps.dev unreachable, returned an error, or the graph was truncated by the node cap) — say so explicitly; do not present a partial graph as complete.

Constraints and non-goals

  • Not for finding version conflicts across a whole project's dependencies — use /dependency-conflicts, which unions graphs like this one across every direct dependency.
  • Not for a project's own declared (non-transitive) dependencies — use /scan-project-dependencies.

Known limitations

deps.dev resolves in isolation from this one root — project-level dependencyManagement, Gradle ResolutionStrategy / strict versions / exclusions are not modeled. State this when the graph is used to make a decision (e.g. "is X actually on the classpath").

Fallback (MCP unavailable only)

No practical manual fallback — hand-walking a transitive Maven/Gradle resolution from POMs is impractical to reproduce correctly. Tell the user the live graph is unavailable rather than guessing at transitive contents.

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. 11d ago First seen · 50 lines · 65 tokens per session scan A f5178420293a

Subscribe to this mod's changes

transitive-graph is a skill published in the GitHub repository kirich1409/krozov-ai-tools (22 stars, last pushed 5d ago), licensed MIT. It adds 65 tokens to every session and 476 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-01.

Related

Other skills, from other repositories

matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

K-Dense-AI/scientific-agent-skills · 42 tokens

ast-grep

Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for…

JanDeDobbeleer/oh-my-posh · 80 tokens

platform-detection

Identify a .NET project's test platform, framework, command mode, and SDK-style vs classic project system. Use only for "which test platform/framework?", "VSTest or MTP?", or "what runner does this project use?", including bridge settings, UseVSTest opt-outs, and incompatible or conflicting VSTest/MTP configuration.…

dotnet/skills · 146 tokens

unity-version-split

Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).

IvanMurzak/Unity-MCP · 59 tokens

omh-rust

This is a Hermes-native rust workflow skill.

rlaope/oh-my-hermes · 69 tokens

axiom-concurrency

Use when writing ANY async code, actors, threads, or seeing ANY concurrency error. Covers Swift 6 concurrency, @MainActor, Sendable, data races, async/await patterns.

CharlesWiltgen/Axiom · 43 tokens