Agent skill
tool-calling
Install this agent skill to your Project
npx add-skill https://github.com/cuba6112/skillfactory/tree/main/skills/tool-calling
SKILL.md
Tool Calling
Overview
Define tools as structured interfaces the model can call, then implement a loop that executes those calls and returns results. Treat tool calls as suggestions that must be validated before execution.
When to Use
- Use this skill when the frontmatter triggers apply; otherwise start with a simple prompt or deterministic workflow.
Decision Tree
- Does the model need access to external data or actions?
- Yes: define tools and a call loop.
- Are calls independent and can be executed in parallel?
- Yes: allow parallel calls and aggregate results.
- Do arguments frequently fail validation?
- Yes: tighten schemas and add a validation gate.
Workflows
1. Tool Schema Definition
- Choose a single, concrete action per tool (fetch, mutate, or transform).
- Write a JSON schema with
name,description, andparameters. - Use
type: object,properties, andrequiredfor arguments. - Add enums or patterns where arguments are restricted.
- Register the tool list in the model request.
2. Tool Call Execution Loop
- Send the prompt with tool definitions.
- If a tool call is returned, validate the arguments against the schema.
- Execute the tool and capture the result.
- Send the tool result back to the model for a final response.
3. Validation Gate for Arguments
- Validate required keys and type compatibility.
- Reject unknown keys or invalid enum values.
- If validation fails, return a structured error to the model and request a corrected call.
Non-Obvious Insights
- Tool calls are model decisions; treat them as requests and gate with validation.
- Tool schemas are the only interface the model sees, so the schema quality directly shapes behavior.
- Schemas specify how to call functions; ambiguous or incomplete schemas yield ambiguous arguments.
- Parallel calls should only be used when calls do not depend on each other.
Evidence
- "the model determines when to call specific functions and provides the necessary parameters to execute real-world actions." - Google AI
- "schema specifying how to call one or more of the declared functions in order to respond to the user's question." - Google AI
- "A function or tool refers in the abstract to a piece of functionality that we tell the model it has access to." - OpenAI
- "As a model generates a response to a prompt, it may decide that it needs data or functionality provided by a tool to follow the prompt's instructions." - OpenAI
Scripts
scripts/tool-calling_tool.py: CLI for linting tool schemas and validating tool calls.scripts/tool-calling_tool.js: Node.js CLI for the same checks.
Dependencies
- Python 3.11+ or Node 18+.
References
- references/README.md
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
prompt-engineering
Comprehensive prompt engineering techniques for Claude models. Use this skill when crafting, optimizing, or debugging prompts for Claude API, Claude Code, or any Claude-powered application. Covers system prompts, role prompting, multishot examples, chain of thought, XML structuring, long context handling, extended thinking, prompt chaining, Claude 4.x-specific best practices, and agentic orchestration including subagents, agent loops, skills, MCP integration, and multi-agent workflows.
adk-rag-agent
Build RAG (Retrieval-Augmented Generation) agents with Google ADK and Vertex AI RAG Engine. Use when implementing document Q&A, knowledge base search, or citation-backed responses. Covers VertexAiRagRetrieval tool, corpus setup, and citation formatting.
headless-cli-agents
Build agentic systems using Claude CLI in headless mode or the Claude Agent SDK. Use when building automation pipelines, CI/CD integrations, multi-agent orchestration, or programmatic Claude interactions. Covers CLI flags (-p, --output-format), session management (--resume, --continue), Python SDK (claude-agent-sdk), custom tools, and agent loop patterns.
notion-knowledge-capture
Capture conversations and decisions into structured Notion pages; use when turning chats/notes into wiki entries, how-tos, decisions, or FAQs with proper linking.
mcp-builder
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
gh-fix-ci
Inspect GitHub PR checks with gh, pull failing GitHub Actions logs, summarize failure context, then create a fix plan and implement after user approval. Use when a user asks to debug or fix failing PR CI/CD checks on GitHub Actions and wants a plan + code changes; for external checks (e.g., Buildkite), only report the details URL and mark them out of scope.
Didn't find tool you were looking for?