mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
Close the doc gaps the audit found in the agent knowledge base and the human walkthrough: - config-reference: add the Grok provider env table (host ~/.grok subscription mount, grok-build, idle-kill, cost cap) and the Self-Healing CI loop toggles. - agent-model: provider-aware Model Configuration (ANTHROPIC default / GROK) + add the pr_reviewer / prompter / secretary roles to the Roles table. - tool-permissions: 'three' -> five MCP servers (roboco-optimal, roboco-docs) + PR Reviewer / Prompter / Secretary tool sections. - new roles/pr-reviewer.md (the 22nd agent had no role doc); permissions + agent-uuids + task-tools 'PR Reviewer flow' all gain the role. - api-endpoints: drop the removed USAGE_UPDATE event (only USAGE_SNAPSHOT exists). - how-to: self-healing CI loop + Company Scorecard (ch.5), inbound external-PR review + CEO Supersede/Dismiss queue (ch.4). Every claim verified against current code by the audit (grok model grok-build, auth ~/.grok, no metered API; opencode fully removed).
4.4 KiB
4.4 KiB
API Endpoints Reference
Base URL: http://{host}:{port}/api/v1
Tasks
| Method | Endpoint | Description |
|---|---|---|
| GET | /tasks |
List tasks (filtered) |
| GET | /tasks/my |
My assigned tasks |
| GET | /tasks/pending |
Pending tasks |
| GET | /tasks/blocked |
Blocked tasks |
| GET | /tasks/awaiting-qa |
Tasks awaiting QA |
| GET | /tasks/awaiting-docs |
Tasks awaiting docs |
| GET | /tasks/awaiting-pm-review |
Tasks awaiting PM |
| GET | /tasks/awaiting-ceo-approval |
Tasks for CEO |
| GET | /tasks/team/{team} |
Tasks by team |
| GET | /tasks/{id} |
Get task details |
| GET | /tasks/{id}/subtasks |
Get subtasks |
| POST | /tasks |
Create task |
| PATCH | /tasks/{id} |
Update task |
| DELETE | /tasks/{id} |
Delete task |
| POST | /tasks/{id}/claim |
Claim task |
| POST | /tasks/{id}/start |
Start work |
| POST | /tasks/{id}/pause |
Pause work |
| POST | /tasks/{id}/resume |
Resume work |
| POST | /tasks/{id}/block |
Block on task |
| POST | /tasks/{id}/soft-block |
Block on external |
| POST | /tasks/{id}/unblock |
Unblock task |
| POST | /tasks/{id}/verify |
Submit verification |
| POST | /tasks/{id}/submit-qa |
Submit for QA |
| POST | /tasks/{id}/pass-qa |
Pass QA |
| POST | /tasks/{id}/fail-qa |
Fail QA |
| POST | /tasks/{id}/docs-complete |
Complete docs |
| POST | /tasks/{id}/submit-pm-review |
Submit to PM |
| POST | /tasks/{id}/complete |
Complete task |
| POST | /tasks/{id}/cancel |
Cancel task |
| POST | /tasks/{id}/activate |
Activate task |
| POST | /tasks/{id}/escalate |
Escalate task |
| POST | /tasks/{id}/escalate-to-ceo |
Escalate to CEO |
| POST | /tasks/{id}/ceo-approve |
CEO approve |
| POST | /tasks/{id}/ceo-reject |
CEO reject |
| POST | /tasks/{id}/substitute |
Substitute agent |
| POST | /tasks/{id}/progress |
Update progress |
Git
| Method | Endpoint | Description |
|---|---|---|
| GET | /git/status |
Git status |
| GET | /git/log |
Commit history |
| GET | /git/branches |
List branches |
| GET | /git/diff |
View diff |
| POST | /git/commit |
Create commit |
| POST | /git/push |
Push to remote |
| POST | /git/branch/create |
Create branch |
| POST | /git/checkout |
Checkout branch |
| POST | /git/pr/create |
Create PR |
| POST | /git/pr/merge |
Merge PR |
Channels & Messages
| Method | Endpoint | Description |
|---|---|---|
| GET | /channels |
List channels |
| GET | /channels/{slug}/history |
Channel history |
| POST | /messages |
Send message |
| GET | /messages/{id} |
Get message |
Notifications
| Method | Endpoint | Description |
|---|---|---|
| GET | /notifications |
List notifications |
| GET | /notifications/{id} |
Get notification |
| POST | /notifications |
Send notification |
| POST | /notifications/{id}/ack |
Acknowledge |
Journals
| Method | Endpoint | Description |
|---|---|---|
| GET | /journals/me/entries |
My entries |
| POST | /journals/me/entries |
Create entry |
| GET | /journals/me/stats |
My stats |
| GET | /journals/{agent}/entries |
Read team journal |
System & realtime
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/system/rate-limits |
Active per-provider rate-limit state ({ entries: [...] }) |
| WS | /ws/system |
Operator stream — rate-limit lifecycle (RATE_LIMIT_HIT / RATE_LIMIT_LIFTED) and live usage (USAGE_SNAPSHOT) pushed to the usage dashboard |
| WS | /ws/agents/{id}, /ws/channels/{id}, /ws/sessions/{id}, /ws/notifications/{id} |
Per-resource live streams |
Documentation
| Method | Endpoint | Description |
|---|---|---|
| POST | /docs/write |
Write/update doc (RAG dedup) |
| GET | /docs/read |
Read documentation |
| GET | /docs/list |
List docs (by task or team) |
| DELETE | /docs/delete |
Delete documentation |
Knowledge Base
| Method | Endpoint | Description |
|---|---|---|
| POST | /optimal/search |
Semantic search |
| POST | /optimal/query |
RAG query |
| POST | /optimal/mentor/ask |
Ask mentor |
| GET | /optimal/stats |
KB stats |
| POST | /optimal/index/code |
Index code |
| POST | /optimal/index/docs |
Bulk index docs |
Health
| Method | Endpoint | Description |
|---|---|---|
| GET | /health |
Health check |
| GET | /health/ready |
Readiness check |