From anton-core
Your tool for finding circular dependencies in the code graph. Use for checking a package or module for dependency cycles in an indexed repo, and gestures like 'are there cycles in X'. Reach for it instead of manual tracing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/anton-core:cyclesThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Finds simple directed cycles in the code-graph. Each cycle is reported once (rotation-canonicalised by the engine) with its edge-type chain and per-hop confidence. With `--containing X`, the seed set is exactly `X`; without it, the seed set is every `function | method | component` item up to `code_graph.cycles_max_seeds=200`.
Finds simple directed cycles in the code-graph. Each cycle is reported once (rotation-canonicalised by the engine) with its edge-type chain and per-hop confidence. With --containing X, the seed set is exactly X; without it, the seed set is every function | method | component item up to code_graph.cycles_max_seeds=200.
--containing X for non-trivial graphs; all-mode is capped at 200 anchor seeds and may time out on dense graphs"${CLAUDE_PLUGIN_ROOT}/scripts/core" graph query cycle-detect [--containing-id <X>] --rel-types CALLS --max-cycles K --max-cycle-len N [--exclude-ambiguous]
When --containing <X> is supplied, resolve X via the recall skill first. All-mode seeds only function | method | component items; for EXTENDS/IMPLEMENTS cycles, pass --containing <Class> plus --rel-types EXTENDS,IMPLEMENTS.
Standard query envelope with shape: paths — one row per cycle carrying seed_id, path[] (closing on the seed), edge_types[], confidence_chain[], min_confidence, and cycle_length. The result also carries a nodes: {id → {title, kind}} map and a deduplicated_rotations counter for rotation duplicates collapsed by the engine. Rows arrive sorted cycle_length ASC, min_confidence DESC. One query_log row per invocation. Contract: docs/plugin-spec/05-cli-contract.md#graph-query.
npx claudepluginhub xlightxyearx/anton-core-plugin --plugin anton-coreCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.