agentmako recipes
agentmako is a local-first MCP server for AI coding agents. The recipes below are practical walkthroughs of the common workflows: trace an auth flow, refactor safely, edit a Postgres / Supabase schema with full awareness of the call sites, debug a vague bug without grep loops.
Trace an auth flow
↗Walk a route to its handler, find the RLS, fix the bug — without grepping the codebase first.
Refactor safely
↗Rename an exported function across a real codebase without shipping broken callers.
Schema-aware edits
↗Add a Postgres column with RLS, find every code site that touches the table, audit tenant isolation.
Debug with context
↗
A real "hydration error" debug session — start from
context_packet, narrow with freshness, fix.