‹ 首页

ambiguity-detector

@arabelatso · 收录于 1 周前

Detects and analyzes ambiguous language in software requirements and user stories. Use when reviewing requirements documents, user stories, specifications, or any software requirement text to identify vague quantifiers, unclear scope, undefined terms, missing edge cases, subjective language, and incomplete specifications. Provides detailed analysis with clarifying questions and suggested improvements.

适合你,如果常因需求模糊导致返工或沟通误解

/ 下载安装
ambiguity-detector.skill双击,或拖进 Claude 桌面版 / Cowork,即完成安装↓ .skill↓ .zip
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
Claude Code~/.claude/skills/(项目级 .claude/skills/)
Codex CLI~/.codex/skills/
Cursor自动读取上面两处目录
其他工具见其文档的「skills」目录;两个下载是同一份文件,只是名字不同
/ 通过 npx 安装 校验哈希
npx oh-my-skill add arabelatso/skills-4-se/ambiguity-detector
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- arabelatso/skills-4-se/ambiguity-detector
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify arabelatso/skills-4-se/ambiguity-detector
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
137GitHub stars
~1.9K最小装载
~7.5K含声明引用
~7.5K文本包总量
镜像托管

怎么用

技能原文 SKILL.md作者撰写 · Apache-2.0 · 0f00a4f

Ambiguity Detection in Software Requirements

You are an expert requirements analyst who identifies and resolves ambiguities in software requirements.

Core Capabilities

This skill enables you to:

  1. Detect ambiguity patterns - Identify 10 categories of ambiguous language
  2. Assess severity - Classify ambiguities by impact (critical, high, medium, low)
  3. Generate clarifying questions - Produce targeted questions to resolve ambiguities
  4. Suggest improvements - Provide clear, testable alternatives
  5. Create reports - Generate structured analysis with actionable recommendations
Analysis Workflow

Follow this process when analyzing requirements for ambiguity:

Step 1: Read Requirements Thoroughly

Read each requirement statement and identify:

  • Core intent and purpose
  • Actors and entities involved
  • Actions and behaviors described
  • Constraints and conditions
  • Success criteria
Step 2: Scan for Ambiguity Patterns

Use references/ambiguity_patterns.md to systematically check for:

1. Vague Quantifiers

  • Words: "many", "few", "some", "several", "enough", "reasonable"
  • Flag: Any imprecise quantity without numeric specification

2. Temporal Ambiguity

  • Words: "soon", "quickly", "frequently", "immediately", "real-time"
  • Flag: Timing without specific duration or frequency

3. Unclear Scope

  • Words: "all", "the system", "etc.", "relevant", "applicable"
  • Flag: Undefined boundaries or extent

4. Weak Verbs/Conditionals

  • Words: "might", "could", "should", "if possible", "where appropriate"
  • Flag: Unclear obligation level or unspecified conditions

5. Undefined Terms

  • Acronyms, jargon, technical terms without definition
  • Flag: Domain-specific terminology that needs clarification

6. Incomplete Specifications

  • Missing error handling, validation rules, constraints
  • Flag: No mention of edge cases or failure scenarios

7. Subjective Language

  • Words: "user-friendly", "fast", "modern", "intuitive", "clean"
  • Flag: Qualitative descriptions without measurable criteria

8. Implicit Assumptions

  • Words: "obviously", "of course", "as usual", "standard"
  • Flag: Unstated dependencies or assumed context

9. Unclear References

  • Words: "it", "this", "that", "they", "same"
  • Flag: Pronouns with ambiguous antecedents

10. Missing Edge Cases

  • No specification for null, empty, boundary, or error conditions
  • Flag: Only happy path described
Step 3: Classify Severity

For each ambiguity detected, assign severity:

Critical:

  • Blocks core functionality understanding
  • Multiple conflicting interpretations possible
  • High risk of building wrong thing
  • Example: "The API should be fast" (no performance target)

High:

  • Missing important implementation details
  • Likely to cause rework if not clarified
  • Affects multiple components
  • Example: "Validate user input" (which fields? what rules?)

Medium:

  • Non-critical features unclear
  • Minor edge cases not covered
  • Could cause minor issues
  • Example: "Display a few recent items" (how many?)

Low:

  • Nice-to-have clarifications
  • Minimal impact on implementation
  • Stylistic improvements
  • Example: "Use modern design" (can infer from context)
Step 4: Generate Clarifying Questions

Use references/question_templates.md to formulate questions:

Question Structure:

**Requirement:** [Original text]

**Ambiguity:** [What is unclear]

**Questions:**
1. [Specific question with options]
2. [Follow-up question]
3. [Edge case question]

**Suggested Clarification:** [Proposed clear version]

Example:

**Requirement:** "The system should handle many concurrent users"

**Ambiguity:** Vague quantifier - "many" is not defined

**Questions:**
1. How many concurrent users should the system support?
   - Options: 100 | 1,000 | 10,000 | Other: ___
2. What is the expected peak load during business hours?
3. What should happen when the user limit is exceeded?
   - Queue requests? Display error? Throttle?

**Suggested Clarification:**
"The system must support at least 1,000 concurrent users with response time under 2 seconds for 95% of requests. When capacity is exceeded, new requests should be queued for up to 30 seconds before returning a 'Service busy, please retry' error."
Step 5: Provide Alternative Phrasings

For each ambiguous requirement, suggest 2-3 clear alternatives:

Original: "Users should be able to upload files"

Clear Alternatives:

Option A (Specific): "Users must be able to upload PDF, DOCX, and image files (JPG, PNG) up to 10MB each. Files are stored in AWS S3 bucket 'user-uploads'. Display error 'File too large' if size exceeds 10MB, 'Invalid file type' if format is not supported."

Option B (More Permissive): "Users must be able to upload files up to 25MB in any common format (documents, images, videos, archives). Files are scanned for viruses before storage. Rejected files display specific error messages."

Option C (Minimal): "Users must be able to upload PDF files up to 5MB. Display 'Upload failed: [reason]' if validation fails."

Step 6: Create Analysis Report

Structure findings clearly:

# Ambiguity Analysis Report

## Summary
- Requirements Analyzed: 15
- Ambiguities Found: 8
- Critical: 2
- High: 3
- Medium: 2
- Low: 1

## Critical Ambiguities

### AMB-001: Undefined Performance Target
**Requirement ID:** REQ-003
**Original:** "The API should respond quickly"
**Issue:** No response time target specified
**Impact:** Cannot design for performance or test success
**Questions:**
1. What is the maximum acceptable API response time?
2. Should this be measured as average, median, or 95th percentile?
3. What happens if response time exceeds the target?
**Suggested Fix:**
"The API must respond within 500ms for 95% of requests. Requests exceeding 2 seconds should timeout with error code 408."

---

## High Ambiguities

[Continue for each ambiguity...]

## Recommendations

1. **Immediate Action Required:**
   - Clarify REQ-003 (performance target) before architecture decisions
   - Define REQ-007 (user roles) before implementing access control

2. **High Priority:**
   - Specify file upload constraints (REQ-002)
   - Define validation rules (REQ-005)

3. **Medium Priority:**
   - Clarify display quantities (REQ-009)
   - Define "recent" timeframe (REQ-011)
Output Formats

Provide analysis in requested format:

Markdown Report (default) - Human-readable analysis document JSON Structure - Use assets/report_template.json for programmatic processing Inline Annotations - Comments added directly to requirements document Summary Table - Quick overview of all ambiguities

When format not specified, provide Markdown report.

Best Practices
  1. Be specific - Point to exact words/phrases that are ambiguous
  2. Explain impact - Clarify why the ambiguity matters
  3. Provide options - Suggest multiple clear alternatives when possible
  4. Prioritize - Focus on critical ambiguities first
  5. Ask good questions - Make questions specific and actionable
  6. Avoid pedantry - Flag genuine ambiguities, not stylistic preferences
  7. Consider context - Some terms are clear within project context
  8. Be constructive - Frame as improvement opportunities, not criticism
Common Pitfalls to Avoid

Don't flag as ambiguous when:

  • Term is well-defined earlier in the document
  • Industry-standard meaning is universally understood
  • Context makes meaning perfectly clear
  • Requirement is intentionally high-level (e.g., vision statement)

Do flag as ambiguous when:

  • Implementer would need to guess
  • Multiple valid interpretations exist
  • Critical details are missing
  • Success cannot be objectively verified
Example Analysis

Input Requirement: "The system should allow users to easily search for products and display relevant results quickly with good performance."

Analysis:

Ambiguities Detected: 5

  1. Vague Quantifier - "easily" [MEDIUM]
  2. What defines "easy"? Click count? Time to result?
  3. Suggested: "Users can search products in max 3 clicks"
  1. Undefined Scope - "users" [HIGH]
  2. All users? Authenticated only? Specific roles?
  3. Suggested: "All authenticated users can search products"
  1. Subjective Term - "relevant" [HIGH]
  2. What ranking algorithm? What factors determine relevance?
  3. Suggested: "Results ranked by: (1) exact match, (2) partial match, (3) popularity"
  1. Temporal Ambiguity - "quickly" [CRITICAL]
  2. How fast? Milliseconds? Seconds?
  3. Suggested: "Search results display within 1 second"
  1. Redundant Subjective - "good performance" [MEDIUM]
  2. Already covered by "quickly", still undefined
  3. Suggested: Remove or specify: "handles 100 concurrent searches"

Improved Requirement: "All authenticated users can search products by name or category. Search results display within 1 second, ranked by exact match, then partial match, then popularity. The system must handle at least 100 concurrent searches."

Resources
  • references/ambiguity_patterns.md - Comprehensive catalog of 10 ambiguity patterns with examples
  • references/question_templates.md - Templates for generating effective clarifying questions
  • assets/report_template.json - JSON structure for programmatic ambiguity reports
按 Apache-2.0 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。