name: alfred-delegate description: > Delegate tasks to other agents (CMO, Angel, Worca) via their inbox. Use when: "delegate to CMO", "have CMO write about this", "send to Angel for triage", "ask Worca to handle", "delegate this task". allowed-tools: Read, Write, Edit, Glob, Grep
Alfred Delegate
Delegate tasks to other agents via their inbox folders.
Available Agents
| Agent | Location | Purpose |
|---|---|---|
agent-cmo |
/Users/tiwen/Code/agent-cmo/ |
Content + Marketing |
agent-angel |
/Users/tiwen/Code/agent-angel/ |
Investment Manager |
agent-worca |
/Users/tiwen/Code/agent-worca/ |
Worca CEO (Sales) |
Phase 1: Parse Request
Extract from Master's request:
- Target agent — Which agent should handle this?
- Task — What needs to be done?
- Context — Any relevant background, links, files
- Priority — high | medium | low (default: medium)
- Expected output — Where should results go? What format?
If any of these are unclear, ask Master for clarification.
Phase 2: Create Inbox Request
Generate a request document and write it to the target agent's inbox:
{agent-path}/inbox/YYYY-MM-DD-HHmm-{brief-description}.md
Use local time for the timestamp.
Request Document Format
# Request: [Brief title]
From: alfred
Date: YYYY-MM-DD HH:mm
Priority: [high|medium|low]
## Task
[Clear description of what needs to be done]
## Context
[Relevant background, references, links, constraints]
## Expected Output
[Where to write output, what format is expected]
## Notes
[Any additional information that might help]
Phase 3: Track Delegation
Update /Users/tiwen/Code/agent-alfred/context/DELEGATIONS.md:
| Date | Agent | Task | Status | Notes |
|------|-------|------|--------|-------|
| YYYY-MM-DD | agent-cmo | [brief task] | pending | inbox/file.md |
If DELEGATIONS.md doesn't exist, create it with the header.
Phase 4: Confirm
Tell Master:
"Delegated to {agent}: {brief task}. Request written to
{inbox-path}."
Optionally ask:
"Want me to spawn {agent} to process it now?"
If yes, inform Master how to invoke the target agent (e.g., cd /Users/tiwen/Code/agent-cmo && claude "/cmo-process-inbox").
Example
Master: "Have CMO write a thread about the new Claude Opus 4.5 features"
Alfred:
Creates
/Users/tiwen/Code/agent-cmo/inbox/2026-02-03-1530-opus-thread.md:# Request: Write X thread about Claude Opus 4.5 From: alfred Date: 2026-02-03 15:30 Priority: medium ## Task Create an X thread highlighting the key features of Claude Opus 4.5. ## Context - New model released, technical capabilities worth highlighting - Target audience: AI developers, tech enthusiasts - Should tie into our agentic coding narrative ## Expected Output - Thread draft in outputs/ - Ready for human approval before posting ## Notes Check Anthropic's release notes for accurate feature list.Updates
DELEGATIONS.mdConfirms: "Delegated to CMO: X thread about Claude Opus 4.5. Request written to inbox."
Completion Checklist
- Target agent identified
- Task clearly specified
- Request document written to inbox
- DELEGATIONS.md updated
- Master confirmed