Agent Blueprints

Ready-to-run AI agent implementations. Complete system prompts, tool definitions, and initialization code for research, code review, and content writing agents.

June 9, 2026
agent-blueprintsresearch-agentcode-reviewcontent-writertool-use

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

Web search + summarize + cite sources + fact-check loop. Tools: web_search, extract_content, fact_check.

Code Review Agent

Reads file tree, runs linter, checks patterns, suggests refactors. Tools: read_file, run_linter, list_directory, git_diff.

Content Writer

Outline → research → draft → edit → final. Tools: web_search, grammar_check, tone_adjust, seo_analyze.