Overview
Overview of the agent tools system
Agent tools are modular components that provide specific functionality to AI agents. They allow agents to interact with blockchain networks, manage wallets, interact with DAOs, and perform various other tasks.
How Agent Tools Work
Each tool:
Has a specific purpose and functionality
Can be enabled or disabled for specific agents
Has clear input and output specifications
Provides error handling and feedback
Tool Architecture
Tools follow a consistent pattern:
Input Schema: Each tool has a defined input schema using Pydantic models
Execution Logic: Tools contain the logic to perform their specific function
Error Handling: Tools provide standardized error responses
Return Values: Tools return structured data that can be parsed by agents
Effective Prompting Patterns
When using agent tools, following consistent prompting patterns helps ensure successful execution. Each prompt should:
Start with a clear action description that matches the tool's purpose
Include all required parameters with appropriate values
Use parameter names that match the tool's expected inputs
Example Prompting Pattern
Useful Debugging Techniques
When working with tools, these prompting patterns can help with debugging:
Get transaction details
Request detailed error information
Get transaction history for an address
Get contract transaction history
Tool Security
Tools follow these security principles:
Tools verify caller permissions where necessary
Critical operations require explicit confirmation
Tools use standardized error handling
Tools emit detailed logs for auditing purposes
For detailed documentation on each tool category, see the individual tool pages.
Related Repositories
The agent tools system is built on two key repositories:
agent-tools-ts
agent-tools-ts contains the TypeScript implementation of the agent tools, powered by Bun and Stacks.js. This repository provides:
Low-level blockchain interactions
Wallet management utilities
Smart contract interactions
TypeScript interfaces and implementations
Command-line tools for testing and development
aibtcdev-backend
aibtcdev-backend is the Python backend service that exposes these tools to LLM agents. This repository includes:
Python wrappers for the TypeScript tools
FastAPI endpoints for agent interactions
LangGraph integration for agent workflows
Background task scheduling
Database abstractions and models
Webhook handling for blockchain events
Last updated