- Update lane name, env var, channel references across all docs - Mark delegate tool as removed in tools system docs - Update routing tables and architecture diagrams
28 KiB
11 - Agent Teams
Overview
Agent teams enable collaborative multi-agent orchestration. A team consists of a lead agent and one or more member agents. The lead orchestrates work by creating tasks on a shared task board and delegating them to members. Members execute tasks independently and report results back. Communication happens through a built-in mailbox system.
Teams build on top of the delegation system (see 03-tools-system.md Section 7) by adding structured coordination: task tracking, parallel work distribution, and result aggregation.
1. Team Model
flowchart TD
subgraph Team["Agent Team"]
LEAD["Lead Agent<br/>Orchestrates work, creates tasks,<br/>delegates to members, synthesizes results"]
M1["Member A<br/>Claims and executes tasks"]
M2["Member B<br/>Claims and executes tasks"]
M3["Member C<br/>Claims and executes tasks"]
end
subgraph Shared["Shared Resources"]
TB["Task Board<br/>Create, claim, complete tasks"]
MB["Mailbox<br/>Direct messages, broadcasts"]
end
USER["User"] -->|message| LEAD
LEAD -->|create task + delegate| M1 & M2 & M3
M1 & M2 & M3 -->|results auto-announced| LEAD
LEAD -->|synthesized response| USER
LEAD & M1 & M2 & M3 <--> TB
LEAD & M1 & M2 & M3 <--> MB
Key Design Principles
- Lead-centric: Only the lead receives
TEAM.mdin its system prompt with full orchestration instructions. Members discover context on demand through tools — no wasted tokens on idle agents. - Mandatory task tracking: Every delegation from a lead must be linked to a task on the board. The system enforces this — delegations without a
team_task_idare rejected. - Auto-completion: When a delegation finishes, its linked task is automatically marked as complete. No manual bookkeeping required.
- Parallel batching: When multiple members work simultaneously, results are collected and delivered to the lead in a single combined announcement.
2. Team Lifecycle
flowchart TD
CREATE["Admin creates team<br/>(name, lead, members)"] --> LINK["Auto-create delegation links<br/>Lead → each member (outbound)"]
LINK --> INJECT["TEAM.md auto-injected<br/>into all members' system prompts"]
INJECT --> READY["Team ready"]
READY --> USE["User messages lead agent"]
USE --> LEAD_WORK["Lead orchestrates work<br/>using task board + delegation"]
MANAGE["Admin manages team"] --> ADD["Add member<br/>→ auto-link lead→member"]
MANAGE --> REMOVE["Remove member<br/>→ link remains (manual cleanup)"]
MANAGE --> DELETE["Delete team<br/>→ team_id cleared from links"]
Creation Process
- Resolve lead agent by key or UUID
- Resolve all member agents
- Create team record with
status=active - Add lead as member with
role=lead - Add each member with
role=member - Auto-create outbound agent links from lead to each member (direction: outbound, max_concurrent: 3, marked with
team_id) - Invalidate agent router caches so TEAM.md is injected on next request
When a member is added later, the same auto-linking happens. Links created by team setup are tagged with team_id — this distinguishes them from manually created delegation links.
3. Lead vs Member Roles
The lead and members have fundamentally different responsibilities and tool access.
flowchart LR
subgraph Lead["Lead Agent"]
L1["Receives TEAM.md with<br/>full orchestration instructions"]
L2["Creates tasks on board"]
L3["Delegates tasks to members"]
L4["Receives combined results"]
L5["Synthesizes and replies to user"]
end
subgraph Member["Member Agent"]
M1["Receives delegation with task context"]
M2["Executes task independently"]
M3["Result auto-announced to lead"]
M4["Can send progress updates<br/>via mailbox"]
end
L3 --> M1
M3 --> L4
What the Lead Sees (TEAM.md)
The lead's system prompt includes a TEAM.md section containing:
- Team name and description
- Complete list of teammates with their roles and expertise (from
frontmatter) - Mandatory workflow instructions: always create a task first, then delegate with the task ID
- Orchestration patterns: sequential (A→B), iterative (A→B→A), parallel (A+B→review), mixed
- Communication guidelines: notify user when assigning work, share progress on follow-up rounds
What Members See (TEAM.md)
Members get a simpler version:
- Team name and teammate list
- Instructions to focus on executing delegated work
- How to send progress updates to the lead via mailbox
- Available task board actions (list, get, search — no create/delegate)
4. Task Board
The task board is a shared work tracker accessible to all team members via the team_tasks tool.
flowchart TD
subgraph "Task Lifecycle"
PENDING["Pending<br/>(just created)"] -->|claim or assign| IN_PROGRESS["In Progress<br/>(agent working)"]
PENDING -->|blocked_by set| BLOCKED["Blocked<br/>(waiting on dependencies)"]
BLOCKED -->|all blockers complete| PENDING
IN_PROGRESS -->|review| IN_REVIEW["In Review<br/>(pending approval)"]
IN_REVIEW -->|approve| COMPLETED["Completed<br/>(with result)"]
IN_REVIEW -->|reject| CANCELLED["Cancelled<br/>(auto-unblocks dependents)"]
IN_PROGRESS -->|cancel| CANCELLED
PENDING -->|cancel| CANCELLED
PENDING -->|system failure| FAILED["Failed<br/>(stale/error)"]
FAILED -->|retry| PENDING
end
Actions
| Action | Description | Who Uses It |
|---|---|---|
create |
Create task with subject, description, priority, assignee, blocked_by | Lead/Admin |
claim |
Atomically claim a pending task | Members |
complete |
Mark task done with result summary | Members/Agents |
approve |
Approve completed task (human-in-the-loop) | Admin/Human |
reject |
Reject task with reason, mark as cancelled, inject message to lead | Admin/Human |
cancel |
Cancel task with reason | Lead |
assign |
Admin-assign a pending task to an agent | Admin |
review |
Submit task for review, transitions to in_review status | Members |
comment |
Add comment to task | All |
progress |
Update task progress (percent, step) | Members |
list |
List tasks (filter: active/in_review/completed/all, page) | All |
get |
Get full task detail with comments, events, attachments | All |
search |
Full-text search over subject + description | All |
attach |
Attach workspace file to task | Members |
ask_user |
Set periodic reminder sent to user for decision | Members |
clear_ask_user |
Cancel a previously set ask_user reminder | Members |
retry |
Re-dispatch stale or failed tasks back to pending | Admin |
update |
Update task metadata (priority, description, etc.) | Lead |
Team Versioning
Many task actions require team version >= 2. Teams created with v1 only support basic actions.
V2-Required Actions:
approve— Approve completed taskreject— Reject and cancel taskreview— Submit for reviewcomment— Add commentsprogress— Update progressattach— Attach filesupdate— Update metadataask_user— Set remindersclear_ask_user— Cancel remindersretry— Retry failed tasks
V1 Teams support only: create, claim, complete, cancel, assign, list, get, search
If a v1 team tries a v2 action, error: "action 'X' requires team version 2 — upgrade in team settings"
Atomic Claiming
Two agents grabbing the same task is prevented at the database level. The claim operation uses a conditional update: SET status = 'in_progress', owner = agent WHERE status = 'pending' AND owner IS NULL. One row updated means claimed; zero rows means someone else got it first. No distributed mutex needed.
Task Dependencies & Blocking
Tasks can declare blocked_by — a list of prerequisite task IDs. When a task has blocking dependencies:
- Task enters
blockedstatus (distinct frompending) - Task remains blocked until ALL prerequisites are completed
- When a blocking task completes, all dependent tasks with now-satisfied blockers automatically transition from
blocked→pending - Cancelled tasks (via
cancelorreject) also unblock their dependents
The blocked status is one of 8 possible statuses: pending, in_progress, in_review, completed, failed, cancelled, blocked, stale.
Task Data Model
| Field | Description |
|---|---|
id, team_id |
Unique ID + team ownership |
subject, description |
Task title and details |
status |
pending, in_progress, in_review, completed, failed, cancelled, blocked, stale |
priority |
Integer (higher = more important) |
owner_agent_id |
Agent currently working on task |
created_by_agent_id |
Agent that created the task (if auto-created by agent) |
blocked_by |
List of task IDs this task depends on |
task_type |
"general" or custom type label |
task_number |
Human-readable sequential number (team-local) |
progress_percent, progress_step |
Current progress tracking |
metadata |
Custom JSON for task snapshots, peer_kind, local_key, team_workspace |
user_id, chat_id, channel |
Scope: which user/group triggered this task |
result |
Result summary when completed |
Task Snapshots
Completed tasks automatically store snapshots in metadata for UI board visualization:
{
"snapshot": {
"completed_at": "2026-03-16T12:34:56Z",
"result_preview": "First 100 chars of result...",
"final_status": "completed",
"ai_summary": "Brief AI-generated summary of what was accomplished"
}
}
The board displays these snapshots in a visual timeline, allowing users to review completed work at a glance.
Delegate Agent Restrictions
Guards that previously prevented delegate agents from directly completing, cancelling, or approving/rejecting tasks are currently commented out (reserved for a future reviewer workflow). At this time, these restrictions are not enforced at runtime. A future implementation may re-enable them when a structured reviewer/approval flow is introduced.
Assignee is Mandatory
When creating a task via team_tasks(action="create"), the assignee field is required. This specifies which team member should handle the task. If omitted, error: "assignee is required — specify which team member should handle this task"
Concurrent Creation Guard
Agents must list existing tasks before creating new ones. This prevents duplicate task creation in concurrent sessions. When an agent calls create without first checking the board:
- Error:
"You must check existing tasks first. Call team_tasks(action='list') to review the current task board before creating new tasks — this prevents duplicates in concurrent sessions."
Auto-Claiming Behavior
When an agent calls complete on a pending task, the task is automatically claimed first. This saves an extra tool call:
- Agent calls
completeon task inpendingstatus - System atomically claims the task (pending → in_progress, assign to agent)
- System marks as
completed - Returns success in one action
This is safe because the claim is atomic — only one agent can succeed.
User & Channel Scoping
- System/teammate channels: See all tasks for the team
- Regular user channels: Filter to tasks they triggered (filtered by user ID)
- Scope discovery:
teams.scopeslists all unique channel+chatID scopes across tasks - Known users:
teams.known_userslists distinct user IDs from team member sessions (UI user select) - Pagination: 30 tasks per page for lists
- Result truncation: 8,000 characters for
get, 500 characters for search snippets
Comments, Events & Attachments
Task Comments
Humans and agents can add comments to provide feedback or clarification:
handleTaskComment(human adds comment via dashboard)- Comments stored with author ID (agent_id or user_id), creation timestamp
- Emits
EventTeamTaskCommentedevent - Visible in task detail page
Task Events
Audit trail of all task state changes:
- Event types:
created,assigned,completed,approved,rejected,commented,failed,cancelled,stale,recovered - Each event records actor type (agent or human), actor ID, timestamp, and optional metadata
- Used for compliance audits and UI activity timeline
Task Attachments
Workspace files can be attached to tasks:
- Attach action links workspace file (by file ID) to task
- Auto-links files created during task execution
- Metadata captures which agent/user attached the file
5. Team Mailbox
The mailbox enables peer-to-peer communication between team members via the team_message tool.
| Action | Description |
|---|---|
send |
Send a direct message to a specific teammate by agent key |
broadcast |
Send a message to all teammates (except self) |
read |
Read unread messages, automatically marks them as read |
Message Format
When a team message is sent, it flows through the message bus with a "teammate:" prefix:
[Team message from {sender_key}]: {message text}
The receiving agent processes this as an inbound message, routed through the team scheduler lane. The response is published back to the originating channel so the user (and lead) can see it.
Use Cases
- Lead → Member: "Please claim a task from the board"
- Member → Lead: "Task partially complete, need clarification on requirements"
- Member → Member: Cross-coordination between teammates working on related tasks
- Broadcast: Lead sharing context updates with all members simultaneously
6. Team Workspace
Each team has a shared workspace for storing files produced during task execution. Workspace scoping is configurable per team.
Workspace Modes
| Mode | Directory Structure | Use Case |
|---|---|---|
| Isolated (default) | {dataDir}/teams/{teamID}/{chatID}/ |
Per-conversation file isolation; each user/chat has own folder |
| Shared | {dataDir}/teams/{teamID}/ |
All team members access same folder; no user/chat isolation |
Configure via team settings workspace_scope: "shared" (default: "isolated").
Workspace Access
Team members have file tools access to their team workspace:
- Read: List files, read file content
- Write: Create and update files (auto-linked to task)
- Delete: Remove files from workspace
When a member writes a file during task execution, it's automatically:
- Stored in team workspace with metadata
- Linked to the active task (task_id)
- Visible to other team members on task detail page
WorkspaceDir Context
During task dispatch, the team workspace directory is injected into tool context:
WithToolTeamWorkspace(ctx, "/path/to/teams/{teamID}/")
WithToolTeamID(ctx, "{teamID}")
WithTeamTaskID(ctx, "{taskID}")
WithWorkspaceChannel(ctx, task.Channel)
WithWorkspaceChatID(ctx, task.ChatID)
File tools use this context to resolve workspace paths and auto-link files to tasks.
Quota & Limits
| Limit | Value |
|---|---|
| Max file size | 10 MB |
| Max files per scope | 100 |
| Directory creation | Automatic (0750 permissions) |
7. Delegation Integration
Teams integrate deeply with the delegation system. The mandatory workflow ensures every piece of delegated work is tracked.
flowchart TD
LEAD["Lead receives user request"] --> CREATE["1. Create task on board<br/>team_tasks action=create<br/>→ returns task_id"]
CREATE --> SPAWN["2. Delegate to member<br/>spawn agent=member,<br/>team_task_id=task_id"]
SPAWN --> INJECT["Inject team workspace context<br/>WithToolTeamID<br/>WithToolTeamWorkspace<br/>WithTeamTaskID"]
INJECT --> LANE["Scheduled through<br/>team lane"]
LANE --> MEMBER["Member agent executes<br/>in isolated session<br/>with workspace access"]
MEMBER --> COMPLETE["3. Task auto-completed<br/>with delegation result"]
COMPLETE --> DISPATCH["Files auto-linked to task<br/>Comments/events recorded"]
DISPATCH --> CLEANUP["Session cleaned up"]
subgraph "Parallel Delegation"
SPAWN2["spawn member_A, task_id=1"] --> RUN_A["Member A works<br/>with workspace"]
SPAWN3["spawn member_B, task_id=2"] --> RUN_B["Member B works<br/>with workspace"]
RUN_A --> COLLECT["Results collected"]
RUN_B --> COLLECT
COLLECT --> ANNOUNCE["4. Single combined<br/>announcement to lead"]
end
Task ID Enforcement
When a team member delegates work, the system requires a valid team_task_id:
- Missing task ID: Delegation is rejected with an error explaining the requirement. The error includes a list of pending tasks to help the LLM self-correct.
- Invalid task ID: If the LLM hallucinates a UUID that doesn't exist, the error includes pending tasks as a hint.
- Cross-team task ID: If the task belongs to a different team, the delegation is rejected.
- Auto-claim: When delegation starts, the linked task is automatically claimed (status: pending → in_progress).
Auto-Completion
When a delegation finishes (success or failure):
- The linked task is marked as
completedwith the delegation result - Files created during execution are auto-linked to the task
- Workspace events are recorded (modified/created file events)
- A team message audit record is created (from member → lead)
- The delegation session is cleaned up (deleted)
- Delegation history is saved with team context (team_id, team_task_id, trace_id)
Parallel Delegation Batching
When the lead delegates to multiple members simultaneously:
- Each delegation runs independently in the team lane
- Intermediate completions accumulate their results (artifacts)
- When the last sibling delegation finishes, all accumulated results are collected
- A single combined announcement is delivered to the lead with all results
- Each individual task is still auto-completed independently — the batching only affects the announcement
Announcement Format
The combined announcement includes:
- Results from each member agent, separated clearly
- Deliverables and media files (auto-delivered)
- Elapsed time statistics
- Guidance for the lead: present results to user, delegate follow-ups, or ask for revisions
If all delegations failed, the lead receives a friendly error notification with guidance to retry or handle it directly. The announcement also asks the lead to notify the user of the hiccup before retrying.
8. TEAM.md — System-Injected Context
TEAM.md is a virtual file generated at agent resolution time. It is not stored on disk or in the database — it's rendered dynamically based on the current team configuration and injected into the system prompt wrapped in <system_context> tags.
Generation Trigger
During agent resolution, if the agent belongs to a team:
- Load team data
- Load team members
- Generate TEAM.md with role-appropriate content
- Inject as a context file
Content Differences
| Section | Lead | Member |
|---|---|---|
| Team name + description | Yes | Yes |
| Teammate list with roles | Yes | Yes |
| Mandatory workflow (create→delegate) | Yes | No |
| Orchestration patterns | Yes | No |
| Communication guidelines | Yes | No |
| Task board actions (full) | Yes | Limited |
| "Just do the work" instructions | No | Yes |
| Progress update guidance | No | Yes |
Orchestration Patterns (Lead Only)
The lead's TEAM.md describes three orchestration patterns:
- Sequential: Member A finishes → lead reviews → delegates to Member B with A's output
- Iterative: Member A drafts → Member B reviews → back to A with feedback
- Mixed: Members A+B work in parallel → lead reviews combined output → delegates to C
Negative Context Injection
If an agent is NOT part of any team AND has no delegation targets, the system injects negative context:
- "You are NOT part of any team. Do not use team_tasks or team_message tools."
- "You have NO delegation targets. Do not use spawn with agent parameter."
This prevents wasted LLM iterations probing unavailable capabilities.
9. Message Routing
Team messages flow through the message bus with specific routing rules.
flowchart TD
subgraph "Inbound (Team Member Execution)"
LEAD_SPAWN["Lead: spawn agent=member,<br/>team_task_id=X"] --> BUS_IN["Message Bus<br/>SenderID: 'delegate:{id}' (legacy format)"]
BUS_IN --> CONSUMER["Consumer routes to<br/>team lane"]
CONSUMER --> MEMBER["Member agent runs<br/>in isolated session"]
end
subgraph "Outbound (Result Announcement)"
MEMBER --> RESULT["Delegation completes"]
RESULT --> CHECK{"Last sibling?"}
CHECK -->|"No"| ACCUMULATE["Accumulate artifacts"]
CHECK -->|"Yes"| COLLECT["Collect all artifacts"]
COLLECT --> ANNOUNCE["Publish to parent session<br/>SenderID: 'delegate:{id}' (legacy format)"]
ANNOUNCE --> LEAD_SESSION["Lead processes in<br/>original user session"]
end
subgraph "Teammate Messages"
SEND["team_message send/broadcast"] --> BUS_TM["Message Bus<br/>SenderID: 'teammate:{key}'"]
BUS_TM --> ROUTE_TM["Consumer routes to<br/>target agent session"]
ROUTE_TM --> TARGET["Target agent processes"]
end
Routing Prefixes
| Prefix | Source | Destination | Scheduler Lane |
|---|---|---|---|
delegate: |
Delegation completion (legacy session key format) | Parent agent's original session | team |
teammate: |
Team mailbox message | Target agent's session | team |
Session Context Preservation
When a delegation or team message completes, the result is routed back to the original user session (not a new session). This is achieved through metadata propagation:
origin_channel: The channel where the user sent the message (e.g., telegram)origin_peer_kind: DM or group contextorigin_local_key: Thread/topic context for correct routing (e.g., forum topic ID)
This ensures results land in the correct conversation thread, even in Telegram forum topics or Feishu thread discussions.
10. Access Control
Teams support fine-grained access control through team settings.
Team-Level Settings
| Setting | Type | Description |
|---|---|---|
allow_user_ids |
String list | Only these users can trigger team work |
deny_user_ids |
String list | These users are blocked (deny takes priority) |
allow_channels |
String list | Only messages from these channels trigger team work |
deny_channels |
String list | Block messages from these channels |
workspace_scope |
String | "isolated" (default) or "shared" — file scope mode |
workspace_quota_mb |
Integer | Max workspace size in MB (optional) |
progress_notifications |
Boolean | Emit progress_notification events |
followup_interval_minutes |
Integer | Ask_user reminder interval |
followup_max_reminders |
Integer | Max ask_user reminders before escalation |
escalation_mode |
String | How to escalate stale tasks: "notify_lead", "fail_task" |
escalation_actions |
String list | Actions to take on escalation |
System channels (teammate, system) always pass access checks. Empty settings mean open access.
Link-Level Settings
Each delegation link (lead→member) has its own settings:
| Setting | Description |
|---|---|
UserAllow |
Only these users can trigger this specific delegation |
UserDeny |
Block these users from this delegation (deny takes priority) |
Concurrency Limits
| Layer | Scope | Default |
|---|---|---|
| Per-link | Simultaneous delegations from lead to a specific member | 3 |
| Per-agent | Total concurrent delegations targeting any single member | 5 |
When limits are hit, the error message is written for LLM reasoning: "Agent at capacity (5/5). Try a different agent or handle it yourself."
11. Delegation Context
SenderID Clearing
In sync delegations, the delegate agent's context has the senderID cleared. This is critical because delegations are system-initiated — the delegate should not inherit the caller's group writer permissions, which would incorrectly deny file writes. Each delegate agent has its own writer list.
Trace Linking
Delegation traces are linked to the parent trace through parent_trace_id. This allows the tracing system to show the full delegation chain: user request → lead processing → member delegation → member execution.
Workspace & Task Context
Delegation context includes team workspace and task information so member agents can:
- Access the team workspace directory (if configured)
- Auto-link files created to the active task
- Record task progress and comments
- Route results back to the correct user/chat
Context keys injected:
tool_team_id: Team UUID for team_tasks/team_message toolstool_team_workspace: Shared workspace directory path (or empty for isolated mode)tool_team_task_id: Active task UUID for workspace file linkingtool_workspace_channel: Task's origin channel (for routing)tool_workspace_chat_id: Task's origin chat ID (for routing)
12. Events
Teams emit events for real-time UI updates and observability.
| Event | When |
|---|---|
team_task.created |
New task added to board |
team_task.assigned |
Task assigned to agent (admin or auto-assign) |
team_task.completed |
Task marked as complete |
team_task.approved |
Task approved by human (human-in-the-loop) |
team_task.rejected |
Task rejected, returned to in_progress |
team_task.commented |
Comment added by human |
team_task.deleted |
Task hard-deleted (terminal status only) |
team_updated |
Team settings updated |
team_deleted |
Team deleted |
delegation.started |
Async delegation begins |
delegation.completed |
Delegation finishes successfully |
delegation.failed |
Delegation fails |
delegation.cancelled |
Delegation cancelled |
team_message.sent |
Mailbox message delivered |
File Reference
| File | Purpose |
|---|---|
internal/gateway/methods/teams_crud.go |
Team CRUD RPC: Get, Delete, Update settings, TaskList, KnownUsers, Scopes, Events |
internal/gateway/methods/teams_tasks.go |
Task board RPC: Get, Create, Assign, Comment, Comments, Events, Approve, Reject, Delete, TaskDispatch |
internal/gateway/methods/teams_workspace.go |
Workspace RPC: List, Read, Delete (with shared/isolated mode logic) |
internal/tools/team_tool_manager.go |
Shared backend for team tools, team cache (5-min TTL), team resolution |
internal/tools/team_tasks_tool.go |
Task board tool: list, get, create, claim, complete, cancel, search, approve, reject, comment, progress, attach, ask_user, update |
internal/tools/team_message_tool.go |
Mailbox tool: send, broadcast, read, message routing via bus |
internal/tools/team_access_policy.go |
Access control: checkTeamAccess validates user/channel against settings |
internal/tools/subagent_spawn_tool.go |
Subagent spawning: sync/async delegation, team task enforcement |
internal/tools/subagent_exec.go |
Delegation execution, artifact accumulation, session cleanup |
internal/tools/subagent_config.go |
Delegation configuration and concurrency control |
internal/tools/subagent_tracing.go |
Delegation tracing and event broadcasting |
internal/tools/workspace_dir.go |
WorkspaceDir helper, shared/isolated mode detection, file limits |
internal/tools/context_keys.go |
Tool context injection: team_id, team_workspace, team_task_id, workspace channel/chatid |
internal/agent/resolver.go |
TEAM.md generation (buildTeamMD), injection during agent resolution |
internal/agent/systemprompt_sections.go |
TEAM.md rendering in system prompt as <system_context> |
internal/store/team_store.go |
TeamStore interface (~40 methods), data types: TeamData, TeamTaskData, TeamMessageData, TeamTaskCommentData, etc. |
internal/store/pg/teams.go |
PostgreSQL implementation: teams CRUD, members, tasks, messages, events, attachments |
cmd/gateway_managed.go |
Team tool wiring, cache invalidation subscription |
cmd/gateway_consumer.go |
Message routing for teammate/delegate (legacy) prefixes, task dispatch to agents |
Cross-References
| Document | Relevant Content |
|---|---|
| 03-tools-system.md | Delegation system, agent links |
| 06-store-data-model.md | Team tables schema, delegation_history |
| 08-scheduling-cron.md | Delegate scheduler lane (concurrency 100), cron |
| 09-security.md | Delegation security |