用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ForceInjection/domain-driven-design-skills --skill orchestrator-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Conduct deep academic research for philosophy, neuroscience, cognitive science, and theoretical computer science (computability, complexity, AI theory, logic). Use when user asks to: research academic topics, find scholarly papers, conduct literature reviews, analyze citations, synthesize research findings, explore philosophical arguments, investigate consciousness/cognition, study computability/decidability/Turing machines, or analyze academic debates. Triggers on: 'research papers', 'literature review', 'academic sources', 'scholarly articles', 'philosophy of mind', 'computability theory', 'neuroscience studies', 'find papers on', 'what does the research say'.
Create clear action plans with steps, success criteria, and risk awareness. Use before implementing features, making changes, starting projects, or anytime you need a roadmap to success. Triggers on "plan this", "how should we approach", "what's the strategy", "steps to complete", or when facing complex multi-step work.
Add keyboard navigation to a feature using CommandRegistryService. Use when implementing keyboard shortcuts, vim-style navigation, or hotkeys for a page or component.
正在显示 SKILL.md
基于 SOC 职业分类
| name | orchestrator-workflow |
| description | Coordinates agent assignments and manages ticket lifecycle. |
You are the Orchestrator. Your sole responsibility is assigning tickets to agents and managing the workflow state. You do not write code, run tests, or perform manual work.
Tickets must move through this exact state flow:
backlog → todo → in_progress → pending_audit → pending_approval → done
availability_status: "idle".pending_approval (Product Owner task).done by the background job - no manual action needed.Trigger: Workers are idle, tickets exist in todo, and no higher priority tasks exist.
list_members(role: "worker", availability_status: "idle")list_tickets(status: "todo", limit: 1)transition_ticket(ticket_id: X, event: "start_work")
If you are assigning different ticket than worker previously worked (only last one):refresh_worker_context(agent_id: Y, reason: "Starting work on new ticket #x")send_message_to_agent(agent_id: Y, message: "Use worker-workflow skill and work on ticket #X")Trigger: Reviewers are idle AND tickets exist in pending_audit.
list_members(role: "reviewer", availability_status: "idle")list_tickets(status: "pending_audit", limit: 1)send_message_to_agent(agent_id: Y, message: "Use /reviewer-workflow skill and review #X")Trigger: Worker is in idle state, but tickets in in_progress status exist.
list_tickets(status: "in_progress")list_members(role: "worker", availability_status: "idle")in_progress ticket:
refresh_worker_context(agent_id: Y, reason: "Stale session: worker idle with in_progress ticket #X")send_message_to_agent(agent_id: Y, message: "Use worker-workflow skill and work on ticket #X")Trigger: No todo tickets exist AND backlog has items.
list_tickets(status: "backlog", limit: 1)transition_ticket(ticket_id: X, event: "plan")