/six-thinking-hats
Apply Edward de Bono's Six Thinking Hats methodology to software testing for comprehensive quality analysis. Use when designing test strategies, conducting test retrospectives, analyzing test failures, evaluating testing approaches, or facilitating testing discussions. Each hat
$ npx -y skills add proffesor-for-testing/agentic-qe --skill six-thinking-hats --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition โ
- You can call itInvoke it directly when you want it.
- Slash command
/six-thinking-hats
Context preview
The summary Claude sees to decide when to auto-load this skill.
Apply Edward de Bono's Six Thinking Hats methodology to software testing for comprehensive quality analysis. Use when designing test strategies, conducting test retrospectives, analyzing test failures, evaluating testing approaches, or facilitating testing discussions. Each hat
SKILL.md
six-thinking-hats.SKILL.mdname: six-thinking-hats
description: "Apply Edward de Bono's Six Thinking Hats methodology to software testing for comprehensive quality analysis. Use when designing test strategies, conducting test retrospectives, analyzing test failures, evaluating testing approaches, or facilitating testing discussions. Each hat provides a distinct testing perspective: facts (White), risks (Black), benefits (Yellow), creativity (Green), emotions (Red), and process (Blue)."
category: methodology
priority: medium
tokenEstimate: 1100
agents: [qe-quality-analyzer, qe-regression-risk-analyzer, qe-test-generator]
implementation_status: optimized
optimization_version: 1.0
last_optimized: 2025-12-03
dependencies: []
quick_reference_card: true
tags: [thinking, methodology, decision-making, collaboration, analysis]
trust_tier: 0
validation:
Six Thinking Hats for Testing
<default_to_action> When analyzing testing decisions: 1. DEFINE focus clearly (specific testing question) 2. APPLY each hat sequentially (5 min each) 3. DOCUMENT insights per hat 4. SYNTHESIZE into action plan
**Quick Hat Rotation (30 min):**
๐ค WHITE (5 min) - Facts only: metrics, data, coverage
โค๏ธ RED (3 min) - Gut feelings (no justification needed)
๐ค BLACK (7 min) - Risks, gaps, what could go wrong
๐ YELLOW (5 min) - Strengths, opportunities, what works
๐ GREEN (7 min) - Creative ideas, alternatives
๐ต BLUE (3 min) - Action plan, next steps
**Example for "API Test Strategy":**
- ๐ค 47 endpoints, 30% coverage, 12 integration tests
- โค๏ธ Anxious about security, confident on happy paths
- ๐ค No auth tests, rate limiting untested, edge cases missing
- ๐ Good docs, CI/CD integrated, team experienced
- ๐ Contract testing with Pact, chaos testing, property-based
- ๐ต Security tests first, contract testing next sprint
</default_to_action>
Quick Reference Card
The Six Hats
| Hat | Focus | Key Question | |-----|-------|--------------| | ๐ค **White** | Facts & Data | What do we KNOW? | | โค๏ธ **Red** | Emotions | What do we FEEL? | | ๐ค **Black** | Risks | What could go WRONG? | | ๐ **Yellow** | Benefits | What's GOOD? | | ๐ **Green** | Creativity | What ELSE could we try? | | ๐ต **Blue** | Process | What should we DO? |
When to Use Each Hat
| Hat | Use For | |-----|---------| | ๐ค White | Baseline metrics, test data inventory | | โค๏ธ Red | Team confidence check, quality gut feel | | ๐ค Black | Risk assessment, gap analysis, pre-mortems | | ๐ Yellow | Strengths audit, quick win identification | | ๐ Green | Test innovation, new approaches, brainstorming | | ๐ต Blue | Strategy planning, retrospectives, decision-making |
---
Hat Details
๐ค White Hat - Facts & Data
**Output: Quantitative testing baseline**
Questions:
- What test coverage do we have?
- What is our pass/fail rate?
- What environments exist?
- What is our defect history?
Example Output:
Coverage: 67% line, 45% branch
Test Suite: 1,247 unit, 156 integration, 23 E2E
Execution Time: Unit 3min, Integration 12min, E2E 45min
Defects: 23 open (5 critical, 8 major, 10 minor)
๐ค Black Hat - Risks & Cautions
**Output: Comprehensive risk assessment**
Questions:
- What could go wrong in production?
- What are we NOT testing?
- What assumptions might be wrong?
- Where are the coverage gaps?
HIGH RISKS:
- No load testing (production outage risk)
- Auth edge cases untested (security vulnerability)
- Database failover never tested (data loss risk)
๐ Yellow Hat - Benefits & Optimism
**Output: Strengths and opportunities**
Questions:
- What's working well?
- What strengths can we leverage?
- What quick wins are available?
STRENGTHS:
- Strong CI/CD pipeline
- Team expertise in automation
- Stakeholders value quality
QUICK WINS:
- Add smoke tests (reduce incidents)
- Automate manual regression (save 2 days/release)
๐ Green Hat - Creativity
**Output: Innovative testing ideas**
Questions:
- How else could we test this?
- What if we tried something completely different?
- What emerging techniques could we adopt?
IDEAS:
1. AI-powered test generation
2. Chaos engineering for resilience
3. Property-based testing for edge cases
4. Production traffic replay
5. Synthetic monitoring
โค๏ธ Red Hat - Emotions
**Output: Team gut feelings (NO justification needed)**
Questions:
- How confident do you feel about quality?
- What makes you anxious?
- What gives you confidence?
FEELINGS:
- Confident: Unit tests, API tests
- Anxious: Authentication flow, payment processing
- Frustrated: Flaky tests, slow E2E suite
๐ต Blue Hat - Process
**Output: Action plan with owners and timelines**
Questions:
- What's our strategy?
- How should we prioritize?
- What's the next step?
PRIORITIZED ACTIONS:
1. [Critical] Address security testing gap - Owner: Alice
2. [High] Implement contract testing - Owner: Bob
3. [Medium] Reduce flaky tests - Owner: Carol
---
Session Templates
Solo Session (30 min)
# Six Hats Analysis: [Topic]
## ๐ค White Hat (5 min)
Facts: [list metrics, data]
## โค๏ธ Red Hat (3 min)
Feelings: [gut reactions, no justification]
## ๐ค Black Hat (7 min)
Risks: [what could go wrong]
## ๐ Yellow Hat (5 min)
Strengths: [what works, opportunities]
## ๐ Green Hat (7 min)
Ideas: [creative alternatives]
## ๐ต Blue Hat (3 min)
Actions: [prioritized next steps]
Team Session (60 min)
- Each hat: 10 minutes
- Rotate through hats as group
- Document on shared whiteboard
- Blue Hat synthesizes at end
---
Agent Integration
// Risk-focused analysis (Black Hat)
const risks = await Task("Identify Risks", {
scope: 'payment-module',
perspective: 'black-hat',
includeMitigation: true
}, "qe-regression-risk-analyzer");
// Creative test approaches (Green Hat)
const ideas = await Task("Generate Test Ideas", {
feature: 'new-auth-system',
perspective: 'green-hat',
includeEmergingTechniques: true
}, "qe-test-generator");
// Comprehensive analysisRead more
name: six-thinking-hats description: "Apply Edward de Bono's Six Thinking Hats methodology to software testing for comprehensive quality analysis. Use when designing test strategies, conducting test retrospectives, analyzing test failures, evaluating testing approaches, or facilitating testing discussions. Each hat provides a distinct testing perspective: facts (White), risks (Black), benefits (Yellow), creativity (Green), emotions (Red), and process (Blue)." category: methodology priority: medium tokenEstimate: 1100 agents: [qe-quality-analyzer, qe-regression-risk-analyzer, qe-test-generator] implementation_status: optimized optimization_version: 1.0 last_optimized: 2025-12-03 dependencies: [] quick_reference_card: true tags: [thinking, methodology, decision-making, collaboration, analysis] trust_tier: 0 validation:
Six Thinking Hats for Testing
<default_to_action> When analyzing testing decisions: 1. DEFINE focus clearly (specific testing question) 2. APPLY each hat sequentially (5 min each) 3. DOCUMENT insights per hat 4. SYNTHESIZE into action plan
**Quick Hat Rotation (30 min):**
๐ค WHITE (5 min) - Facts only: metrics, data, coverage โค๏ธ RED (3 min) - Gut feelings (no justification needed) ๐ค BLACK (7 min) - Risks, gaps, what could go wrong ๐ YELLOW (5 min) - Strengths, opportunities, what works ๐ GREEN (7 min) - Creative ideas, alternatives ๐ต BLUE (3 min) - Action plan, next steps
**Example for "API Test Strategy":**
- ๐ค 47 endpoints, 30% coverage, 12 integration tests
- โค๏ธ Anxious about security, confident on happy paths
- ๐ค No auth tests, rate limiting untested, edge cases missing
- ๐ Good docs, CI/CD integrated, team experienced
- ๐ Contract testing with Pact, chaos testing, property-based
- ๐ต Security tests first, contract testing next sprint
</default_to_action>
Quick Reference Card
The Six Hats
| Hat | Focus | Key Question | |-----|-------|--------------| | ๐ค **White** | Facts & Data | What do we KNOW? | | โค๏ธ **Red** | Emotions | What do we FEEL? | | ๐ค **Black** | Risks | What could go WRONG? | | ๐ **Yellow** | Benefits | What's GOOD? | | ๐ **Green** | Creativity | What ELSE could we try? | | ๐ต **Blue** | Process | What should we DO? |
When to Use Each Hat
| Hat | Use For | |-----|---------| | ๐ค White | Baseline metrics, test data inventory | | โค๏ธ Red | Team confidence check, quality gut feel | | ๐ค Black | Risk assessment, gap analysis, pre-mortems | | ๐ Yellow | Strengths audit, quick win identification | | ๐ Green | Test innovation, new approaches, brainstorming | | ๐ต Blue | Strategy planning, retrospectives, decision-making |
---
Hat Details
๐ค White Hat - Facts & Data
**Output: Quantitative testing baseline**
Questions:
- What test coverage do we have?
- What is our pass/fail rate?
- What environments exist?
- What is our defect history?
Example Output: Coverage: 67% line, 45% branch Test Suite: 1,247 unit, 156 integration, 23 E2E Execution Time: Unit 3min, Integration 12min, E2E 45min Defects: 23 open (5 critical, 8 major, 10 minor)
๐ค Black Hat - Risks & Cautions
**Output: Comprehensive risk assessment**
Questions:
- What could go wrong in production?
- What are we NOT testing?
- What assumptions might be wrong?
- Where are the coverage gaps?
HIGH RISKS: - No load testing (production outage risk) - Auth edge cases untested (security vulnerability) - Database failover never tested (data loss risk)
๐ Yellow Hat - Benefits & Optimism
**Output: Strengths and opportunities**
Questions:
- What's working well?
- What strengths can we leverage?
- What quick wins are available?
STRENGTHS: - Strong CI/CD pipeline - Team expertise in automation - Stakeholders value quality QUICK WINS: - Add smoke tests (reduce incidents) - Automate manual regression (save 2 days/release)
๐ Green Hat - Creativity
**Output: Innovative testing ideas**
Questions:
- How else could we test this?
- What if we tried something completely different?
- What emerging techniques could we adopt?
IDEAS: 1. AI-powered test generation 2. Chaos engineering for resilience 3. Property-based testing for edge cases 4. Production traffic replay 5. Synthetic monitoring
โค๏ธ Red Hat - Emotions
**Output: Team gut feelings (NO justification needed)**
Questions:
- How confident do you feel about quality?
- What makes you anxious?
- What gives you confidence?
FEELINGS: - Confident: Unit tests, API tests - Anxious: Authentication flow, payment processing - Frustrated: Flaky tests, slow E2E suite
๐ต Blue Hat - Process
**Output: Action plan with owners and timelines**
Questions:
- What's our strategy?
- How should we prioritize?
- What's the next step?
PRIORITIZED ACTIONS: 1. [Critical] Address security testing gap - Owner: Alice 2. [High] Implement contract testing - Owner: Bob 3. [Medium] Reduce flaky tests - Owner: Carol
---
Session Templates
Solo Session (30 min)
# Six Hats Analysis: [Topic] ## ๐ค White Hat (5 min) Facts: [list metrics, data] ## โค๏ธ Red Hat (3 min) Feelings: [gut reactions, no justification] ## ๐ค Black Hat (7 min) Risks: [what could go wrong] ## ๐ Yellow Hat (5 min) Strengths: [what works, opportunities] ## ๐ Green Hat (7 min) Ideas: [creative alternatives] ## ๐ต Blue Hat (3 min) Actions: [prioritized next steps]
Team Session (60 min)
- Each hat: 10 minutes
- Rotate through hats as group
- Document on shared whiteboard
- Blue Hat synthesizes at end
---
Agent Integration
// Risk-focused analysis (Black Hat)
const risks = await Task("Identify Risks", {
scope: 'payment-module',
perspective: 'black-hat',
includeMitigation: true
}, "qe-regression-risk-analyzer");
// Creative test approaches (Green Hat)
const ideas = await Task("Generate Test Ideas", {
feature: 'new-auth-system',
perspective: 'green-hat',
includeEmergingTechniques: true
}, "qe-test-generator");
// Comprehensive analysisAI-powered quality engineering agents that generate tests, find coverage gaps, detect flaky tests, and learn your codebase patterns โ across 11 coding agent platforms.
Repo: proffesor-for-testing/agentic-qe
Other skills on agentic-qe.
- /a11y-ally
Use when running comprehensive WCAG accessibility audits with axe-core + pa11y + Lighthouse, generating context-aware remediation, or testing video accessibility. Supports 3-tier browser cascade with graceful degradation.
Open skill - /accessibility-testing
WCAG 2.2 compliance testing, screen reader validation, and inclusive design verification. Use when ensuring legal compliance (ADA, Section 508), testing for disabilities, or building accessible applications for 1 billion disabled users globally.
Open skill - /agentdb-advanced
Master advanced AgentDB features including QUIC synchronization, multi-database management, custom distance metrics, hybrid search, and distributed systems integration. Use when building distributed AI systems, multi-agent coordination, or advanced vector search applications.
Open skill - /agentdb-learning
Create and train AI learning plugins with AgentDB's 9 reinforcement learning algorithms. Includes Decision Transformer, Q-Learning, SARSA, Actor-Critic, and more. Use when building self-learning agents, implementing RL, or optimizing agent behavior through experience.
Open skill - /agentdb-memory-patterns
Implement persistent memory patterns for AI agents using AgentDB. Includes session memory, long-term storage, pattern learning, and context management. Use when building stateful agents, chat systems, or intelligent assistants.
Open skill - /agentdb-optimization
Optimize AgentDB performance with quantization (4-32x memory reduction), HNSW indexing (150x faster search), caching, and batch operations. Use when optimizing memory usage, improving search speed, or scaling to millions of vectors.
Open skill

