Skip to main content

appgrammar_inoculation

Axiom: III — Governance | Category: Security

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.

Inoculate an appgrammar against common failure patterns. Injects adversarial test cases and hardens the blueprint.

When a vulnerability or failure pattern is identified, this tool surgically rewrites the affected steps in the architectural plan before the application is ever executed or regenerated by an agent. You patch the vulnerability upstream, at the intent level, rather than chasing it through thousands of lines of deployed code. The result is a hardened appgrammar that produces resilient applications by default.

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 inoculate.
paramsobjectNoOptional tool-specific parameters.

Example

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