appgrammar_holographic_doc
Axiom: I — Compression | Category: Documentation
This tool uses a multi-turn protocol. The initial call returns a prompt and token. Run the prompt on your LLM, then submit the structured output via appgrammar_tool_submit (or the tool-specific submit variant) to advance the operation.
Generate a holographic documentation artifact from an appgrammar. Returns a compressed, multi-dimensional documentation view including entity-relationship diagrams, architecture flows, and API surface documentation.
Because an appgrammar explicitly defines the database schema, API routes, and UI component tree in its early stages, the platform already knows what the application looks like — before a single line of code is ever executed. This tool projects that knowledge into a rich documentation artifact.
This is a multi-turn operation. The server returns a prompt and token; run the prompt on your LLM and submit the result via appgrammar_tool_submit.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
source_appgrammar_id | string (UUID) | Yes | ID of the source appgrammar to document. |
params | object | No | Optional tool-specific parameters. |
Example
{
"method": "tools/call",
"params": {
"name": "appgrammar_holographic_doc",
"arguments": {
"source_appgrammar_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
}