mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
- Core configuration files (CLAUDE.md, RULES.md, PERSONAS.md, MCP.md) - 17 slash commands for specialized workflows - 25 shared YAML resources for advanced configurations - Installation script for global deployment - 9 cognitive personas for specialized thinking modes - MCP integration patterns for intelligent tool usage - Token economy and ultracompressed mode support 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
826 B
YAML
40 lines
826 B
YAML
# Ambiguity Check Patterns
|
|
|
|
## Integration
|
|
|
|
```yaml
|
|
Commands:
|
|
Include: shared/ambiguity-check.yml
|
|
Check: ambiguity_level() before execute
|
|
Block: CRITICAL ambiguity
|
|
|
|
Detection:
|
|
Keywords: See RULES.md § Ambiguity
|
|
Missing: Path|Scope|Criteria
|
|
Risk: Combine w/ operation risk
|
|
|
|
Response:
|
|
LOW: Proceed w/ assumption note
|
|
MEDIUM: Suggest interpretation+confirm
|
|
HIGH: Present options A/B/C
|
|
CRITICAL: Block until clarified
|
|
```
|
|
|
|
## Quick Checks
|
|
|
|
```yaml
|
|
Path Ambiguity:
|
|
"update config" → Which file?
|
|
"fix tests" → Which tests?
|
|
"deploy" → Which environment?
|
|
|
|
Scope Ambiguity:
|
|
"refactor" → Single file or module?
|
|
"optimize" → Speed or memory?
|
|
"add security" → What threats?
|
|
|
|
Action Ambiguity:
|
|
"make it work" → Define "work"
|
|
"fix the bug" → Which bug?
|
|
"improve" → What aspect?
|
|
``` |