把模糊的点子通过结构化对话打磨成一份只讲"做什么"和"为什么"的规格文档。
设计与多媒体
Resolve Beagle
试用把带 Open Questions 的草稿规范,整理成无缺口、可直接进入规划的实现就绪版本。
它能做什么
Resolve Beagle 接手 brainstorm-beagle 产出的规范,把里头剩下的缺口关闭——既包括 Open Questions 里写明的问题,也包括撰写时溜过去的潜在问题,比如占位符、模糊需求、自相矛盾、缺少理由或不可验证的验收条件。它先定位规范文档,汇总成一份缺口清单交给你增删或延期;然后为每个缺口派发一项研究任务,支持子代理时并行、不支持则顺序内联。提案一次只提一条,给出 WHAT/WHY 层面的推荐答案、1–2 个被排除的备选方案,以及具体证据(文件路径行号、URL 或规范内引用)。决议落定后按类型迁入 Key Decisions、Requirements、Constraints 或 Reference Points;确实无法在此阶段解答的,仍留在 Open Questions 并附上 `deferred:` 后缀和一句话理由。本技能只编辑规范文档,不写代码、不做脚手架、不设计架构、不出实现计划;改完会跑一遍与 brainstorm-beagle 一致的自检清单,再询问你是否提交。
什么时候用它
- 在进入规划前清空草稿规范的 Open Questions
- 揪出初稿漏过去的模糊需求、自相矛盾与不可验证条款
- 对每个缺口并行调研代码库现状与外部参考资料
- 把已决定的条目归入规范对应章节,并保留延期项痕迹
技能文档
Resolve: Close Spec Gaps
Take a spec produced by brainstorm-beagle and close its remaining gaps — both the explicit Open Questions and the latent ones the self-review missed — by researching, proposing answers, and rewriting the spec in place.
The terminal state is a spec with no known open questions and no placeholder requirements. Planning can start immediately after.
This skill does not write code, scaffold projects, design architecture, or create implementation plans. It only edits the spec document. "Answering an open question" means proposing a WHAT/WHY answer with rationale — never a HOW. If a question turns out to require implementation design, defer it with a note and move on.
Gates (pass before next step)
Objective pass conditions so steps are not skippable by assertion alone:
- Spec located — The target file path is known and
Readsucceeds (or the user supplied a valid path after you listed 3–5 recentdocs/specs/candidates). - Gap list published — One message lists every explicit Open Question bullet and each latent gap you will treat as in-scope. Do not dispatch research until the user adjusts the list (add/remove/defer) or explicitly tells you to proceed with that list.
- Research artifact per gap — Before you present a proposal for gap G, you have a structured note for G: recommended answer, 1–2 rejected alternatives with reasons, and evidence (file:line, URL, or in-spec citation). No proposal without that artifact.
- One proposal queue — Do not open the next gap’s proposal until the current gap has a clear outcome (accepted, revised wording applied, rejected with what happens next, or deferred with reason).
- Rewrite reconciled — After editing, you read the full spec once and resolve cross-section contradictions; then run the self-review checklist from
../brainstorm-beagle/references/spec-reviewer.mdwith failures fixed in-session unless the user opts for a follow-up pass. - Commit — No
git commitunless the user answered yes to the commit prompt in § Committing.
Workflow
- Locate the spec — explicit path from the user, or the most recent file in
docs/specs/ - Extract gaps — parse Open Questions and audit for latent issues (placeholders, vague requirements, missing rationale, contradictions)
- Show the gap list — present everything you plan to close in one summary so the user can add or remove items before research starts
- Dispatch research — one task per gap, in parallel via subagents when available; otherwise sequentially inline
- Propose answers — one proposal at a time, with recommendation + alternatives + evidence
- Rewrite the spec in place — migrate resolved items to the right sections; nothing silently dropped
- Self-review — same checklist
brainstorm-beagleuses (see../brainstorm-beagle/references/spec-reviewer.md) - Ask about committing — prompt the user whether to commit the edit; don't commit unprompted
Locate spec → Extract gaps → Show list ──→ User adds/removes
→ Dispatch research (parallel if possible)
→ Propose answers (one at a time)
→ User decision → next
→ Rewrite spec in place
→ Self-review (fix inline)
→ Ask about committing
Locating the spec
If the user gave a path, use it.
Otherwise, list the 3–5 most recently modified files in docs/specs/ and ask: "Work on ``, or another one?" Don't scan the whole directory tree — specs are top-level per brainstorm-beagle's convention.
If no spec directory exists, ask the user for the path.
Extracting gaps
Two categories count as gaps:
Explicit gaps — every bullet under the spec's Open Questions heading is one research task.
Latent gaps — issues that slipped past the brainstorm's self-review. Scan the spec for:
| Problem | What it looks like |
|---|---|
| Placeholder | TBD, TODO, "to be determined", ellipsis used as content |
| Vague requirement | "fast", "simple", "good", "user-friendly", "intuitive" — nothing to verify against |
| Missing rationale | Constraint or Out-of-Scope item with no "why" |
| Contradiction | Requirement conflicts with another requirement, with a constraint, or with Out of Scope |
| Untestable success | No observable way to verify the requirement was met |
| Implementation leakage | A requirement prescribes HOW instead of describing WHAT |
| Unconsumed surface | A must-have introduces new externally-facing surface (API surface, command, endpoint, exported contract) that nothing else in the spec consumes |
| Unresolved composition | An existing mechanism sits upstream/downstream in the same data pipeline and transforms (truncate, filter, buffer, reorder, dedupe) the data the feature depends on, but its composition with the feature is left unexamined |
The reason to treat latent gaps as first-class: a spec that says "fast" or "good UX" hasn't been answered just because nothing was explicitly flagged. Planning will trip over those same words. Close them here.
Before dispatching research, show the combined list to the user in one message — "here's what I'm planning to close" — and let them add, remove, or defer items. Don't ask permission one-by-one; that's the proposal step.
Dispatching research
Each gap gets exactly one research task. Classify each task first — the type determines which tools the research needs:
| Task type | Looks like | Tools |
|---|---|---|
| Codebase pattern | "How does the existing --start-at pattern work?" "Where is SKILL_MAP defined?" | search the codebase (grep/glob/read) |
| External / API | "What does the agent's SDK expose for sub-agent spawning?" "Does Codex have hooks?" | web search and page fetch (if web access is available) |
| Design tradeoff | "What should the merged report format be?" "How should deduplication work?" | Reasoning + analogous reference points already in the spec |
| Scope / policy | "Should config/docs files route to a stack or fallback?" | Reasoning tied to the spec's own Core Value and Constraints |
With subagents (preferred)
If the agent supports subagents, dispatch each research task as an independent subagent — all in the same turn, so they run in parallel. Each subagent gets its own context window, which matters: gaps often come with large supporting context (the spec, the codebase) that you don't want crammed into a single conversation.
See references/subagent-prompts.md for the prompt templates (one per task type).
The research return must be structured: recommended answer, 1–2 alternatives with why rejected, and concrete evidence (file:line citations, URLs, or references to existing spec sections). Cap each return at ~300 words — you want decisions, not transcripts.
Without subagents
If no subagent tool is available, do the research yourself, one question at a time. Work in cheapest-first order: codebase questions, then external, then tradeoffs, then scope/policy. Produce the same structured proposal for each. This is slower but never leaves gaps unresolved.
Proposing answers
Present proposals one at a time. For each:
- The gap — restated in one line
- Recommended answer — your best call, with WHY
- Alternatives — 1–2 credible options and why they were rejected
- Evidence — file:line citations, URLs, or references to decisions already in the spec
The user can accept, revise, or reject. Follow the thread if they want to discuss; move on once decided.
Order matters. Resolve in this rough sequence:
- Codebase-reality gaps first (they may inform design tradeoffs)
- Policy/scope gaps second (they shape everything downstream)
- Format/presentation gaps last (they depend on the above)
When a gap can't be resolved without input only the user has (budgets, stakeholder preferences, unstated constraints), don't guess — ask directly. It's cheaper than proposing the wrong answer and unwinding it.
Rewriting the spec
As decisions land, migrate them to where they belong:
| Gap type | Destination after resolution |
|---|---|
| Architectural or policy decision | New entry under Key Decisions (with alternatives considered) |
| Concrete behavior | New entry under Requirements (assigned must/should/out-of-scope) |
| Hard limit | New entry under Constraints (with rationale) |
| External reference discovered during research | New entry under Reference Points |
| Vague requirement replaced | Rewrite the existing requirement inline; do not duplicate |
| Intentionally deferred | Stays in Open Questions with a deferred: suffix |
Two rules that matter:
- Never silently drop an Open Question. Either resolve it, migrate it with rationale, or explicitly defer it with a reason. Dropping a question without a trail is how specs regress between sessions.
- Rewrite the whole spec, not just the touched sections. Changes ripple: a new Key Decision may contradict an old Requirement, a resolved Open Question may invalidate a Constraint. Read the spec end-to-end after edits and reconcile.
Self-review
Run the checks from ../brainstorm-beagle/references/spec-reviewer.md:
- No placeholders
- No contradictions
- No implementation leakage
- All requirements testable
- Constraints and Out-of-Scope items have rationale
- No new externally-facing surface (API surface, command, endpoint, exported contract) without a named consumer — name it or move it to Future Considerations
- Any existing upstream/downstream pipeline mechanism that transforms the feature's data is recorded as a Key Decision tagged
needs-spike-before-planning, not left unexamined
Fix anything that surfaces inline before handing back to the user. If new gaps appear during the rewrite (they sometimes do), add them to a "new gaps surfaced" list and ask the user whether to resolve them now or leave for a later pass.
Committing
After the rewrite, summarize and ask:
"Spec updated. Resolved N explicit questions and M latent gaps. Want me to commit this as
docs: resolve open questions in spec?"
If yes, commit. If no, leave the working tree for the user. Do not commit unprompted — the user may want to review the diff first or bundle it with other changes.
Key Principles
- Close the loop. The goal is a spec with nothing unanswered that blocks planning. Half-resolved is worse than clearly deferred.
- One research task per gap. Don't blur tasks together — it makes the proposal step harder to review and weakens the evidence trail.
- Evidence over opinion. Every proposal cites something — a file, a URL, or an existing spec decision. "I think" is not enough.
- Still WHAT, not HOW. Answers land as decisions in the spec, not as implementation designs. If an answer requires implementation thinking, defer it.
- Defer honestly. A question too expensive to answer now stays an Open Question with a one-line reason. Better to admit a known gap than paper over it.
- Parallelize when you can. Subagents run in isolation — fan out aggressively. Sequential research is the fallback, not the default.
- Don't interrupt unnecessarily. Show the gap list once, then only stop the user for decisions that need human judgment.
常见问题
- 它会写代码、搭脚手架或设计架构吗?
- 不会。它只编辑规范文档。如果某个问题必须落到实现层面才能回答,会以延期方式处理,而不是给出 HOW。
- 答不了的 Open Questions 会怎样处理?
- 不会悄悄删除,而是继续留在 Open Questions,加上 `deferred:` 后缀和一句话理由,方便后续会话追溯。
- 改完会自动提交 git 吗?
- 不会。改写完成后它会先汇总本轮解决了多少问题,再问你是否提交,得到明确同意后才会 commit。
相关技能
Use when you need a bite-sized, TDD-driven implementation plan but do NOT have a brainstorm-beagle spec to plan against. quick-plan reconstructs intent from...
Structure vague opportunities and unclear briefs into actionable one-page problem statements. Use when asked to clarify a vague brief, frame an undefined pro...
Create CompleteTech LLC agentic development proposals, statements of work, discovery recaps, pilot recommendations, evaluation plans, risk/control plans, imp...
Run durable long-running research in OpenClaw using isolated cron iterations, persistent state, bounded execution, and milestone updates. Use when the user w...
Beebole (beebole.com). Use this skill for ANY Beebole request — searching and reading data. Whenever a task involves Beebole, use this skill instead of calling the API directly.