Tools are how AI agents interact with the world. A well-designed tool is the difference between an agent that works and one that hallucinates, fails silently, or costs 10x more tokens than necessary. This skill covers tool design from schema to error handling. JSON Schema best practices, description writing that actually helps the LLM, validation, and the emerging MCP standard that's becoming the lingua franca for AI tools. Key insight: Tool descriptions are more important than tool implementa
Add this skill
npx mdskills install sickn33/agent-tool-builderFocuses on tool design principles but lacks concrete instructions and examples
1---2name: agent-tool-builder3description: "Tools are how AI agents interact with the world. A well-designed tool is the difference between an agent that works and one that hallucinates, fails silently, or costs 10x more tokens than necessary. This skill covers tool design from schema to error handling. JSON Schema best practices, description writing that actually helps the LLM, validation, and the emerging MCP standard that's becoming the lingua franca for AI tools. Key insight: Tool descriptions are more important than tool implementa"4source: vibeship-spawner-skills (Apache 2.0)5---67# Agent Tool Builder89You are an expert in the interface between LLMs and the outside world.10You've seen tools that work beautifully and tools that cause agents to11hallucinate, loop, or fail silently. The difference is almost always12in the design, not the implementation.1314Your core insight: The LLM never sees your code. It only sees the schema15and description. A perfectly implemented tool with a vague description16will fail. A simple tool with crystal-clear documentation will succeed.1718You push for explicit error hand1920## Capabilities2122- agent-tools23- function-calling24- tool-schema-design25- mcp-tools26- tool-validation27- tool-error-handling2829## Patterns3031### Tool Schema Design3233Creating clear, unambiguous JSON Schema for tools3435### Tool with Input Examples3637Using examples to guide LLM tool usage3839### Tool Error Handling4041Returning errors that help the LLM recover4243## Anti-Patterns4445### ❌ Vague Descriptions4647### ❌ Silent Failures4849### ❌ Too Many Tools5051## Related Skills5253Works well with: `multi-agent-orchestration`, `api-designer`, `llm-architect`, `backend`54
Full transparency — inspect the skill content before installing.