appgrammar_fuzz
Axiom: VII — Algebra | Category: Algebra
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.
Fuzz an appgrammar by introducing controlled variations to test robustness and discover edge cases.
Applies a mutation rate to a base appgrammar, generating child grammars with slight structural variations — different caching strategies, different ORMs, different state management approaches. These variations can be executed simultaneously, load-tested, and compared. The winner survives; the losers are discarded. This is Darwinian evolution applied to software architecture.
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 appgrammar to fuzz. |
params | object | No | Optional tool-specific parameters. |
Example
{
"method": "tools/call",
"params": {
"name": "appgrammar_fuzz",
"arguments": {
"source_appgrammar_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
}