Skip to main content

appgrammar_upstream_shield

Axiom: V — Ecosystem | 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.

Apply an upstream shield to an appgrammar. Protects against breaking changes from dependency updates.

When a critical vulnerability drops in a library, the upstream shield performs a sub-second graph query to find every blueprint that contains the vulnerable node. It then generates a patch that swaps the vulnerable dependency for a safe alternative — upstream, at the intent level, before any agent boots up to write code.

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

Example

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