Skip to main content
Glama
Kadihx
by Kadihx

Adversarial red-teaming dual loop

jev_redteam

Generate concrete anti-theses against a proposal, score their severity and evidence, then arbitrate the safest route with mitigations.

Instructions

Generate concrete anti-theses against a thesis, score their severity/evidence with the Jev loop and arbitrate the safest route with residual risks and mitigations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
thesisYesThe proposal, plan or implementation claim to attack.
contextNoVerbatim context lines.
maxAntiThesesNoHow many anti-theses to generate (3-8, default 4).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It does reveal the internal workflow: generating anti-theses, scoring severity/evidence, and arbitrating a route with risks and mitigations. However, it does not explain the 'Jev loop' or 'dual loop' behavior, nor what the actual output structure looks like.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single dense sentence with no wasted words. It front-loads the primary action and packs the key result into one clause, though the unexplained 'Jev loop' phrase adds minor ambiguity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description gives a reasonable high-level understanding of the tool's workflow and output. However, with no output schema and no annotations, an agent still lacks detail about the exact return format, any side effects, and when this tool is preferable to related siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema already documents all parameters, including thesis, context, and maxAntiTheses. The description does not add significant parameter-specific meaning beyond restating the overall adversarial purpose, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action: generate anti-theses against a thesis, score them, and arbitrate a safest route. This distinguishes it from generic evaluation or decision tools, though it does not explicitly differentiate it from sibling tools by name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is used for adversarial red-teaming of a proposal, but it never states when to use this tool versus alternatives like jev_evaluate, jev_decide, or jev_audit. No explicit conditions or exclusions are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.