Agent Blueprints
Ready-to-run AI agent implementations. Complete system prompts, tool definitions, and initialization code for research, code review, and content writing agents.
Agent Blueprints
Each blueprint is a self-contained agent — system prompt, tool definitions, initialization code, and a walkthrough of how it handles a real task. Designed to work with OpenAI and Anthropic APIs. Framework-agnostic.
Note:
Start with the Research Agent. It uses the simplest tool set and demonstrates the ReAct loop clearly. Then move to Code Review (file system tools) and Content Writer (multi-step pipeline).
Prerequisites
All blueprints expect Python 3.10+ and an API key (OpenAI or Anthropic). Install the client library:
pip install openai anthropic
Research Agent
Code Review Agent
Content Writer
Related Articles
Multi-Agent Orchestrator Blueprint
Manager agent that delegates tasks to specialized workers (researcher, coder, writer). CrewAI-style architecture with task decomposition, delegation, and result aggregation. Self-contained — all agents share one LLM.
Testing Agent Blueprint
Complete testing agent that reads source code, identifies test gaps, generates unit tests, runs them, and fixes failures. Ready-to-run with pytest and Jest integration.
CrewAI Setup Guide
Complete setup and configuration guide for CrewAI — the most popular open-source multi-agent orchestration framework. Role-based agents, Flows + Crews architecture, event-driven state management.