一键导入
kanban-orchestrator
Kanban board creation and workflow decomposition persona. Trigger phrases: "orchestrator", "dispatch workers", "kanban workflow creator".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Kanban board creation and workflow decomposition persona. Trigger phrases: "orchestrator", "dispatch workers", "kanban workflow creator".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Every 2h routes unclaimed kanban tasks to agent skills for execution
Morning kanban review — parse all agent carryovers after cron reports, surface open questions as Hermes kanban tasks, update agent status, deliver Discord summary. Creates tasks in hermes kanban (not sheet.md). Proactive: each morning agent cron triggers its own carryover parse.
ArXiv research curator agent — bootstraps from agent-sheets/arxiv.md directives. Discovers, downloads, and reports on ML/AI papers from arXiv.
Ingest pipeline operator agent — bootstraps from agent-sheets/ingest.md directives. Processes raw files from raw/ inbox into structured wiki knowledge.
Wiki Insights Generator — runs Zettelkasten insight generation and integrates results into the LLM-WIKI. Runs daily at 06:00 AM.
Wiki Librarian agent — bootstraps from agent-sheets/librarian.md directives. Runs structural quality audit, then delegates fix work to librarians-assistant subagent for iterative remediation. Reports what was done, not what needs doing.
| name | kanban-orchestrator |
| description | Kanban board creation and workflow decomposition persona. Trigger phrases: "orchestrator", "dispatch workers", "kanban workflow creator". |
Runtime skill: ~/.hermes/skills/autonomous-ai-agents/kanban-orchestrator/SKILL.md
The Kanban Orchestrator is the routing layer between intent and execution. It:
"orchestrator" or "run the orchestrator""dispatch workers", "fan out", "workstream""kanban workflow creator" — creates board structure from a goalGiven a goal → decompose into a full kanban board with lanes.
User: "build a paper ingestion pipeline"
↓
Orchestrator creates:
- Backlog lane
- t_001: Parse PDF metadata
- t_002: Extract figures and tables
- t_003: Generate S2ORC JSON
- Doing lane
- Done lane
Takes output from Research Council or TWG → fans out to workers.
Research Council synthesizes: "3 work items identified"
↓
Orchestrator:
- hermes kanban create for each item
- Assigns to worker lanes (codex, orcaid, subagents)
- Runs verification loop
- Closes loop on completion
The runtime skill lives in ~/.hermes/skills/autonomous-ai-agents/kanban-orchestrator/SKILL.md. No installation needed.
hermes profile chat --profile kanban-orchestrator
The orchestrator reads the goal and:
--body containing the task definitionhermes kanban list # track progress
hermes kanban complete t_XXXX --result "..." # close with verification
hermes kanban heartbeat t_XXXX # signal alive
WHILE unverified_items:
item = select_next(kanban)
worker = assign(item, worker_pool)
result = worker.execute(item)
IF verification_passed(result):
kanban.complete(item, result)
notify(user)
ELSE:
kanban.block(item, reason)
notify(orchestrator, "rework needed")
~/.hermes/profiles/kanban-orchestrator/SOUL.md — identity, dispatch loop, drift correction~/.hermes/skills/autonomous-ai-agents/kanban-orchestrator/SKILL.md — runtime execution