用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/hristo2612/jinn --skill delegation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | delegation |
| description | Delegate tracked work and coordinate child sessions through Jinn's chain of command |
Use this skill when another employee or engine is a better fit for a bounded piece of work. Delegate across roles; use native sub-agents only for extra hands inside your own role. Prefer the chain of command for multi-layer work, while keeping every brief and stop condition explicit.
list_employees for the roster, find_employees to filter by department/rank/engine, and get_employee to inspect persona, manager, and direct reports.Use delegate_task for company work that needs ownership, status, review, or a durable record. One call uses or mints the Todo, starts the child session, and links them:
{
"employee": "a-builder",
"title": "Implement parser validation",
"task": "Implement the specified validation. Acceptance: focused tests fail before the change, then the focused and full suites pass. Report changed files and command evidence.",
"effortLevel": "medium",
"idempotencyKey": "parser-validation-v1"
}
workItemId when an existing Todo already tracks the outcome.idempotencyKey for retrying the same delegation. If a spawn fails after the Todo is minted, preserve and report the returned work-item id; do not blindly create another delegation.attachments, every entry must be a managed file ID returned by list_files — never workspace or absolute paths. Missing or stale managed file IDs are rejected before Jinn creates the Todo or child session. Attach only files the child genuinely needs.Use spawn_session for a quick, untracked question or short consultation:
{
"employee": "a-reviewer",
"prompt": "Review this schema choice and return the top two concrete risks. Do not modify files."
}
If the work is repeatable, scheduled, or a reusable multi-phase procedure, use or propose a Workflow instead of carrying the whole process in a delegation prompt.
delegate_task or spawn_session, tell your parent/user what was delegated and to whom.read_session for the latest bounded slice when the reply is not already present. If a callback appears missed, use list_sessions with scope: "children" once, then read the relevant session.send_to_session for precise feedback or a follow-up. End the turn again while the child works.stop_session only for a running descendant that should cease; stopping preserves its record and a later follow-up can resume it.For long evidence, ask the child to write a report or artifact and summarize it. Do not pull an unbounded transcript into the parent context.
Every delegation brief should state:
Review at the risk-appropriate level: TRUST for simple lookups, VERIFY for routine implementation, and THOROUGH for architecture, security, breaking, or irreversible work. Do not forward raw employee output without checking it at the chosen level.
Use bounded feedback loops: low effort up to 4 rounds, medium up to 8, high up to 12. When the cap is reached, stop and escalate with the Todo id, child session id, what passed, what failed, and the decision needed.
Default questions and approvals to the manager/COO. Escalate to the operator for money, irreversible actions, public communication, legal/security decisions, or an explicit manager escalation. A terminal instruction such as "finish" increases persistence toward the stated outcome; it does not expand authority.