Skip to main content

appgrammar_fuzz

Axiom: VII — Algebra | Category: Algebra

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.

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

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

Example

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