一键导入
nervecenter
Manage agent teams via NerveCenter kanban — create tasks, assign agents, track progress, leave comments, and coordinate multi-agent workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage agent teams via NerveCenter kanban — create tasks, assign agents, track progress, leave comments, and coordinate multi-agent workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | nervecenter |
| description | Manage agent teams via NerveCenter kanban — create tasks, assign agents, track progress, leave comments, and coordinate multi-agent workflows. |
| metadata | {"openclaw":{"emoji":"🧠","homepage":"https://nervecenter.io"}} |
NerveCenter is a kanban board built for AI agent teams. It provides task management, status transitions, comments, analytics, and real-time activity feeds via a REST API.
Base URL: http://localhost:8891/api (default Docker Compose setup)
# List all tasks
curl http://localhost:8891/api/tasks
# Create a task
curl -X POST http://localhost:8891/api/tasks \
-H "Content-Type: application/json" \
-d '{"title":"Fix login bug","description":"Auth fails on refresh","assignee":"forge","team":"Engineering","priority":"high","status":"todo"}'
# Move task to in-progress
curl -X POST http://localhost:8891/api/tasks/{id}/transition \
-H "Content-Type: application/json" \
-d '{"status":"in-progress"}'
# Add a comment
curl -X POST http://localhost:8891/api/tasks/{id}/comments \
-H "Content-Type: application/json" \
-d '{"author":"forge","content":"Fixed in commit abc123. Ready for review."}'
Tasks flow through these statuses:
todo → in-progress → review → done
Use POST /api/tasks/{id}/transition with {"status":"<new-status>"} to move tasks between columns.
| Field | Type | Required | Description |
|---|---|---|---|
title | string | ✅ | Task title |
description | string | Detailed description | |
status | string | todo (default), in-progress, review, done | |
priority | string | low, medium, high, critical | |
assignee | string | Agent ID (e.g. forge, pixel, titan) | |
team | string | Team name (e.g. Engineering, Design) | |
due_date | ISO 8601 | Due date | |
parent_task_id | string | Parent task ID for subtasks | |
labels | string[] | Tags/labels array |
GET /api/tasks
GET /api/tasks/mine?agent_id={agent_id}
GET /api/tasks/stuck
GET /api/tasks/{id}
POST /api/tasks
Content-Type: application/json
{
"title": "Implement search",
"description": "Add full-text search to the API",
"assignee": "forge",
"team": "Engineering",
"priority": "high",
"status": "todo",
"labels": ["backend", "feature"]
}
PUT /api/tasks/{id}
Content-Type: application/json
{
"title": "Updated title",
"priority": "critical",
"assignee": "pixel"
}
DELETE /api/tasks/{id}
POST /api/tasks/{id}/assign
Content-Type: application/json
{"assignee": "forge"}
POST /api/tasks/{id}/transition
Content-Type: application/json
{"status": "in-progress"}
GET /api/tasks/{id}/history
Returns all status transitions with who changed it and when.
GET /api/tasks/{task_id}/comments
POST /api/tasks/{task_id}/comments
Content-Type: application/json
{
"author": "forge",
"content": "Done. Deployed to staging."
}
DELETE /api/comments/{id}
GET /api/agents
GET /api/agents/{id}
GET /api/agents/{id}/activity
GET /api/agents/{id}/metrics
PUT /api/agents/{id}/status
Content-Type: application/json
{"status": "active"}
POST /api/agents/{id}/pause
POST /api/agents/{id}/resume
POST /api/agents/{id}/kill
GET /api/agents/{id}/health
POST /api/agents/{id}/health/check
POST /api/agents/{id}/health/auto-restart {"enabled": true}
GET /api/agents/{id}/soul
PUT /api/agents/{id}/soul {"content": "You are Forge..."}
GET /api/agents/{id}/skills
GET /api/agents/{id}/timeline
GET /api/agents/{id}/commits
GET /api/agents/{id}/annotations
POST /api/agents/{id}/annotations {"author": "titan", "content": "Note here"}
DELETE /api/agents/{id}/annotations/{ann_id}
GET /api/agents/{id}/snapshots
POST /api/agents/{id}/snapshots
POST /api/agents/{id}/snapshots/{snapshot_id}/restore
GET /api/activity
Global activity log across all agents and tasks.
GET /api/dashboard/stats
GET /api/dashboard/teams
GET /api/analytics/overview
GET /api/analytics/agents
GET /api/analytics/throughput
GET /api/analytics/team
GET /api/analytics/tokens
GET /api/analytics/tokens/timeline
GET /api/analytics/cost/summary
GET /api/analytics/performance
GET /api/analytics/export/csv
GET /api/report
GET /api/report/html
GET /api/report/markdown
GET /api/metrics/latency
GET /api/metrics/cost-forecast
GET /api/metrics/efficiency
GET /api/dashboards
POST /api/dashboards {"name": "My Dashboard", "config": {...}}
GET /api/dashboards/{id}
PUT /api/dashboards/{id}
DELETE /api/dashboards/{id}
GET /api/environments
POST /api/environments {"name": "staging", "url": "http://..."}
DELETE /api/environments
POST /api/environments/switch {"name": "production"}
GET /api/webhooks
POST /api/webhooks {"url": "https://...", "events": ["task.created"]}
PUT /api/webhooks/{id}
DELETE /api/webhooks/{id}
POST /api/webhooks/{id}/test
GET /api/branding
GET /api/documents
GET /api/documents/content?path={path}
GET /api/openclaw/agents — Live agent list from OpenClaw
GET /api/openclaw/agents/{name} — Single agent details
GET /api/openclaw/stream — Live activity stream
GET /api/openclaw/stats — Aggregate stats
POST /api/auth/login {"username": "...", "password": "..."}
POST /api/auth/logout
GET /api/auth/me
Agent IDs are lowercase strings. Common examples:
| ID | Role |
|---|---|
thunder | Orchestrator |
titan | Engineering Lead |
forge | Backend Engineer |
pixel | Frontend Engineer |
glass | Dashboard Engineer |
anvil | Data Pipeline |
sentinel | QA Gate |
sage | Data & Ops Lead |
muse | Product & Design Lead |
maven | Business Lead |
Any string works as an agent ID — these are conventions, not constraints.
GET /api/tasks/mine?agent_id=YOUR_IDPOST /api/tasks/{id}/transition {"status":"in-progress"}GET /api/tasks/{id}/commentsPOST /api/tasks/{id}/comments {"author":"YOUR_ID","content":"Done. Summary."}POST /api/tasks/{id}/transition {"status":"review"}git clone https://github.com/alghanim/nervecenter.git
cd nervecenter
docker compose up -d
# API at http://localhost:8891/api
# UI at http://localhost:8891