| name | create-adk-agent |
| description | Generate a production-ready AI agent using Google ADK with Claude integration |
| model | sonnet |
Create ADK Agent
I'll help you generate a production-ready AI agent using Google's Agent Development Kit (ADK) with Claude integration.
Information Needed
Please provide the following details:
-
Agent Name: What should we call your agent? (e.g., "linkedin-intelligence-agent")
-
Agent Purpose: What will this agent do? (e.g., "Research and qualify sales leads from LinkedIn")
-
Pattern Type:
react - Single agent with reasoning + acting loop
multi-agent - Team of specialized agents
workflow - Deterministic multi-step process
-
Tools Needed: Which tools should the agent use?
- LinkedIn scraper
- Apollo enrichment
- Clearbit lookup
- Email finder
- Web search
- Custom tools
-
LLM Model: Which Claude model?
claude-3-5-sonnet-20241022 (recommended for most tasks)
claude-3-haiku-20240307 (fast and cheap)
claude-3-5-opus-20241022 (most capable)
Generated Output
Based on your requirements, I will create:
-
Main Agent Implementation (agent.py)
- Complete agent class with Claude integration
- Tool initialization and management
- Error handling and retry logic
- Observability (logging, metrics)
-
Tool Implementations (tools/)
- Custom tool classes
- Input/output schemas
- Rate limiting and caching
-
Configuration (config.yaml)
- Agent settings
- API keys and credentials
- Behavior parameters
-
Tests (tests/)
- Unit tests for agent logic
- Integration tests for tools
- End-to-end workflow tests
-
Deployment (Dockerfile, terraform/)
- Container configuration
- Cloud Run deployment
- Kubernetes manifests
-
Documentation (README.md)
- Setup instructions
- Usage examples
- API reference
Example Usage
agent = YourAgent()
result = await agent.run({
"input": "your-data",
"goal": "your-objective"
})
Next Steps
After generation:
- Install dependencies:
pip install -r requirements.txt
- Set environment variables in
.env
- Run tests:
pytest tests/
- Deploy:
docker build && gcloud run deploy
Let me know your requirements and I'll generate the complete agent package!