The RAG knowledge base (indexed and queried by agents at runtime) described entire fictional MCP tool surfaces — roboco_task_*, roboco_journal_*, roboco_message_send, roboco_notify_send, roboco_agent_*, roboco_session_*, roboco_workspace_*, roboco_project_* — that don't exist, so agents searching the KB were handed invented tool names. Rewrite every affected doc (tools, roles, workflows, troubleshooting, and the stale architecture snippets) to the real surface: the gateway intent verbs (give_me_work, i_will_work_on, open_pr, i_am_done, claim_review, pass, fail, claim_doc_task, i_documented, triage, delegate, i_will_plan, unblock, complete, escalate_up, escalate_to_ceo, ...) and content tools (commit, note(scope=...), say, dm, evidence, notify*, open_session, channels). Also reconcile the access-control docs to code: CEO can cancel (Board/Auditor cannot); the management-channel membership and the Auditor's silent-but-present status now match communications.py.
3.9 KiB
Common Issues
Permission Denied
Error: "Not authorized for this action"
Cause: Your role doesn't have permission
Check Permissions:
| Action | Allowed Roles |
|---|---|
| Create / delegate task | PM only (Cell PM, Main PM) |
| Cancel task | PM, CEO |
| Pass/fail QA | QA only |
| Complete docs | Documenter only |
| Complete task | PM only |
Send notification (notify) |
PM, Board |
Solution: Request appropriate role to perform action
Task Stuck in Status
Problem: Task won't transition
Causes:
- Missing required fields
- Waiting on parallel action
- Invalid transition attempted
Check:
- Branch exists?
- For
awaiting_pm_review: bothdocs_completeANDpr_created? - Is transition valid from current status?
Notification Not Received
Problem: Expected notification didn't arrive
Causes:
- Sender doesn't have notification permission
- Notification filtering
- Already acknowledged
Solutions:
- Check
notify_list()for all notifications - Verify sender has PM/Board role
- Check if already acknowledged via
notify_get(notification_id)
Escalation Not Routing
Problem: Escalation went to wrong person
Cause: escalate_up auto-routes to your escalation target
Chain:
Cell members → Cell PM → Main PM → Product Owner → CEO
Cannot skip levels or choose target. (Only Main PM / Board call
escalate_to_ceo; cell members and Cell PMs use escalate_up.)
Tests Failing Before Submit
Problem: Tests fail, can't submit to QA
Checklist:
# Backend
uv run pytest # Tests
uv run ruff check . # Linting
uv run mypy roboco/ # Type check
# Frontend
pnpm test
pnpm lint
pnpm typecheck
Fix all issues before submitting.
Lost Context After Pause
Problem: Resuming task, forgot context
Solutions:
- Read
quick_contextfield on task - Read your journal for this task
- Get proactive context:
roboco_get_proactive_context(task_id) - Read channel history for discussions
Documentation Path Confusion
Problem: Unsure where to write documentation
Solution: Use roboco_docs_write() - system handles paths automatically
roboco_docs_write({
"task_id": "your-task-uuid",
"filename": "feature.md",
"doc_type": "api", # api, qa, guide, readme, changelog, architecture, design
"title": "Feature Documentation",
"content": "..."
})
- Team folder: Determined from your agent ID
- Subfolder: Determined by doc_type
- No path decisions needed
Documentation Already Exists
Problem: Want to update existing doc but created duplicate
Cause: Content was too different from existing doc (RAG similarity < 0.75)
Solution:
- Ensure content covers the same topic
- Or delete duplicate:
roboco_docs_delete(path) - Check existing:
roboco_docs_list(task_id)orroboco_kb_search("topic")
Note: roboco_docs_write() auto-deduplicates via RAG by content similarity. If content is semantically similar (~75%+), it updates instead of creating new.
A2A Message Not Delivered
Problem: Sent a dm but no response
Check:
- Is the recipient in your own cell? Cross-cell
dmis denied by policy — route through your Cell PM viaescalate_up(task_id, reason). - Use the right slug — call
channels()to discover valid recipients instead of guessing. - Did you include
task_id? It anchors the message to the work.
Solutions:
- Same-cell peer:
dm(recipient="be-qa", text="...", task_id="...") - Anything cross-cell or needing PM action:
escalate_up(task_id, reason) - Broadcast to the cell instead of one peer:
say(channel="backend-cell", text="...")
Cross-Cell Message Denied
Error: A dm to an agent outside your cell is rejected by policy
Cause: Direct A2A is same-cell only — there is no cross-cell dm
Solution: Escalate up the chain. Use escalate_up(task_id, reason)
so your Cell PM can coordinate with the other cell's PM.