Skip to main content
Glama

Audit Task

audit_task

Verify whether completed work meets a task specification using AI.

Before calling, pay the fee via one of two options: Option 1: Send $0.10 (XRP or RLUSD) to rmcSrkpZ2i2kuvtCPeTVetee9SixP4djR on XRPL Mainnet, or $0.10 USDC on Base. Option 2: Send $0.10 USDC on Base (chain 8453) — call with no fee first to get the address. Each fee_hash is single-use (anti-replay protection).

Returns: status (approved/rejected), verdict (PASS/FAIL), score (0-100), summary, details, criteria_met, criteria_failed, model_used.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskYesThe task requirements or specification the worker must meet.
workYesThe work, output, or proof of completion to evaluate against the specification.
fee_hashYesTransaction hash of the fee payment. For XRP: 64-char hex of an XRPL Payment tx. For USDC on Base: 0x-prefixed 66-char EVM tx hash. Each hash is single-use.
task_categoryNoEvaluation rubric. One of: default, creative, code, data, data_analysis, bug_bounty, legal, supply_chain.default
require_consensusNoWhen True, two AI models must independently agree before returning PASS. Recommended for high-stakes tasks.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.3/5.0
Behavior5/5

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

The description goes far beyond the annotations by detailing the fee payment options, single-use fee_hash anti-replay protection, the consensus behavior for require_consensus, and the exact return fields. This discloses significant behavioral traits (cost, side effects, conditional logic) that annotations only hint at via flags.

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 appropriately structured with a purpose statement, payment options, and return fields. It is somewhat lengthy but each section serves a purpose. The two payment options are slightly redundant (both can involve USDC on Base), which prevents a perfect score, but overall it is not bloated.

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?

Given the tool's complexity (fee payment, AI models, consensus option), the description covers the main aspects: purpose, precondition, return values, and a key optional feature. However, it omits error scenarios (e.g., invalid fee hash) and does not mention the task_category parameter, relying on the schema for that. Since an output schema exists, the return list adds minor redundancy.

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 baseline is 3. The description does not add meaning to individual parameters beyond what the schema already provides. The payment procedure clarifies how to obtain a fee_hash but does not enrich parameter semantics; it's process guidance rather than parameter-level detail.

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 opens with a specific verb and object: 'Verify whether completed work meets a task specification using AI.' This clearly states the tool's function and distinguishes it from siblings like evaluate_escrow_work, which is escrow-specific. The resource is well-defined as completed work against a task specification.

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

Usage Guidelines4/5

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

The description gives clear context for when to use this tool (to audit completed work) and includes a mandatory prerequisite (pay a fee before calling). However, it does not explicitly name alternatives or state when not to use this tool in favor of a sibling, so it falls short of a 5.

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.9/5.0
Disambiguation4/5

Most tools target distinct resources and actions clearly. However, list_marketplace_jobs and list_open_jobs both involve browsing jobs and could be confused, and audit_task overlaps somewhat with evaluate_escrow_work in verifying work quality. Descriptions are detailed enough to differentiate with careful reading.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., create_escrow_vault, list_marketplace_jobs, confirm_wallet_ownership). There are no camelCase or Style deviations, making naming highly predictable.

Tool Count4/5

At 19 tools, the set is slightly heavy but reasonably scoped for a multi-featured platform covering job board, escrow, skills, wallet verification, and pricing. Each tool serves a distinct purpose, though some consolidation could be considered.

Completeness2/5

There is a significant gap: list_marketplace_jobs references a claim_job() function that does not exist in the tool set, breaking the primary workflow for agents to accept available bounties. Additionally, there are no update/delete operations for job postings or skill listings, and no explicit escrow cancellation tool.