Files
clawdbot/extensions/open-prose/skills/prose/examples/09-research-with-agents.prose
2026-01-23 00:49:40 +00:00

26 lines
890 B
Plaintext

# Research Pipeline with Specialized Agents
# This example demonstrates defining agents with different models
# and using them in sessions with property overrides.
# Define specialized agents
agent researcher:
model: sonnet
prompt: "You are a research assistant skilled at finding and synthesizing information"
agent writer:
model: opus
prompt: "You are a technical writer who creates clear, concise documentation"
# Step 1: Initial research with the researcher agent
session: researcher
prompt: "Research recent developments in renewable energy storage technologies"
# Step 2: Deep dive with a more powerful model
session: researcher
model: opus
prompt: "Analyze the top 3 most promising battery technologies and their potential impact"
# Step 3: Write up the findings
session: writer
prompt: "Create a summary report of the research findings suitable for executives"