Skip to main content
Glama

ateam_delete_skill

⚠️ IRREVERSIBLE in Core + Builder FS — kills the running MCP process, unregisters from skill registry, deletes the Mongo record, drops from solution.skills[] and solution.linked_skills, and removes the skill's files from Builder FS. REQUIRES confirm:true. RECOVERY: the skill still lives in GitHub — ateam_github_pull rebuilds the whole solution (no per-skill restore path).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmYesREQUIRED. Must be exactly true. A missing/false value refuses the call with a recovery hint.
skill_idYesThe skill ID to remove (e.g. 'linkedin-agent')
solution_idYesThe solution ID (e.g. 'personal-adas')

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries full burden and exceeds it. It discloses multiple side effects (process kill, registry unregister, Mongo delete, array removals, FS file deletion), the confirmation requirement, and the recovery mechanism. This is exemplary transparency for a destructive tool.

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 is a single, well-structured paragraph that front-loads the irreversible warning, lists effects, then requires confirm, and ends with recovery. Every sentence serves a purpose; the length is justified by the tool's high-stakes nature.

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

Completeness5/5

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

For a complex, irreversible, no-output-schema tool, the description is exceptionally complete. It covers behavior, prerequisites (confirm:true), side effects, and recovery. It does not detail the return value, but that is not critical for a delete operation and the other contextual gaps are fully addressed.

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

Parameters4/5

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

Schema coverage is 100%, so the schema already documents all parameters. The description adds critical context beyond the schema by explaining that confirm must be exactly true and that missing/false values trigger a refusal with a recovery hint. This reinforces the confirm semantic and clarifies the destructive consequences.

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 clearly states that this tool deletes a skill with specific destructive effects: kills the MCP process, unregisters from the skill registry, deletes the Mongo record, removes from solution.skills[] and linked_skills, and deletes files from Builder FS. This specific verb+resource pair distinguishes it from siblings like ateam_delete_solution.

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 implies when to use: for permanently deleting a skill, with strong warnings about irreversibility. It provides a recovery path via ateam_github_pull and notes there is no per-skill restore, which guides against casual use. However, it does not explicitly state alternatives or 'when not to use' beyond the destructive nature.

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 have clearly distinct purposes, with detailed descriptions that differentiate similar functions like chain polling vs. chain inspection. However, there is slight overlap between ateam_design_advisor, ateam_get_spec, and ateam_spec_search, which all serve design guidance, potentially causing confusion if descriptions are not read carefully.

Naming Consistency4/5

The naming mostly follows a consistent verb_noun pattern with the 'ateam_' prefix (e.g., ateam_get_solution, ateam_create_connector, ateam_test_skill). Minor deviations include ateam_patch (missing object) and ateam_redeploy (verb only), but overall the pattern is predictable and clear.

Tool Count3/5

With 47 tools, the count is high and exceeds the typical 15-tool threshold for a well-scoped set. However, the tools cover a broad and complex platform (auth, deployment, testing, GitHub integration, scaffolding), and each tool appears to have a distinct role, making the count borderline acceptable rather than excessive.

Completeness4/5

The tool set covers the full lifecycle of building, deploying, testing, and managing A-Team solutions, including design, GitHub integration, and verification. Minor gaps exist, such as no explicit tool for deleting individual files (though patching can overwrite) and no standalone skill listing, but these are not critical dead ends for an agent.