agent-architecture

Installation
SKILL.md

Agent Architecture

See references/multi-agent-patterns.md for LangGraph orchestrator implementation details. See references/memory-orchestration.md for episodic memory, context management, and state persistence.

Quick Start

Two steps. Step 1 is under 5 minutes. By the end of Step 2 you have a tool-using agent with mandatory guardrails. Install: npm install @anthropic-ai/sdk (TypeScript) or pip install anthropic (Python).

Step 1: Running Agent, No Tools

No loop, no guardrails needed — one call, one response.

# Python
import anthropic
client = anthropic.Anthropic()  # reads ANTHROPIC_API_KEY from env
response = client.messages.create(
    model="claude-sonnet-4-6",
Related skills
Installs
1
GitHub Stars
35
First Seen
Mar 30, 2026