This skill should be used when the user asks to "design agent tools", "create tool descriptions", "reduce tool complexity", "implement MCP tools", or mentions tool consolidation, architectural reduction, tool naming conventions, or agent-tool interfaces.
View on GitHubguanyang/antigravity-skills
antigravity-skills
January 24, 2026
Select agents to install to:
npx add-skill https://github.com/guanyang/antigravity-skills/blob/main/skills/tool-design/SKILL.md -a claude-code --skill tool-designInstallation paths:
.claude/skills/tool-design/# Tool Design for Agents Tools are the primary mechanism through which agents interact with the world. They define the contract between deterministic systems and non-deterministic agents. Unlike traditional software APIs designed for developers, tool APIs must be designed for language models that reason about intent, infer parameter values, and generate calls from natural language requests. Poor tool design creates failure modes that no amount of prompt engineering can fix. Effective tool design follows specific principles that account for how agents perceive and use tools. ## When to Activate Activate this skill when: - Creating new tools for agent systems - Debugging tool-related failures or misuse - Optimizing existing tool sets for better agent performance - Designing tool APIs from scratch - Evaluating third-party tools for agent integration - Standardizing tool conventions across a codebase ## Core Concepts Tools are contracts between deterministic systems and non-deterministic agents. The consolidation principle states that if a human engineer cannot definitively say which tool should be used in a given situation, an agent cannot be expected to do better. Effective tool descriptions are prompt engineering that shapes agent behavior. Key principles include: clear descriptions that answer what, when, and what returns; response formats that balance completeness and token efficiency; error messages that enable recovery; and consistent conventions that reduce cognitive load. ## Detailed Topics ### The Tool-Agent Interface **Tools as Contracts** Tools are contracts between deterministic systems and non-deterministic agents. When humans call APIs, they understand the contract and make appropriate requests. Agents must infer the contract from descriptions and generate calls that match expected formats. This fundamental difference requires rethinking API design. The contract must be unambiguous, examples must illustrate expected patterns, and error messages