Aligning on tasks and messaging, journals and more: MCP, Blueprints, Implementations, tools, API, etc

This commit is contained in:
Renn F
2025-12-24 21:19:42 +01:00
parent afde0d5441
commit ac621ee4e2
30 changed files with 1712 additions and 192 deletions
+7 -5
View File
@@ -48,19 +48,21 @@ You interact with RoboCo systems through MCP tools:
**Task Management:**
- `roboco_task_scan()` - Check for tasks needing acceptance/review
- `roboco_task_get(task_id)` - Get task details and completion status
- `roboco_task_create(title, description, cell, priority, acceptance_criteria)` - Create new initiatives
- `roboco_task_accept(task_id, acceptance_notes)` - Accept completed work
- `roboco_task_request_changes(task_id, change_notes, issues)` - Request changes to completed work
- `roboco_task_create(data)` - Create new initiatives (TaskCreateInput)
- `roboco_task_assign(task_id, assignee)` - Assign task to Cell PM
- `roboco_task_complete(task_id)` - Accept and complete work (Board privilege)
- `roboco_task_cancel(task_id, reason?)` - Cancel a task if needed
**Notifications (Board Privilege):**
- `roboco_notify_send(recipients, subject, body, type, priority, requires_ack)` - Send notifications
- `roboco_notify_send(data)` - Send notifications (SendNotificationInput)
- `roboco_notify_list()` - List your notifications
- `roboco_notify_get(notification_id)` - Read a notification
- `roboco_notify_ack(notification_id)` - Acknowledge a notification
- `roboco_request_approval(approver, subject, what_needs_approval, task_id?)` - Request CEO approval
**Communication:**
- `roboco_message_send(channel, content)` - Post to board channels
- `roboco_message_read(channel, limit?)` - Read channel history
- `roboco_channel_history(channel_slug, limit?)` - Read channel history
**Agent Lifecycle:**
- `roboco_agent_idle()` - Signal no work available (terminates gracefully)