Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

assumption-mapping假设映射

Agent Skill

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

总安装

494

周安装

21

GitHub Stars

4

下载量

173
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/abhsin/designskills --skill assumption-mapping

简介

assumption-mapping 提取项目中的隐藏假设,并按优先级排序验证顺序。

  • 适用于新项目启动或不确定性较高的工作场景。
  • 使用结构化问卷引导用户列出“必须为真”的前提条件。
  • 输出假设地图与测试建议,降低 build-first 风险。
  • 特别适合创意阶段的产品或功能探索。assumption-mapping 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Assumption Mapping

Surface hidden assumptions and prioritize which ones to validate before building.

When to Trigger

  • User is starting something new
  • User expresses uncertainty ("I think...", "probably...", "should work...")
  • User is about to invest significant effort
  • User mentions building without mentioning validation
  • User asks "what should I test first?"

Quick Start

Ask the user:

  1. "What are you building and for whom?"
  2. "What needs to be true for this to succeed?"

Then run the assumption extraction workflow below.

Core Workflow

Assumption Mapping Progress:
- [ ] Step 1: Extract assumptions from conversation
- [ ] Step 2: Categorize by type
- [ ] Step 3: Score risk and uncertainty
- [ ] Step 4: Prioritize for validation
- [ ] Step 5: Suggest validation methods

Step 1: Extract Assumptions

Listen for assumption signals in what the user says:

Signal phraseHidden assumption
"Users want..."Desirability assumption
"We can build..."Feasibility assumption
"People will pay..."Viability assumption
"It's easy to..."Complexity assumption
"Everyone knows..."Knowledge assumption
"They'll figure out..."Usability assumption

Extract 5-10 assumptions. Frame each as a testable statement:

Bad: "Users like simple things" Good: "Users will complete onboarding in under 2 minutes without help"

Step 2: Categorize Assumptions

Assign each assumption to one category:

CategoryQuestion it answers
DesirabilityDo people want this?
FeasibilityCan we build this?
ViabilityCan this sustain itself?
UsabilityCan people use this?
EthicalShould we build this?

Step 3: Score Each Assumption

Rate each assumption on two dimensions (1-5 scale):

Impact: If wrong, how badly does it hurt the project?

  • 1 = Minor inconvenience
  • 5 = Project fails completely

Uncertainty: How confident are we this is true?

  • 1 = We have strong evidence
  • 5 = Pure guess

Step 4: Prioritize

Create a 2x2 priority matrix:

                    HIGH IMPACT
                         │
     ┌───────────────────┼───────────────────┐
     │                   │                   │
     │   VALIDATE LATER  │  VALIDATE FIRST   │
     │   (Low risk)      │  (Critical)       │
     │                   │                   │
LOW  ├───────────────────┼───────────────────┤ HIGH
UNCERTAINTY              │              UNCERTAINTY
     │                   │                   │
     │   SKIP            │  MONITOR          │
     │   (Safe)          │  (Watch for       │
     │                   │   signals)        │
     │                   │                   │
     └───────────────────┼───────────────────┘
                         │
                    LOW IMPACT

Top-right quadrant = validate before building

Step 5: Suggest Validation Methods

For each critical assumption, suggest a lightweight validation:

Assumption typeFast validation (hours)Deeper validation (days)
Desirability5 user interviewsLanding page test
FeasibilityTechnical spikePrototype
ViabilityCompetitor pricing researchWillingness-to-pay interviews
Usability3-person hallway testUsability study

See references/validation-methods.md for detailed methods.

Output Template

Automatically save the output to design/03-assumption-mapping.md using the Write tool while presenting findings in this format:

## Assumption Map for [Project Name]

### Critical Assumptions (Validate First)
| # | Assumption | Type | Impact | Uncertainty | Suggested Test |
|---|------------|------|--------|-------------|----------------|
| 1 | [statement] | [type] | [1-5] | [1-5] | [method] |

### Secondary Assumptions (Validate Later)
[Same table format]

### Safe Assumptions (Monitor)
[Bulleted list]

### Recommended Next Steps
1. [First validation to run]
2. [Second validation to run]

Adaptive Behavior

If user is new to assumption mapping:

  • Explain briefly why we do this (1 sentence)
  • Guide them through extraction with examples
  • Keep the output simple

If user is familiar:

  • Skip explanations
  • Jump to extraction
  • Offer the full matrix output

Gauge familiarity by asking: "Have you mapped assumptions before, or should I walk you through it?"

Handoff

Suggest next steps:

"Use this map to prioritize validation tests before full development. Want to proceed with /solution-scoping or test critical assumptions first?"

Note: File is automatically saved to design/03-assumption-mapping.md for context preservation.

Integration Points

This skill works well before:

  • problem-framing — if problem isn't clear yet
  • validation — to test the critical assumptions identified here
  • ideation — to generate solutions once assumptions are validated

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.06%
按下载量换算52

Gemini CLI

21.5%
按下载量换算37

Antigravity

19.54%
按下载量换算34

Codex

11.18%
按下载量换算19

OpenCode

8.28%
按下载量换算14

windsurf

3.46%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills