gograph_skeleton
Generates a stripped-down API skeleton of all Go packages in a repository, showing structs, interfaces, and signatures without implementations. Use after running 'gograph build .' to get a compact codebase overview.
Instructions
Emit the full repository's API signatures with function bodies stripped — struct definitions, interface declarations, and function/method signatures only. Requires .gograph/graph.json — run gograph build . first. Read-only; no side effects. WARNING: output can be very large on big repositories — consider using gograph_public per package for targeted queries. WHEN TO USE: When an LLM needs a compact map of the entire codebase's shape without reading source files individually. NOT TO USE: For full implementations (use gograph_source); for a single package (use gograph_public). RETURNS: Multi-line text of all stripped declarations across all packages; always non-empty when the graph has symbols.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||