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
Chaining Hugging Face Spaces for Agentic Workflows
How an AI agent built a 3D Paris gallery by chaining two Hugging Face Spaces — and how you can reuse the pattern to compose any Space into multi-step agent pipelines. Complete with the agents.md protocol, curl commands, and a runnable Python agent.
AutoGen Setup Guide
Complete setup and configuration guide for Microsoft's AutoGen — a multi-agent conversation framework. Group chats, code executor sandbox, Swarm handoffs, and human-in-the-loop patterns.
SkillOpt: Training Agent Skill Documents Like Neural Network Weights
Microsoft's SkillOpt treats a Markdown instruction document as a trainable parameter — applying gradient-free optimization to boost GPT-5.5 by +24.8 points. Here's how it works, when to use it, and how to run it yourself.