Channels

16 agents · Dispatch real work to specialized AI workers via pi

8 coding4 content4 ops
Coding Agents
Operations
Research & Content
System

How Dispatch Works

Each agent is a pi subagent defined in .pi/agents/. They have full file access to their target repo, read-only DB access for investigation, and write results to the vault. Agents work autonomously — you review output in vault.

# Dispatch a coding task to ClickDNA agent
subagent({ agent: "eigen-clickdna", task: "Fix SMSA surcharge passthrough" })

# Research + write report
subagent({ agent: "eigen-research", task: "Research GCC freight forwarding competitors" })

# Chain: research → write proposal
subagent({ chain: [
  { agent: "eigen-research", task: "Research Emirates SkyCargo capabilities" },
  { agent: "eigen-writer", task: "Write partnership proposal based on: {previous}" }
]})

# Parallel: morning routine
subagent({ tasks: [
  { agent: "eigen-morning", task: "Generate morning brief" },
  { agent: "eigen-triage", task: "Process staging queue" },
  { agent: "eigen-consolidate", task: "Check relationship health" },
]})