Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

resolve-beagle解决比格犬

Agent Skill

resolve-beagle 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,594

周安装

107

GitHub Stars

公开资料未说明

下载量

847
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:resolve-beagle(解决比格犬)
来源仓库:https://github.com/anderskev/resolve-beagle
安装命令:
openclaw skills install resolve-beagle
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install resolve-beagle

简介

当规范有一个开放问题部分(或悄悄地带有潜在差距)需要在计划或实施之前关闭时,可用作头脑风暴小猎犬的后续行动。

SKILL.md

name
resolve-beagle
description
Use as the follow-up to brainstorm-beagle when a spec has an Open Questions section (or quietly carries latent gaps) that need closing before planning or implementation can begin. Triggers on: \"resolve the open questions\", \"close the gaps in this spec\", \"research the open items\", \"finalize my spec\", \"make this spec implementation-ready\", \"answer the TBDs\". Also triggers whenever the user points at a brainstorm-beagle spec and asks for research, proposals, or answers to unresolved items. Orchestrates parallel research subagents when available (falls back to inline sequential research otherwise), proposes answers one at a time for user approval, then rewrites the spec in place so it arrives at planning with no known gaps. Does NOT write code, design implementation, or create plans — it only produces a complete spec.

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.

<hard_gate> 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. </hard_gate>

Gates (pass before next step)

Objective pass conditions so steps are not skippable by assertion alone:

  1. Spec located — The target file path is known and Read succeeds (or the user supplied a valid path after you listed 3–5 recent docs/specs/ candidates).
  2. 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.
  3. 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.
  4. 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).
  5. 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.md with failures fixed in-session unless the user opts for a follow-up pass.
  6. Commit — No git commit unless the user answered yes to the commit prompt in § Committing.

Workflow

  1. Locate the spec — explicit path from the user, or the most recent file in docs/specs/
  2. Extract gaps — parse Open Questions *and* audit for latent issues (placeholders, vague requirements, missing rationale, contradictions)
  3. Show the gap list — present everything you plan to close in one summary so the user can add or remove items before research starts
  4. Dispatch research — one task per gap, in parallel via subagents when available; otherwise sequentially inline
  5. Propose answers — one proposal at a time, with recommendation + alternatives + evidence
  6. Rewrite the spec in place — migrate resolved items to the right sections; nothing silently dropped
  7. Self-review — same checklist brainstorm-beagle uses (see ../brainstorm-beagle/references/spec-reviewer.md)
  8. 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 <most recent>, 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:

ProblemWhat it looks like
PlaceholderTBD, TODO, "to be determined", ellipsis used as content
Vague requirement"fast", "simple", "good", "user-friendly", "intuitive" — nothing to verify against
Missing rationaleConstraint or Out-of-Scope item with no "why"
ContradictionRequirement conflicts with another requirement, with a constraint, or with Out of Scope
Untestable successNo observable way to verify the requirement was met
Implementation leakageA requirement prescribes HOW instead of describing WHAT

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 typeLooks likeTools
Codebase pattern"How does the existing --start-at pattern work?" "Where is SKILL_MAP defined?"Grep, Glob, Read
External / API"What does the Claude SDK expose for sub-agent spawning?" "Does Codex have hooks?"WebSearch, WebFetch, Context7 (if 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)

When the Task tool (or equivalent subagent tool) is available, 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:

  1. Codebase-reality gaps first (they may inform design tradeoffs)
  2. Policy/scope gaps second (they shape everything downstream)
  3. 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 typeDestination after resolution
Architectural or policy decisionNew entry under Key Decisions (with alternatives considered)
Concrete behaviorNew entry under Requirements (assigned must/should/out-of-scope)
Hard limitNew entry under Constraints (with rationale)
External reference discovered during researchNew entry under Reference Points
Vague requirement replacedRewrite the existing requirement inline; do not duplicate
Intentionally deferredStays in Open Questions with a deferred: <reason> 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

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 <topic> 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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.94%
按下载量换算753

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install resolve-beagle 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills