Claude 代理仪表盘 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
独立的Scrum板,协调Claude代理为项目工作
Claude 代理仪表盘 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
独立的Scrum板,协调Claude代理为项目工作
Claude 代理仪表盘 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install claude-agents-dashboard
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install claude-agents-dashboard
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/epatel/claude-agents-dashboard
cd claude-agents-dashboard
pip install -e .
# 验证安装
python -c "import claude_agents_dashboard; print('安装成功')"
# 命令行使用
claude-agents-dashboard --help
# 基本用法
claude-agents-dashboard input_file -o output_file
# Python 代码中调用
import claude_agents_dashboard
# 示例
result = claude_agents_dashboard.process("input")
print(result)
# claude-agents-dashboard 配置文件示例(config.yml) app: name: "claude-agents-dashboard" debug: false log_level: "INFO" # 运行时指定配置文件 claude-agents-dashboard --config config.yml # 或通过环境变量配置 export CLAUDE_AGENTS_DASHBOARD_API_KEY="your-key" export CLAUDE_AGENTS_DASHBOARD_OUTPUT_DIR="./output"
<a href="https://claude.ai"><img src="made-with-claude.png" height="32" alt="Made with Claude"></a>
<img src="screenshot.jpg" height="420" alt="Screenshot">
context field on ask_user is rendered as a panel above the prompt so the user sees relevant background before answeringrequires parameter to declare dependencies between items and auto_start to automatically launch agents when dependencies are resolvedview_board MCP tool to understand project contextrequest_tool_access MCP tool with user approval prompttoken_usage tablegraphify-out/); when enabled in Settings ▸ Graphify, agents get a read-only graph_query MCP tool to orient before editing, and the graph auto-refreshes after a merge (free AST build); managed via /api/graphify/* with live build-progress over WebSocketskill-library/ (each wrapped as a one-skill plugin) and enabled per project; enabled skills are delivered to agents through the SDK plugins= option so they load regardless of git/worktree/setting_sources. Managed via /api/skills/*use_chrome), enabling browser-driven workapi_error_status on token_usage, surfacing transient Claude API failures (e.g. overload) distinctly from real agent errorsrepo field; worktrees are created inside the chosen subrepo and agents get read-only access to the other sibling repos for cross-repo contextexamples/mini-mcp/) for referenceauto_start enabled automatically launch an agent when all their dependency items are completed, enabling pipeline-style workflowscreate_shortcut MCP tool (e.g., test runners, build commands)--experimental flagclaude CLI). The dashboard uses the Claude Agent SDK which authenticates through your Claude Code session — no API key neededFrom your project repository:
path/to/claude-agents-dashboard/run.sh
Or pass the project path explicitly:
path/to/claude-agents-dashboard/run.sh /path/to/your/project
The server starts at http://127.0.0.1:8000 (auto-increments ports 8000-8019 if busy). Open the dashboard in your browser — on macOS:
open http://127.0.0.1:8000
Your project must be a git repository, or a parent folder containing one or more sibling git repos (multi-repo workspace mode). Requires Python 3.12+.
| Method | Path | Description |
|---|---|---|
GET | / | Board page (HTML) |
GET | /api/items | List all items |
POST | /api/items | Create item |
PATCH | /api/items/{id} | Update item |
DELETE | /api/items/{id} | Delete item (full cleanup) |
POST | /api/items/{id}/move | Drag-drop reposition |
POST | /api/items/{id}/start | Start agent |
POST | /api/items/{id}/cancel | Cancel agent |
POST | /api/items/{id}/retry | Retry failed agent |
POST | /api/items/{id}/approve | Approve & merge |
POST | /api/items/{id}/request-changes | Send feedback to agent |
POST | /api/items/{id}/pause | Pause running agent |
POST | /api/items/{id}/resume | Resume paused agent |
POST | /api/items/{id}/cancel-review | Discard review changes |
POST | /api/items/{id}/retry-merge | Retry a failed merge |
POST | /api/items/{id}/start-copy | Start a copy of a todo item |
POST | /api/items/{id}/approve-command | Approve/deny agent command request |
GET | /api/items/{id}/dependencies | Get item dependencies |
PUT | /api/items/{id}/dependencies | Set item dependencies |
GET | /api/items/{id}/is-blocked | Check if item is blocked |
GET | /api/items/blocked-status | Blocked status for all items |
POST | /api/items/archive-by-date | Bulk archive items by date |
POST | /api/items/archive-by-epic | Bulk archive done items by epic |
POST | /api/items/delete-by-date | Bulk delete items by date |
POST | /api/items/delete-by-epic | Bulk delete items by epic |
GET | /api/items/{id}/worktree/tree | Browse worktree directory tree |
GET | /api/items/{id}/worktree/content | Read file from worktree |
GET | /api/items/{id}/log | Work log entries |
GET | /api/items/{id}/diff | Diff + changed files |
GET | /api/items/{id}/files/{path} | File content at branch |
GET | /api/items/{id}/clarification | Pending clarification |
POST | /api/items/{id}/clarify | Submit clarification response |
GET/POST | /api/items/{id}/attachments | List/upload attachments |
DELETE | /api/attachments/{id} | Delete attachment |
GET | /api/assets/{filename} | Serve uploaded files |
GET/PUT | /api/config | Agent configuration |
GET | /api/notifications | List system notifications |
DELETE | /api/notifications/{id} | Dismiss a notification |
DELETE | /api/notifications | Clear all notifications |
GET | /api/stats | Usage & activity stats |
GET | /api/epics | List all epics with progress stats |
POST | /api/epics | Create epic |
PUT | /api/epics/{id} | Update epic |
DELETE | /api/epics/{id} | Delete epic (nullifies items' epic_id) |
GET | /api/config/available-tools | List available optional tools |
GET | /api/search/worklog | Search work log entries |
GET | /api/epics/colors | Available epic colors |
GET | /api/shortcuts | List shortcuts |
POST | /api/shortcuts | Create shortcut |
DELETE | /api/shortcuts/{id} | Delete shortcut |
POST | /api/shortcuts/{id}/run | Run shortcut command |
POST | /api/shortcuts/{id}/stop | Stop running shortcut (preserves output) |
GET | /api/shortcuts/{id}/output | Get shortcut output |
POST | /api/shortcuts/{id}/reset | Reset shortcut |
GET | /api/websocket/stats | WebSocket connection stats |
GET | /api/ollama/models | Discover local Ollama models (experimental; ?force=true busts cache) |
GET | /api/graphify/status | Knowledge-graph status: installed/latest version, build-in-progress, graph stats |
POST | /api/graphify/build | Build the graph (semantic flag for the LLM layer) |
POST | /api/graphify/install | Upgrade the graphify package in the dashboard venv |
GET | /api/graphify/query | Query the graph (q=...) |
GET | /api/skills | List installed library skills with per-project enabled flags |
GET | /api/skills/browse | List installable skills from a public source (cached) |
POST | /api/skills/discover | Find every skill (folder with a SKILL.md) in a repo/path |
POST | /api/skills/install | Install a skill from a GitHub repo/path/URL spec |
POST | /api/skills/{name}/enabled | Enable/disable an installed skill for this project |
DELETE | /api/skills/{name} | Remove a skill from the library |
GET | /api/files/tree | Directory tree (lazy, depth-limited) |
GET | /api/files/content | File content (text, image, binary) |
WebSocket | /ws | Real-time event stream |
高质量的开源AI工作流项目,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,Claude 代理仪表盘 在Agent工作流赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | claude-agents-dashboard |
| 原始描述 | 开源AI工作流:A standalone scrum board that orchestrates Claude agents working on your project。⭐6 · Python |
| Topics | AI工作流Scrum |
| GitHub | https://github.com/epatel/claude-agents-dashboard |
| License | MIT |
| 语言 | Python |
收录时间:2026-06-06 · 更新时间:2026-06-08 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端