一键导入
close-out
Drive work to completion. Audits scope, generates cut lists, produces completion checklists, and identifies hard calls that need human input.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Drive work to completion. Audits scope, generates cut lists, produces completion checklists, and identifies hard calls that need human input.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Source and independently verify candidates for a role from a job description URL. Runs the source-candidates workflow (Webset creation → Exa verification of every claim → validated/rejected CSVs). Use whenever the user wants to find candidates, source people for a role, run a recruiting search from a job posting, or invokes /source-candidates.
Verify a webset item's enrichments against public data using independent Exa searches. Returns structured verdict with confidence score, evidence, and discrepancies. Use when a channel event or workflow step requires enrichment verification before proceeding.
Produce uniform, verified background reviews / biographies / profiles for a SHORTLIST of entities (people or companies) by dispatching one research subagent per entity in parallel, then synthesizing and persisting the results. Use when the user asks for "bios", "background reviews", "profiles", "tell me about each of these", or a comparison across several candidates — especially after a [[websets-secondary-review]] produced a shortlist. For a single entity use [[deep-research-item]] instead; this is the parallel, many-entities harness.
Run comprehensive research on an entity — news, funding, tech stack, buyer mapping, angle building. Writes findings to the webset store and optionally to Airtable. Use after verification passes or when a channel event requires deep research on a specific entity.
View, add, modify, or remove per-source workflow configurations. These configs control how channel events are routed to workflow chains. Manages data/workflow-configs.json.
Build Claude Code Channels — MCP servers that push events into a live Claude Code session so Claude can react to things happening outside the terminal. Use this skill whenever the user wants to: build a custom channel server, push webhooks/CI alerts/monitoring events into Claude Code, build a two-way chat bridge (Telegram, Discord, or custom), relay tool-use permission prompts remotely, understand the channel notification protocol, declare the claude/channel or claude/channel/permission capability, wire up sender gating/allowlists, or package a channel as a plugin. Trigger on any mention of Channels, channel MCP, push events to Claude Code, Claude Code from phone, or remote control Claude Code.
| name | close-out |
| description | Drive work to completion. Audits scope, generates cut lists, produces completion checklists, and identifies hard calls that need human input. |
| argument-hint | ["none"] |
| user-invocable | true |
| allowed-tools | Bash(bd *), Bash(git status*), Bash(git log*), Bash(git diff*), Bash(cat *), Read |
Drive the current work to completion. Audit scope, identify cuts, and produce a completion checklist.
Read current phase and canary:
!cat .claude/state/system_phase.json 2>/dev/null || echo '{"phase": "unknown"}'
!cat .claude/state/canary_signals.json 2>/dev/null || echo '{"pressure": 0}'
Read beads state:
!bd stats 2>/dev/null || echo "No beads stats"
!bd list --status=open 2>/dev/null || echo "No open issues"
!bd list --status=in_progress 2>/dev/null || echo "No in-progress issues"
Read git state:
!git status --short 2>/dev/null || echo "Clean"
!git log --oneline -5 2>/dev/null || echo "No recent commits"
Compare planned work against actual state:
For each outstanding item, make a hard call:
The default should be CUT or DEFER. Only KEEP items that are truly blocking.
Produce a concrete checklist of what must happen before "done":
## Close-Out Assessment
### Scope Audit
**Planned:** [original scope — what we set out to do]
**Completed:** [what's done — closed issues, committed code]
**Outstanding:** [what's still open]
### Cut List
| Item | Decision | Reason |
|---|---|---|
| [item] | CUT/DEFER/KEEP | [reason] |
### Completion Checklist
- [ ] [concrete step]
- [ ] [concrete step]
- [ ] [concrete step]
### Hard Calls Needed
[Decisions that require human input — present as structured options, not open questions]
### Session Summary
[2-3 sentences: what was accomplished, what was deferred, what the user should know]
After presenting the assessment, help execute the completion checklist:
bd close <id1> <id2> ...)bd create --title="..." --type=task)