Building Effective Dapr Agents
Description
Building effective agents patterns implemented with Dapr Agents
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Building Effective Dapr Agents
These examples showcase how to implement Anthropic's research paper [Building Effective Agents](https://www.anthropic.com/research/building-effective-agents) using the [Dapr Agents framework](https://dapr.github.io/dapr-agents/). For more details, see this complementary [blog post](https://www.diagrid.io/blog/building-effective-dapr-agents).
Why Dapr for Agents?
Dapr brings unique advantages to agent implementation:
- Workflow Orchestration: Durable, reliable execution of complex agent tasks
- Pub/Sub Messaging: Event-driven communication between agent components
- State Management: Built-in persistence with pluggable state stores
- Platform Agnostic: Runs locally or on any cloud platform
- LLM Abstraction: Enables reliable, observable interactions with LLMs and allows swapping LLM providers without code changes
Prerequisites
- Python 3.10+
- Docker
- Dapr CLI
- OpenAI API key
Setup
# Create a virtual environment
python3.10 -m venv .venv
# Activate the virtual environment
# On Windows:
.venv\Scripts\activate
# On macOS/Linux:
source .venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Set up your API key
echo "OPENAI_API_KEY=your_api_key_here" > .env
Agent Patterns Overview
This repository includes implementations of the following patterns:
- **Augmented LLM**: The basic building block enhanced with memory and tools
- **Stateful LLM**: Adding persistence and reliability to LLM agents
- **Prompt Chaining**: Breaking complex tasks into sequential steps
- **Routing**: Directing inputs to specialized handlers
- **Parallelization**: Processing multiple aspects of a task simultaneously
- **Orchestrator-Workers**: Dynamically p
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11