What problem does it solve? Screens that consume model command responses often rely on hand-written interfaces guessed from memory, which compile cleanly but render nothing because key names or nesting do not match what the SQL function actually returns. ## Core Features & Use Cases - Source-first shape discovery: Locates the real response shape by reading jsonb_build_object keys in generated CRUD SQL, custom SQL, or the embedded core SQL map inside @altera/server. - Explicit call-site typing: Shows how to narrow the generically typed bus.request("data.load") envelope with a locally declared interface annotated with its source function. - Core command reference: Documents the actual shapes of menu/current, printPdf, list, get, and lookup, including the flat id/parentId menu contract and base64 PDFs in data.extra. - Use Case: A menu component renders only grey folder headers because it was typed against an imagined { code, routePath, children } shape; this Skill traces the real menu_current SQL, revealing flat rows with route, and fixes the interface. ## Quick Start Ask the assistant to derive the exact response interface for the menu/current command by reading its SQL source before typing the screen component.