AgentSkillsCN

orchestrator-intake

用于任务排队、工作器分配生成以及安全预览/应用工作流的确定性编排控制平面命令。

SKILL.md
--- frontmatter
name: orchestrator-intake
description: >
  Deterministic orchestration control-plane commands for task queueing,
  worker assignment generation, and safe preview/apply workflows.

Orchestrator Intake Skill

Use this skill when handling plain-English queue directives and worker assignment requests.

Safety Protocol

  1. Identity check first:
    • bash orchestrator-kit/bin/okit.sh --repo-root <repo> who --json
  2. Preview before apply:
    • bash orchestrator-kit/bin/okit.sh --repo-root <repo> <command> --json
  3. Apply only after confirmation:
    • bash orchestrator-kit/bin/okit.sh --repo-root <repo> --apply <command> --json

Queue Commands

  • Do now <task text | TASK-ID>
  • Do last <task text | TASK-ID>
  • Queue <task1 ; task2 ; ...> (defaults to append/Queue last)
  • Queue now <task1 ; task2 ; ...>
  • Queue last <task1 ; task2 ; ...>
  • Undo last
  • Show queue

Assignment Command

  • bash orchestrator-kit/bin/okit.sh --repo-root <repo> assign

This generates deterministic non-overlapping worker assignment messages and dispatch files.

Delimiter support:

  • ;, |, or newline list (for natural multiline queue requests).