基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/SocketDev/socket-btm --skill delegating-execution命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Run this repo's GitHub Actions locally with Agent-CI before pushing CI-sensitive changes.
Audit Actions permissions/allowlists against the fleet baseline; --conform fixes drift.
Propagate a wheelhouse template change across fleet repos: worktrees, push/PR fallback, cleanup.
| name | delegating-execution |
| description | Route substantial work through plan, execute, review, follow-up agents at the right effort tier. |
| user-invocable | true |
| argument-hint | <task summary> [benign|security] |
| allowed-tools | Bash(node:*), Read, Workflow, Write |
| model | claude-sonnet-4-6 |
| context | fork |
| metadata | {"internal":true} |
The fleet tier doctrine: Fable plans, a lesser model executes, Fable reviews, the lesser model follows up. This skill is the EXECUTION-tiering complement to grilling-plan (which stress-tests a plan's content interactively before building) and operates at the Workflow-harness tier (agent({model, effort})). The CLI-subprocess layer — codex/opencode/kimi backends and when to prefer each — is documented in .claude/skills/fleet/_shared/multi-agent-backends.md; this skill sits above it on the Anthropic Workflow tier.
plan-review-nudge shape: numbered steps, named files + rules).grilling-plan; run it before this skill when the design is unsettled..claude/plans/.git worktree.file:line findings.Mirror — source of truth: scripts/fleet/lib/delegating-execution/route.mts.
| phase | sensitivity | model | effort |
|---|---|---|---|
| plan | benign | claude-fable-5 | undefined |
| plan | security | claude-opus-4-8 | high |
| review | benign | claude-fable-5 | undefined |
| review | security | claude-opus-4-8 | high |
| execute | benign | claude-sonnet-4-6 | medium |
| execute | security | claude-sonnet-4-6 | medium |
| followup | benign | claude-sonnet-4-6 | medium |
| followup | security | claude-sonnet-4-6 | medium |
spawnAiAgent is not live yet (upstream socket-lib; see fable-fallback). When unsure, say security — the workflow also defaults to it (fail-safe).Workflow({ name: "delegating-execution", args: { sensitivity: "benign" | "security", task: "<one-paragraph task summary>" } })
sensitivity is optional and defaults to "security".
.claude/plans/delegating-<slug>.md containing (a) the numbered plan naming files + rules and (b) a fenced execution prompt the floor model runs verbatim.plan-location-guard).scripts/fleet/lib/delegating-execution/route.mts — the canonical tier table.scripts/fleet/lib/delegating-execution/prompts.mts — phase prompt builders (source of truth; the workflow JS carries a mirror)..claude/workflows/delegating-execution.js — the Workflow runner.