Claude-skill-registry aico-pm-clarification
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/aico-pm-clarification" ~/.claude/skills/majiayu000-claude-skill-registry-aico-pm-clarification && rm -rf "$T"
manifest:
skills/data/aico-pm-clarification/SKILL.mdtags
source content
Requirement Clarification
⚠️ CRITICAL RULES - READ FIRST
- SEARCH FIRST: Always search
for related documents before asking questionsdocs/reference/pm/ - ONE QUESTION AT A TIME: Max 5 questions per session
- UPDATE DOCUMENTS: After clarification, update the relevant story/version files
Language Configuration
Before generating any content, check
aico.json in project root for language field to determine the output language. If not set, default to English.
Process
- Scan context: Check
for existing documentationdocs/reference/pm/ - Identify ambiguities: Categorize by type (scope, behavior, data, edge cases)
- Prioritize: Sort by impact: scope > security > UX > technical
- Ask ONE question at a time: Max 5 questions per session
- Provide recommendation: Each question should have a recommended option with reasoning
- Update docs: Document each answer immediately
Question Format
### Question [N]: [Topic] **Context**: [Quote relevant requirement] **Ambiguity**: [What's unclear] **Options**: | Option | Description | Implications | |--------|-------------|--------------| | A | [First option] | [Trade-offs] | | B | [Second option] | [Trade-offs] | **Recommended**: [Option] because [reasoning]
Ambiguity Categories
| Category | Focus |
|---|---|
| Scope | What's included/excluded |
| Behavior | How feature should work |
| Data | What information is needed |
| Edge cases | Unusual scenarios |
| Error handling | Failure modes |
Key Rules
- ALWAYS ask ONE question per message, never batch
- MUST provide recommended option with reasoning for each question
- ALWAYS prioritize blocking issues (scope, security) over minor details
- Max 5 questions per clarification session
Common Mistakes
- ❌ Ask all questions at once → ✅ One at a time
- ❌ Open-ended questions → ✅ Multiple choice with recommendation
- ❌ Low-impact questions → ✅ Focus on blocking issues first