gograph_skeleton
Returns stripped API signatures for all packages in a Go repository, providing a compact map of structs, interfaces, and function signatures without implementation bodies.
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 | |||