Skip to main content

appgrammar_distill

Axiom: VI — Transformation | Category: Transformation

Multi-turn operation

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.

Distill an appgrammar to its essential components. Removes redundancy and simplifies the blueprint.

Condenses a complex enterprise appgrammar into a minimal instruction set for rapid prototyping. Strips Kubernetes manifests, Redis caching layers, multi-region deployment stages, and other production infrastructure. What remains is the pure functional core — the minimum viable intent — re-targeted at a simpler runtime environment.

This is the inverse of appgrammar_amplify.

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

ParameterTypeRequiredDescription
source_appgrammar_idstring (UUID)YesID of the appgrammar to distill.
paramsobjectNoOptional tool-specific parameters.

Example

{
"method": "tools/call",
"params": {
"name": "appgrammar_distill",
"arguments": {
"source_appgrammar_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
}