Skip to content
Testing
Skill

/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

From plugin
agentic-qe
436200 skills169 agents149 commands
Install
$ npx -y skills add proffesor-for-testing/agentic-qe --skill six-thinking-hats --agent claude-code

How 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.md
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 analysis
Read more
Ships withagentic-qe

AI-powered quality engineering agents that generate tests, find coverage gaps, detect flaky tests, and learn your codebase patterns โ€” across 11 coding agent platforms.

Get the whole plugin

Other skills on agentic-qe.