Skip to main content
Glama

IA-QA — 130+ QA & Dev Tools for AI Agents

test_skill

Read-only

Validate a SKILL.md definition (Cursor / GitHub Copilot / Windsurf) by auto-generating trigger-positive and trigger-negative scenarios, running each through the model with the skill injected as a system prompt, and scoring trigger accuracy + step adherence. Returns a PASS/FIX/BLOCK verdict with per-scenario breakdown. Uses Groq llama-3.3-70b by default (server key, no api_key needed). Pass api_key + model to use your own provider.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNoLLM model ID to use for both scenario generation and testing (e.g. gpt-4o-mini, claude-3-5-haiku-20241022). Defaults to openai/gpt-oss-20b (Groq, server key).
api_keyNoAPI key for the chosen model provider. Not required when using the default Groq model.
skill_mdYesFull content of the SKILL.md file to test. Must include a name, a "Use when:" trigger description, and at least one step.
scenario_countNoNumber of test scenarios to generate: half trigger-positive, half trigger-negative. Default: 6.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
scoreNo
verdictNo
scenariosNo
step_adherenceNo
trigger_accuracyNo

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark the tool as read-only and non-destructive. The description adds meaningful context beyond that: it reveals the testing process, the default provider (Groq), that no api_key is needed with the server key, and the option to supply api_key + model for a custom provider, plus the PASS/FIX/BLOCK verdict behavior.

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?

Three sentences, front-loaded with purpose, followed by process, output, and provider details. No fluff; each sentence earns its place. The only minor issue is the default-model mismatch with the schema, but structurally it is concise and well-organized.

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?

The description explains the core workflow, return verdict, and auth model, and an output schema exists to cover return details. It does not describe scenario_count default or enumeration constraints, but the schema covers those. The description is complete enough for a moderate-complexity read-only tool, though the model default inconsistency is a clarity gap.

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 covers all four parameters at 100%, so baseline is 3. The description adds provider-switching context but lacks extra param nuance. However, it contains a default-model contradiction: the description says 'Groq llama-3.3-70b' while the schema's model param says 'Defaults to openai/gpt-oss-20b (Groq, server key)', undermining the reliability of the added info.

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?

Description opens with a specific verb+resource: 'Validate a SKILL.md definition'. It details the process (auto-generating trigger-positive/negative scenarios, running each through the model with the skill injected as a system prompt) and distinguishes itself from generic test tools by focusing on SKILL.md files for Cursor/GitHub Copilot/Windsurf and scoring trigger accuracy + step adherence.

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 intended use case is explicit—validating a SKILL.md definition—though it does not name alternative tools or provide when-not-to-use guidance. The domain targeting (Cursor / GitHub Copilot / Windsurf) gives clear context for when this tool is appropriate.

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.6/5.0
Disambiguation2/5

Multiple tools overlap significantly: compare_models/llm_fit_finder/model_info/list_llm_models all compare models; similarity_score/embedding_similarity/run_semantic_tests all measure text similarity; detect_secrets/secret_scan/analyze_diff_bugs/pr_gatekeeper all scan for secrets. Descriptions attempt to differentiate, but the boundaries between many tools are unclear, making selection error-prone.

Naming Consistency4/5

The vast majority of tools follow a snake_case verb_noun pattern (validate_email, generate_uuid, parse_csv), making the set mostly predictable. A few notable deviations exist (pr_gatekeeper, llm_fit_finder, cot_analyzer, jira_to_test_suite, needle_haystack_generate) but they are the exception rather than the rule.

Tool Count1/5

With 149 tools, this set is far beyond the 50+ threshold for an extreme mismatch. Even as a general-purpose QA & Dev toolkit, the sheer number overwhelms and exceeds any reasonable scope, making discovery and selection impractical.

Completeness4/5

The toolkit covers an impressively broad range: text processing, LLM evaluation, security auditing, web checks, MCP validation, Jira/Confluence integration, and more. Minor gaps exist, such as missing delete/update for webhooks and Confluence pages, and no create/update for Jira issues, but these are workable around.

Resources