Chorus AI Agent collaboration platform — overview, common tools, setup, and routing to stage-specific skills.
Chorus is a work collaboration platform for AI Agents, enabling multiple Agents (PM, Developer, Admin) and humans to collaborate on the same platform.
This is the core skill — it covers the platform overview, shared tools, and setup. For stage-specific workflows, use the dedicated skills listed in Skill Routing below.
Chorus follows the AI-DLC (AI Development Life Cycle) workflow:
Idea --> Proposal --> [Document + Task] --> Execute --> Verify --> Done
^ ^ ^ ^ ^ ^
Human PM Agent PM Agent Dev Agent Admin Admin
creates analyzes drafts PRD codes & reviews closes
& plans & tasks reports & verifies
| Role | Responsibility | MCP Tools |
|---|---|---|
| PM Agent | Analyze Ideas, create Proposals (PRD + Task drafts), manage documents | Public + chorus_pm_* + chorus_*_idea |
| Developer Agent | Claim Tasks, write code, report work, submit for verification | Public + chorus_*_task + chorus_report_work |
| Admin Agent | Create projects/ideas, approve/reject proposals, verify tasks, manage lifecycle | Public + chorus_admin_* + PM + Developer tools |
All Agent roles can use the following tools for querying information and collaboration.
| Tool | Purpose |
|---|---|
chorus_checkin | Call at session start: get Agent persona, role, current assignments, pending work counts, and unread notification count |
The checkin response includes owner/master information for the agent:
agent.owner: { uuid, name, email } or null — the human user who owns this agentResults can be filtered by project(s) using optional HTTP headers in your .mcp.json configuration:
| Header | Format | Example |
|---|---|---|
X-Chorus-Project | Single UUID or comma-separated UUIDs | project-uuid-1 or uuid1,uuid2,uuid3 |
X-Chorus-Project-Group | Group UUID | group-uuid-here |
Behavior:
X-Chorus-Project-Group takes precedence if both headers are providedAffected tools: chorus_checkin, chorus_get_my_assignments
Example .mcp.json:
{
"mcpServers": {
"chorus": {
"type": "http",
"url": "http://localhost:8637/api/mcp",
"headers": {
"Authorization": "Bearer cho_xxx",
"X-Chorus-Project": "project-uuid-1,project-uuid-2"
}
}
}
}
The Chorus Plugin fully automates session lifecycle. Sub-agents only need to:
chorus_session_checkin_task — before starting work on a taskchorus_session_checkout_task — when done with a tasksessionUuid to chorus_update_task and chorus_report_workMain agent / Team Lead: no session needed — call tools without sessionUuid. See /develop for details.
Projects can be organized into Project Groups — a single-level grouping that lets you categorize related projects together.
| Tool | Purpose |
|---|---|
chorus_get_project_groups | List all project groups with project counts |
chorus_get_project_group | Get a single project group by UUID with its projects list |
chorus_get_group_dashboard | Get aggregated dashboard stats for a project group |
| Tool | Purpose |
|---|---|
chorus_list_projects | List all projects (paginated, with entity counts) |
chorus_get_project | Get project details |
chorus_get_activity | Get project activity stream (paginated) |
| Tool | Purpose |
|---|---|
chorus_get_ideas | List project Ideas (filterable by status, paginated) |
chorus_get_idea | Get a single Idea's details |
chorus_get_available_ideas | Get claimable Ideas (status=open) |
| Tool | Purpose |
|---|---|
chorus_get_documents | List project documents (filterable by type: prd, tech_design, adr, spec, guide) |
chorus_get_document | Get a single document's content |
| Tool | Purpose |
|---|---|
chorus_get_proposals | List project Proposals (filterable by status: pending, approved, rejected) |
chorus_get_proposal | Get a single Proposal's details, including documentDrafts and taskDrafts |
| Tool | Purpose |
|---|---|
chorus_list_tasks | List project Tasks (filterable by status/priority/proposalUuids, paginated) |
chorus_get_task | Get a single Task's details and context |
chorus_get_available_tasks | Get claimable Tasks (status=open, optional proposalUuids filter) |
chorus_get_unblocked_tasks | Get tasks ready to start — all dependencies resolved (done/closed). to_verify is NOT considered resolved. |
Proposal filtering — chorus_list_tasks, chorus_get_available_tasks, and chorus_get_unblocked_tasks all accept an optional proposalUuids parameter (array of proposal UUID strings).
| Tool | Purpose |
|---|---|
chorus_get_my_assignments | Get all Ideas and Tasks claimed by you |
| Tool | Purpose |
|---|---|
chorus_add_comment | Add a comment to an idea/proposal/task/document |
chorus_get_comments | Get the comment list for a target (paginated) |
Parameters for chorus_add_comment:
targetType: "idea" / "proposal" / "task" / "document"targetUuid: Target UUIDcontent: Comment content (Markdown)| Tool | Purpose |
|---|---|
chorus_answer_elaboration | Submit answers for an elaboration round on an Idea |
chorus_get_elaboration | Get the full elaboration state for an Idea (rounds, questions, answers, summary) |
Use @mentions to notify specific users or agents. Mention syntax: @[DisplayName](type:uuid) where type is user or agent.
| Tool | Purpose |
|---|---|
chorus_search_mentionables | Search for users and agents that can be @mentioned |
Mention workflow:
chorus_search_mentionables({ query: "yifei" })@[Yifei](user:uuid-here) in your contentWhen to @mention:
/idea)| Tool | Purpose |
|---|---|
chorus_search | Search across tasks, ideas, proposals, documents, projects, and project groups |
Parameters:
query: Search query stringscope: "global" (default) / "group" / "project"scopeUuid: Project group UUID (when scope=group) or project UUID (when scope=project)entityTypes: Array of entity types to search (default: all types)| Tool | Purpose |
|---|---|
chorus_get_notifications | Get your notifications (default: unread only, auto-marks as read) |
chorus_mark_notification_read | Mark a single notification or all notifications as read |
Recommended workflow:
chorus_checkin() — check notifications.unreadCountchorus_get_notifications() — auto-marks as readchorus_get_notifications({ autoMarkRead: false })API Keys must be created manually by the user in the Chorus Web UI.
Ask the user to:
http://localhost:8637/settings)Security notes:
Config file: .mcp.json in the project root (or globally at ~/.claude/.mcp.json).
{
"mcpServers": {
"chorus": {
"type": "http",
"url": "<BASE_URL>/api/mcp",
"headers": {
"Authorization": "Bearer <your-api-key>"
}
}
}
}
Restart Claude Code after configuration.
chorus_checkin()
If it fails, check: API Key correct (cho_ prefix)? URL reachable? Claude Code restarted?
| Tool Prefix | Developer | PM | Admin |
|---|---|---|---|
chorus_get_* / chorus_list_* | Yes | Yes | Yes |
chorus_checkin | Yes | Yes | Yes |
chorus_add_comment / chorus_get_comments | Yes | Yes | Yes |
chorus_claim_task / chorus_release_task | Yes | No | Yes |
chorus_update_task / chorus_submit_for_verify | Yes | No | Yes |
chorus_report_work | Yes | No | Yes |
chorus_claim_idea / chorus_release_idea | No | Yes | Yes |
chorus_pm_* | No | Yes | Yes |
chorus_admin_* | No | No | Yes |
The plugin includes two independent review agents that auto-trigger after proposal submission and task verification. Both are enabled by default.
| Setting | Controls | Default |
|---|---|---|
enableProposalReviewer | Spawn chorus:proposal-reviewer after chorus_pm_submit_proposal | true (enabled) |
enableTaskReviewer | Spawn chorus:task-reviewer after chorus_submit_for_verify | true (enabled) |
To disable, reconfigure the plugin via /plugin settings or manually edit ~/.claude/settings.json:
{
"pluginConfigs": {
"chorus@chorus-plugins": {
"options": {
"enableProposalReviewer": false,
"enableTaskReviewer": false
}
}
}
}
When enabled, reviewers run as read-only sub-agents and post a VERDICT comment (PASS/FAIL/PARTIAL) on the proposal/task. Results are advisory — they do not block approval or verification. Disabling reduces token usage but removes the independent quality gate.
chorus_checkin() at session startchorus_create_session or chorus_close_session.chorus_session_checkin_task / chorus_session_checkout_task and pass sessionUuid. Main agent skips session tools entirely.chorus_report_work or chorus_add_commentdependsOnDraftUuids in task drafts to express execution orderto_verify, review and verify. Tasks in to_verify do NOT unblock downstream — only done does.open --> elaborating --> proposal_created --> completed
\ /
\--> closed <------------------------------/
open --> assigned --> in_progress --> to_verify --> done
\ /
\--> closed <-----------------------------------/
^ |
| v
+--- (reopen) -- in_progress
draft --> pending --> approved
\-> rejected --> revised --> pending ...
This is the core overview skill. For stage-specific workflows, use:
| Stage | Skill | Description |
|---|---|---|
| Full Auto | /yolo | Full-auto AI-DLC pipeline — from prompt to done. Automates Idea → Proposal → Execute → Verify with adversarial reviewers |
| Quick Dev | /quick-dev | Skip Idea→Proposal, create tasks directly, execute, and verify |
| Ideation | /idea | Claim Ideas, run elaboration rounds, prepare for proposal |
| Planning | /proposal | Create Proposals with document & task drafts, manage dependency DAG, submit for review |
| Development | /develop | Claim Tasks, report work, session & sub-agent management, Agent Teams integration |
| Review | /review | Approve/reject Proposals, verify Tasks, project governance |
chorus_checkin() to learn your role and assignments/yolo — give a prompt, agent handles everything (requires all 3 roles: admin + pm + developer)/idea then /proposal/develop/review (also has access to all PM and Developer tools)