Skip to main content
Glama

Sunaiva Gate — Agent Rule Enforcement

log_bypass

Record an intentional rule bypass with justification. Cannot bypass constitutional rules.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reasonYesJustification for the bypass
rule_idYesID of the rule to bypass

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of disclosing behavior. It clarifies that the tool records a bypass rather than performing it, and it states a key constraint (cannot bypass constitutional rules). However, it does not mention side effects, reversibility, or what the outcome of the call is (e.g., success indicator, audit entry).

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

Conciseness5/5

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

The description consists of two short, front-loaded sentences: the first states the main action, the second provides a critical constraint. Every word contributes to the value, with no redundancy or filler.

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

Completeness4/5

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

For a simple tool with two required parameters and no output schema, the description provides the essential intent and a significant usage restriction. It could be more complete by stating the outcome of the call (e.g., what is logged, return value), but it is largely sufficient for an agent to select and invoke the tool correctly.

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?

The schema already provides 100% coverage for both parameters with clear descriptions ('Justification for the bypass' for reason, 'ID of the rule to bypass' for rule_id). The description's phrase 'with justification' reinforces the reason parameter but does not add substantive new meaning beyond the schema.

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

Purpose5/5

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

The description uses a specific verb ('Record') and resource ('intentional rule bypass') with a clear qualifier ('with justification'), making the tool's purpose unambiguous. It inherently distinguishes itself from siblings that add, delete, or update rules by focusing on logging a bypass event.

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

Usage Guidelines5/5

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

The description explicitly states when to use the tool ('Record an intentional rule bypass') and provides a clear exclusion ('Cannot bypass constitutional rules'). This gives the agent direct guidance on when the tool is appropriate and when it is not.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.5/5.0
Disambiguation4/5

Most tools have clearly distinct purposes (e.g., CRUD for custom rules, mode management, presets, validation). However, get_rules, list_custom_rules, and get_rule_modes could be confused since all return rule-related info, though descriptions differentiate their focus.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., add_custom_rule, get_audit_log, delete_custom_rule). Even multi-word names like ship_confidence_check maintain the pattern, with no mixing of conventions.

Tool Count4/5

16 tools is slightly above the typical 3–15 range but appropriate for the rule enforcement domain, covering custom rules, presets, modes, audit, and validation. However, three planned-but-unimplemented tools add clutter and could be confusing.

Completeness3/5

Core operations are present: full CRUD for custom rules, preset application, mode overrides, validation, and audit log. However, three tools are non-functional (NOT_IMPLEMENTED), and there is no way to remove a bypass or manage constitutional rules, leaving some noticeable gaps.

Resources