From tac
Designs custom Python tools with @tool decorator for domain-specific agents, MCP servers, and Agent SDK. Guides interface, params, logic, and error handling.
npx claudepluginhub melodic-software/claude-code-plugins --plugin tacThis skill is limited to using the following tools:
Create custom tools for domain-specific agents using the @tool decorator.
Generates boilerplate for custom @tool-decorated functions in Claude Agent SDK, including MCP server setup and agent config. Use when adding tools to custom agents.
Designs effective tools for AI agents, covering descriptions, namespacing, complexity reduction, and contracts. Use when creating, optimizing, debugging, or evaluating agent toolsets.
Guides designing AI agent tools with principles for workflows, context optimization, naming, input/output schemas, error handling, and evaluation.
Share bugs, ideas, or general feedback.
Create custom tools for domain-specific agents using the @tool decorator.
Design and implement custom tools that give agents specialized capabilities for domain-specific operations.
Answer:
Tool Signature:
@tool(
"tool_name", # Unique identifier
"Description for agent", # How agent knows when to use
{"param1": type, "param2": type} # Parameter schema
)
async def tool_implementation(args: dict) -> dict:
pass
Naming Convention:
calculate_compound_interest not calcdb_query, api_callDescription Guidelines:
Parameter Types:
{
"text_param": str, # String
"number_param": int, # Integer
"decimal_param": float, # Float
"flag_param": bool, # Boolean
}
Required vs Optional:
async def my_tool(args: dict) -> dict:
# Required - must exist
required = args["required_param"]
# Optional - with default
optional = args.get("optional_param", "default")
Basic Template:
@tool(
"tool_name",
"Description",
{"param1": str, "param2": int}
)
async def tool_name(args: dict) -> dict:
try:
# 1. Extract and validate inputs
param1 = args["param1"]
param2 = args.get("param2", 10)
# 2. Perform operation
result = perform_operation(param1, param2)
# 3. Return success
return {
"content": [{"type": "text", "text": str(result)}]
}
except Exception as e:
# 4. Handle errors
return {
"content": [{"type": "text", "text": f"Error: {str(e)}"}],
"is_error": True
}
Validation Pattern:
async def my_tool(args: dict) -> dict:
# Validate required params
if "required" not in args:
return error_response("Missing required parameter")
# Validate types
if not isinstance(args["required"], str):
return error_response("Parameter must be string")
# Validate values
if args.get("limit", 0) < 0:
return error_response("Limit cannot be negative")
# Security validation
if is_dangerous(args["input"]):
return error_response("Security: Operation blocked")
Error Response Helper:
def error_response(message: str) -> dict:
return {
"content": [{"type": "text", "text": message}],
"is_error": True
}
def success_response(result: str) -> dict:
return {
"content": [{"type": "text", "text": result}]
}
from claude_agent_sdk import create_sdk_mcp_server
# Create server with tools
my_server = create_sdk_mcp_server(
name="my_domain",
version="1.0.0",
tools=[
tool_one,
tool_two,
tool_three,
]
)
options = ClaudeAgentOptions(
mcp_servers={"my_domain": my_server},
allowed_tools=[
"mcp__my_domain__tool_one",
"mcp__my_domain__tool_two",
"mcp__my_domain__tool_three",
],
# Disable unused default tools
disallowed_tools=["WebFetch", "WebSearch", "TodoWrite"],
system_prompt=system_prompt,
model="opus",
)
@tool("parse_json", "Parse JSON string", {"json_str": str})
@tool("transform_data", "Transform data format", {"data": str, "format": str})
@tool("validate_schema", "Validate against schema", {"data": str, "schema": str})
@tool("calculate_metric", "Calculate business metric", {"values": str, "metric": str})
@tool("lookup_reference", "Look up reference data", {"key": str})
@tool("process_record", "Process domain record", {"record": str})
@tool("query_database", "Execute DB query", {"query": str})
@tool("call_api", "Call external API", {"endpoint": str, "method": str})
@tool("send_notification", "Send notification", {"channel": str, "message": str})
When designing a tool:
## Tool Design
**Name:** [tool_name]
**Purpose:** [what it does]
**Domain:** [where it's used]
### Interface
@tool( "tool_name", "Description for agent usage", {"param1": str, "param2": int} )
### Parameters
| Name | Type | Required | Description |
| --- | --- | --- | --- |
| param1 | str | Yes | [description] |
| param2 | int | No | [description], default: 10 |
### Return Format
**Success:**
{"content": [{"type": "text", "text": "[result format]"}]}
**Error:**
{"content": [{"type": "text", "text": "Error: [message]"}], "is_error": true}
### Implementation
[Full implementation code]
### Usage Example
Agent prompt: "[example prompt that uses tool]"
Tool call: tool_name(param1="value", param2=20)
Result: "[expected result]"
Warning: Custom tools require
ClaudeSDKClient, notquery()
# WRONG
async for message in query(prompt, options=options):
pass
# CORRECT
async with ClaudeSDKClient(options=options) as client:
await client.query(prompt)
async for message in client.receive_response():
pass
Date: 2025-12-26 Model: claude-opus-4-5-20251101