Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

clarifying-assumptions澄清假设

Agent Skill

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

总安装

1,211

周安装

52

GitHub Stars

公开资料未说明

下载量

424
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:clarifying-assumptions(澄清假设)
来源仓库:https://github.com/b-mendoza/agent-skills
仓库路径:skills/clarifying-assumptions
安装命令:
npx skills add https://github.com/b-mendoza/agent-skills --skill clarifying-assumptions
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/b-mendoza/agent-skills --skill clarifying-assumptions

简介

clarifying-assumptions 为工作流编排提供对话层支持,聚焦于厘清当前问题与开发者推理过程。

  • 适用于 Jira 工单或 GitHub Issue 驱动的开发场景,辅助判断下一步询问或委派子代理。
  • 协调 artifact 读取、批评生成、清单组装等子任务,优化多 Agent 协作效率。
  • 使用时需注意其依赖特定 ticket key 格式,并可能触发文件读写与外部服务调用。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Clarifying Assumptions

This skill is the conversation layer for workflow orchestration. It accepts a TICKET_KEY that can be a Jira ticket key (JNS-6065) or a GitHub issue slug (acme-app-42). The orchestrator does exactly three things: think about the current question and the developer's reasoning, decide what to ask or defer next, and dispatch subagents for artifact reading, critique generation, manifest assembly, and file updates. critique-analyzer writes its full report to a workflow artifact before manifest assembly so the orchestrator carries only summaries, manifest rows, and artifact paths instead of raw planning content.

Inputs

InputRequiredExample
TICKET_KEYYesJNS-6065 or acme-app-42
MODEYesupfront or critique
TASK_NUMBERRequired for MODE=critique3
ITERATIONNo1, 2, or 3

<KEY> in path examples below is the same value as TICKET_KEY.

The main task plan must already exist at docs/<TICKET_KEY>-tasks.md. The required plan sections and artifact contracts are part of this skill's preconditions and are defined below.

When MODE=critique, these per-task artifacts must also exist:

  • docs/<KEY>-task-<N>-brief.md
  • docs/<KEY>-task-<N>-execution-plan.md
  • docs/<KEY>-task-<N>-test-spec.md
  • docs/<KEY>-task-<N>-refactoring-plan.md

The skill derives these additional subagent handoff inputs from the top-level inputs:

Dispatch targetDerived inputs
critique-analyzerMAIN_PLAN_FILE, ARTIFACTS, CRITIQUE_REPORT_FILE, PRIOR_DECISIONS_FILE, PRIOR_DECISIONS_KIND (main-log in MODE=upfront, per-task in MODE=critique), and in MODE=critique TASK_NUMBER
question-manifest-builderPLAN_FILE, CRITIQUE_REPORT_FILE, and in MODE=critique TASK_NUMBER plus CURRENT_TASK_ARTIFACTS
decision-recorderITERATION, DECISIONS, optional DEFERRED_QUESTIONS, optional IMPLEMENTATION_UPDATES, and in MODE=critique TASK_NUMBER, TASK_TITLE, plus RESOLVED_IRRELEVANT

Input and Output Contracts

Input contract

The main plan file at docs/<TICKET_KEY>-tasks.md must contain these sections:

SectionUsed for
## Ticket Summary or ## Issue SummaryPlatform-native summary section consumed upstream; either heading satisfies this input contract
## Problem FramingTier 3 hard-gate questions and user-impact context
## Assumptions and ConstraintsAssumptions to confirm, revise, or defer
## Cross-Cutting Open QuestionsPlan-wide blocking questions
## TasksTask-specific questions and assumptions
## Validation ReportValidation FAIL and WARN items
## Dependency GraphImpact mapping and downstream task references

Additional upstream artifacts:

  • MODE=upfront: docs/<KEY>-stage-1-detailed.md, docs/<KEY>-stage-2-prioritized.md
  • MODE=critique: task brief, execution plan, test spec, and refactoring plan

These sections and upstream artifacts are required input preconditions for the skill. This skill requires only the paths above plus readable markdown at those locations.

Output contract

This skill updates orchestration artifacts only. It does not produce implementation code.

ArtifactRequired result
docs/<KEY>-upfront-critique.md or docs/<KEY>-task-<N>-critique.mdFull critique report written before manifest assembly so later steps consume the artifact path instead of the full report body
docs/<KEY>-tasks.md updatesMain plan updated so downstream execution consumes resolved decisions instead of open ambiguity
## Decisions Log rowsDurable audit trail for plan-wide and task-level clarification decisions
Deferred question tagsLater critique-mode runs can identify which questions must be revisited later
docs/<KEY>-task-<N>-decisions.mdCritique-mode record of task-level decisions for re-planning and execution
RE_PLAN_NEEDED in the final summarySignals whether planning should be re-run before execution
BLOCKERS_PRESENT in the final summarySignals that clarification ended with unresolved items and execution must not proceed

These are orchestration artifacts. Keep them out of version control.

Final summary contract

Every successful run ends with a concise final summary that includes at minimum these fields in a stable shape:

  • Critique artifact: <path>
  • Files updated: <path list or ->
  • RE_PLAN_NEEDED: <true|false>
  • BLOCKERS_PRESENT: <true|false>

If clarification stops early because a subagent returned BLOCKED, FAIL, or ERROR, still emit the same minimum fields with Files updated: - plus the blocking verdict and reason.

Canonical Pipeline Stages

Use the same stage names and ordering regardless of whether the caller is a Jira workflow or a GitHub workflow.

StageNamePurpose
1Load guidanceRead the design-thinking reference and the active mode playbook
2Analyze artifactsDispatch critique-analyzer to read artifacts, consult the Decisions Log, inspect the codebase, and write the critique artifact
3Build manifestDispatch question-manifest-builder to turn the critique artifact plus plan context into the ordered manifest
4Clarify inlineWalk the manifest one item at a time with the developer and capture decisions
5Record decisionsDispatch decision-recorder to update workflow artifacts, validate them, and return the final write summary

Manifest preview belongs inside Stage 4. Final user-facing recap belongs inside Stage 5 after the recorder returns. Do not invent extra pipeline stages for those two presentation steps.

Pipeline / Workflow Overview

ModeGoalDelegated workInline work
upfrontChallenge the whole plan before execution startscritique generation with Decisions Log dedup, manifest assembly, file updatesSocratic questioning and decision capture
critiqueChallenge one task just before executioncritique generation with Decisions Log dedup, manifest assembly, file updatesEvaluate reasoning and make final task-level decisions

Subagent Registry

SubagentPathPurpose
critique-analyzer./subagents/critique-analyzer.mdReads planning artifacts, consults the Decisions Log on every run, verifies the real codebase, searches the web, writes the critique artifact, and returns a concise verdict plus artifact path
question-manifest-builder./subagents/question-manifest-builder.mdReads the task plan plus the critique report and returns an ordered manifest of what to ask now, what to defer, and what is no longer relevant
decision-recorder./subagents/decision-recorder.mdWrites clarification artifacts, updates the main task plan, creates per-task decisions files when needed, and validates the result

How This Skill Works

Keep only these items inline while the skill is running:

  • The current manifest item
  • The developer's response
  • The accumulated decision list
  • The RE_PLAN_NEEDED flag
  • The BLOCKERS_PRESENT flag
  • The active critique artifact path

Everything else comes from delegated subagents through concise verdicts, manifest rows, and artifact paths. The manifest is the source of truth for what gets asked once execution starts, but critique-analyzer is the source of truth for whether a concern still needs to be raised at all in the current run.

MODE=upfront is the plan-wide clarification pass and MODE=critique is the per-task clarification pass just before execution. The mode names, inputs, and artifact paths are the runtime contract; any parent-workflow phase numbers are outside this skill's contract.

On retries or later iterations, re-dispatch each subagent with the current artifact paths and inputs. Do not treat prior subagent output as authoritative state once the underlying artifacts or decisions have changed.

Manifest IDs and wording can drift between iterations. Because of that, critique-analyzer must re-read the Decisions Log every run and decide by substance whether a candidate question has already been answered. Do not leave that judgment to Stage 3.

Run the workflow in this order:

  1. Stage 1 Load guidance: load the design-thinking reference and the current mode's playbook.
  2. Stage 2 Analyze artifacts: dispatch critique-analyzer to read artifacts, consult the current Decisions Log, inspect the codebase, search the web, and write the critique artifact. Always include PRIOR_DECISIONS_FILE and PRIOR_DECISIONS_KIND, even on ITERATION=1.
  3. Stage 3 Build manifest: dispatch question-manifest-builder with the critique artifact path and the plan path to build the ordered manifest. In MODE=critique, also include TASK_NUMBER and CURRENT_TASK_ARTIFACTS. If the manifest returns Questions now: 0, treat that as a valid no-op and skip directly to Stage 5 without emitting a placeholder prompt.
  4. Stage 4 Clarify inline: walk the manifest one question at a time inline, deciding what to confirm, revise, defer, or block. Carry each manifest Item ID unchanged into the decision list so later recording and plan annotations stay traceable.
  5. Stage 5 Record decisions: dispatch decision-recorder with the resolved decisions and let it update the workflow artifacts plus validate the result. Include ITERATION and IMPLEMENTATION_UPDATES when present. In MODE=upfront, also include DEFERRED_QUESTIONS. In MODE=critique, also include TASK_NUMBER, TASK_TITLE, RESOLVED_IRRELEVANT, and any new DEFERRED_QUESTIONS created during the discussion.

The inline questioning loop uses two reasoning patterns:

  • Model A — Socratic. Used only for Tier 3 problem-framing hard gates. The developer answers first, then sees the critique.
  • Model B — evaluate the reasoning. Used for all other items. Present the original decision, the critique, and ask the developer whether the reasoning holds up.

Reference Loading

Read ./references/design-thinking-mindset.md first for both modes.

Then load only the mode-specific playbook for the active run:

ModeReference fileWhen to load
upfront./references/upfront-mode.mdDuring Stage 1, before the plan-wide clarification run starts
critique./references/critique-mode.mdDuring Stage 1, before the task-level clarification run starts

Behavioral Guardrails

  1. Ask one question per message.
  2. Ask only from the manifest; if a new item emerges, add it before asking it.
  3. Defer future-task questions instead of speculating about them now.
  4. Be direct about shallow thinking on Tier 3 items, but keep the tone mentor-like.
  5. Present every critique item; do not silently accept a subagent recommendation.
  6. Respect skip only for Tier 2 items. Tier 3 hard gates cannot be skipped. Tier definitions come from ./subagents/critique-analyzer-rubric.md.
  7. When the interface supports structured choices, use them for discrete options; otherwise use numbered options.
  8. Keep question blocks scannable. Use tables or diagrams only when they clarify a real trade-off.

Escalation

Expect parseable verdicts from subagents and route them like this:

SourceVerdicts to expectOrchestrator action
critique-analyzerCRITIQUE: FAILStop and surface the required Reason: line to the user
critique-analyzerCRITIQUE: WARNContinue only if the missing context does not invalidate the critique
question-manifest-builderMANIFEST: BLOCKED or MANIFEST: FAILStop and surface the manifest issue
question-manifest-builderMANIFEST: WARNContinue, but mention what was omitted or guessed
decision-recorderRECORDING: BLOCKED or RECORDING: ERRORStop and ask the user how to proceed
decision-recorderRECORDING: WARNPresent the warnings in the final summary and continue

Example

<example>
Input: TICKET_KEY=JNS-6065, MODE=upfront, ITERATION=1

1. Read `./references/design-thinking-mindset.md`
2. Read `./references/upfront-mode.md`
3. Dispatch `critique-analyzer` with the plan file, stage artifacts, and
   `docs/JNS-6065-upfront-critique.md`, plus `docs/JNS-6065-tasks.md` as
   `PRIOR_DECISIONS_FILE` and `PRIOR_DECISIONS_KIND=main-log`
4. Receive:
   CRITIQUE: PASS
   Ticket: JNS-6065 | Mode: upfront | Task: -
   Artifact: docs/JNS-6065-upfront-critique.md

   ## Critique Summary

   - Problem-framing items: 2
   - Technology critique items: 3
   - User-impact items: 0
5. Dispatch `question-manifest-builder` with
   `docs/JNS-6065-upfront-critique.md` and `docs/JNS-6065-tasks.md`
6. Receive:
   MANIFEST: PASS
   Ticket: JNS-6065 | Mode: upfront | Task: -
   Task title: -
   Questions now: 8 | Deferred: 4 | Irrelevant: 1
7. Walk the 8 questions one at a time
8. Dispatch `decision-recorder` with resolved decisions and deferred items
9. Receive:
   RECORDING: PASS
   Ticket: JNS-6065 | Mode: upfront | Task: -

   ## Recording Summary

   ### Files Updated

   - `docs/JNS-6065-tasks.md`

   ### Counts

   - Decisions recorded: 8
   - Deferred questions tagged: 4
   - Questions marked irrelevant: 0
   - Implementation notes updated: 1

   ### Validation

   - PASS
10. Present final summary:
    Critique artifact: docs/JNS-6065-upfront-critique.md
    Files updated: docs/JNS-6065-tasks.md
    RE_PLAN_NEEDED: true
    BLOCKERS_PRESENT: false
</example>
<example>
Input: TICKET_KEY=acme-app-42, MODE=critique, TASK_NUMBER=3, ITERATION=2

1. Read `./references/design-thinking-mindset.md`
2. Read `./references/critique-mode.md`
3. Dispatch `critique-analyzer` with the task artifacts and
   `docs/acme-app-42-task-3-critique.md`, plus
   `docs/acme-app-42-task-3-decisions.md` as `PRIOR_DECISIONS_FILE` and
   `PRIOR_DECISIONS_KIND=per-task`
4. Receive:
   CRITIQUE: PASS
   Ticket: acme-app-42 | Mode: critique | Task: 3
   Artifact: docs/acme-app-42-task-3-critique.md
5. Dispatch `question-manifest-builder` with
   `docs/acme-app-42-task-3-critique.md`,
   `docs/acme-app-42-tasks.md`, and `CURRENT_TASK_ARTIFACTS`
6. Receive:
   MANIFEST: BLOCKED
   Reason: docs/acme-app-42-task-3-test-spec.md is missing
7. Stop clarification and present final summary:
   Critique artifact: docs/acme-app-42-task-3-critique.md
   Files updated: -
   RE_PLAN_NEEDED: false
   BLOCKERS_PRESENT: true
   Blocking verdict: MANIFEST: BLOCKED
   Reason: docs/acme-app-42-task-3-test-spec.md is missing
</example>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.02%
按下载量换算148

Claude

30.42%
按下载量换算129

Cursor

20.33%
按下载量换算86

Gemini CLI

10.13%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills