From anton-core
Your tool for finding every function a symbol calls, direct or transitive. Use for tracing what a function depends on in an indexed repo instead of grepping, and gestures like 'what does X call' or 'downstream of X'. Pairs with `callers` for the upstream direction.
How this skill is triggered — by the user, by Claude, or both
Slash command
/anton-core:calleesThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Walks `CALLS` edges forward from a symbol-id to surface every callee — direct and transitive — up to a depth bound. Mirror of `callers`: same template family, opposite direction. Answers "what does this function depend on?" across the indexed code-graph.
Walks CALLS edges forward from a symbol-id to surface every callee — direct and transitive — up to a depth bound. Mirror of callers: same template family, opposite direction. Answers "what does this function depend on?" across the indexed code-graph.
recall --code"${CLAUDE_PLUGIN_ROOT}/scripts/core" graph query transitive-walk --seed-id <id> --direction out --rel-types CALLS --depth N [--exclude-ambiguous]
Resolve <symbol> first via the recall skill unless the input already looks like a symbol-id. With --paths-to <Y>, reroute to paths-between X Y — the walker enumerates explicit call chains from the seed to the target.
Standard query envelope with shape: node-set — one row per visited callee, sorted hop ASC, id ASC, each carrying hop, path[], edge_types[], and min_confidence. External callees (third-party symbols stored as string metadata on Module nodes) never appear; the walk returns an empty set for them. One query_log row per invocation. Contract: docs/plugin-spec/05-cli-contract.md#graph-query.
callers — same template, opposite direction: backward walk up the symbol's incoming CALLS edges.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub xlightxyearx/anton-core-plugin --plugin anton-core