/mako-graph
TRIGGER when: user asks about relationships, dependency paths, import hotspots or cycles, symbol impact, or blast radius of a proposed change. Covers `graph_neighbors`, `graph_path`, `flow_map`, `change_plan`, `imports_deps`, `imports_impact`, `imports_hotspots`,
$ npx -y skills add drhalto/agentmako --skill mako-graph --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/mako-graph
Context preview
The summary Claude sees to decide when to auto-load this skill.
TRIGGER when: user asks about relationships, dependency paths, import hotspots or cycles, symbol impact, or blast radius of a proposed change. Covers `graph_neighbors`, `graph_path`, `flow_map`, `change_plan`, `imports_deps`, `imports_impact`, `imports_hotspots`,
SKILL.md
mako-graph.SKILL.mddescription: >-
TRIGGER when: user asks about relationships, dependency paths, import hotspots
or cycles, symbol impact, or blast radius of a proposed change. Covers
`graph_neighbors`, `graph_path`, `flow_map`, `change_plan`, `imports_deps`,
`imports_impact`, `imports_hotspots`, `imports_cycles`, `symbols_of`,
`exports_of`.
when_to_use: >-
Use for relationship questions, dependency traversal, import/symbol impact,
end-to-end flows, and planning multi-file changes.
allowed-tools: "mcp__mako-ai__*"
Mako Graph
Use this skill when the user's question is about relationships rather than a single entity. Graph, import, and symbol tools help estimate impact, find paths, and plan changes from indexed project facts.
Graph Tools
`graph_neighbors`
Use to inspect immediate graph neighbors for a file, symbol, route, table, RPC, or other known node.
`graph_path`
Use to find evidence-backed paths between two known nodes.
- Best when the user asks whether A reaches B or how a route connects to a
table/RPC/file.
- If the endpoints are ambiguous, use discovery or trace tools first.
`flow_map`
Use to map a higher-level flow across routes, components, services, tables, and RPCs.
- Best for end-to-end user stories or system behavior.
- Pair with `review_bundle_artifact` when a flow is being reviewed pre-ship.
`change_plan`
Use to produce an evidence-backed edit plan and expected blast radius before implementation.
- Best when the user asks "what do we need to change?" or "what might break?"
- Pair with artifact tools when the plan needs a durable handoff.
Imports
`imports_deps`
Use to inspect direct imports and unresolved internal edges for one or more files.
`imports_impact`
Use to estimate downstream dependents and likely blast radius of changing a file/module.
`imports_hotspots`
Use to identify highly connected import hotspots.
`imports_cycles`
Use to detect or inspect circular dependencies.
Symbols
`symbols_of`
Use to list important symbols declared in a file.
`exports_of`
Use to list exported symbols from a file or module.
Feedback Logging
Log `agent_feedback` when a graph, import, or symbol result here was notably useful, partial, noisy, stale, wrong, or wasted the turn. Skip routine calls.
Required procedure (see `/mako-ai:mako-guide` for full rules and reason-code vocabulary):
1. Call `recall_tool_runs` to get the prior run's `requestId`. Do not fabricate one — if no run is recalled, skip feedback. 2. Call `agent_feedback` with `referencedToolName`, `referencedRequestId`, `grade: "full" | "partial" | "no"`, `reasonCodes` from the starter vocabulary in `/mako-ai:mako-guide`, and a short `reason`.
See Also
- Use `/mako-ai:mako-trace` when the target is a specific route, table, RPC,
file, or error.
- Use `/mako-ai:mako-neighborhoods` when one table, route, or RPC should be the
center of the context bundle.
- Use `/mako-ai:mako-workflow` for artifacts after a plan or flow is clear.
Read more
description: >- TRIGGER when: user asks about relationships, dependency paths, import hotspots or cycles, symbol impact, or blast radius of a proposed change. Covers `graph_neighbors`, `graph_path`, `flow_map`, `change_plan`, `imports_deps`, `imports_impact`, `imports_hotspots`, `imports_cycles`, `symbols_of`, `exports_of`. when_to_use: >- Use for relationship questions, dependency traversal, import/symbol impact, end-to-end flows, and planning multi-file changes. allowed-tools: "mcp__mako-ai__*"
Mako Graph
Use this skill when the user's question is about relationships rather than a single entity. Graph, import, and symbol tools help estimate impact, find paths, and plan changes from indexed project facts.
Graph Tools
`graph_neighbors`
Use to inspect immediate graph neighbors for a file, symbol, route, table, RPC, or other known node.
`graph_path`
Use to find evidence-backed paths between two known nodes.
- Best when the user asks whether A reaches B or how a route connects to a
table/RPC/file.
- If the endpoints are ambiguous, use discovery or trace tools first.
`flow_map`
Use to map a higher-level flow across routes, components, services, tables, and RPCs.
- Best for end-to-end user stories or system behavior.
- Pair with `review_bundle_artifact` when a flow is being reviewed pre-ship.
`change_plan`
Use to produce an evidence-backed edit plan and expected blast radius before implementation.
- Best when the user asks "what do we need to change?" or "what might break?"
- Pair with artifact tools when the plan needs a durable handoff.
Imports
`imports_deps`
Use to inspect direct imports and unresolved internal edges for one or more files.
`imports_impact`
Use to estimate downstream dependents and likely blast radius of changing a file/module.
`imports_hotspots`
Use to identify highly connected import hotspots.
`imports_cycles`
Use to detect or inspect circular dependencies.
Symbols
`symbols_of`
Use to list important symbols declared in a file.
`exports_of`
Use to list exported symbols from a file or module.
Feedback Logging
Log `agent_feedback` when a graph, import, or symbol result here was notably useful, partial, noisy, stale, wrong, or wasted the turn. Skip routine calls.
Required procedure (see `/mako-ai:mako-guide` for full rules and reason-code vocabulary):
1. Call `recall_tool_runs` to get the prior run's `requestId`. Do not fabricate one — if no run is recalled, skip feedback. 2. Call `agent_feedback` with `referencedToolName`, `referencedRequestId`, `grade: "full" | "partial" | "no"`, `reasonCodes` from the starter vocabulary in `/mako-ai:mako-guide`, and a short `reason`.
See Also
- Use `/mako-ai:mako-trace` when the target is a specific route, table, RPC,
file, or error.
- Use `/mako-ai:mako-neighborhoods` when one table, route, or RPC should be the
center of the context bundle.
- Use `/mako-ai:mako-workflow` for artifacts after a plan or flow is clear.
agentmako is a local-first codebase intelligence engine for AI coding tools. It gives agents like Codex, Claude Code, Cursor, and local harnesses a compact Reef-first tool surface for understanding a project before they edit it.
Repo: drhalto/agentmako
Other skills on agentmako.
- /mako-code-intel
TRIGGER when: user wants structural code pattern search (ast-grep) or static lint against selected files, or wants to turn a fix diff into a rule-pack draft. Covers `ast_find_pattern`, `lint_files`, `extract_rule_template`.
Open skill - /mako-database
TRIGGER when: user asks about database schema, RLS policies, foreign keys, stored procedures, or table DDL directly. Covers `db_ping`, `db_columns`, `db_fk`, `db_rls`, `db_rpc`, `db_table_schema`.
Open skill - /mako-discovery
TRIGGER when: user is working in an unfamiliar repo, asks 'where is X', 'what touches Y', needs broad search across code/schema/routes, or is unsure which mako tool fits the task. Covers `reef_ask`, `reef_status`, `reef_verify`, `reef_impact`, `mako_help`, `tool_search`,
Open skill - /mako-guide
Start here when working in a project with the mako-ai MCP server configured. Entry point that explains how mako's tool skills are organized and carries the policy for logging `agent_feedback` vs acknowledging static findings with `finding_ack`.
Open skill - /mako-neighborhoods
TRIGGER when: user wants entity-wide context for a table, route, or RPC -- schema + RLS + readers + writers + downstream touches all at once. Covers `table_neighborhood`, `route_context`, `rpc_neighborhood`.
Open skill - /mako-trace
TRIGGER when: user asks to trace a specific route, schema object, file, table, RPC, or error string through its evidence. Covers `route_trace`, `schema_usage`, `file_health`, `auth_path`, `trace_file`, `preflight_table`, `trace_edge`, `trace_error`, `trace_table`, `trace_rpc`.
Open skill

