six-hats-skill

by juanalloVerified

A structured decision-debate skill for running Edward de Bono-style six hats sessions with an AI agent. It walks a topic through facts, intuition, upside, risk, alternatives, and final moderation so you get a practical recommendation instead of a loose brainstorm.

0
Stars
0
Forks
Python
Language
8/24/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/juanallo/six-hats-skill

Getting Started

Guides for using skills like six-hats-skill.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Six Hats Skill

A structured decision-debate skill for running Edward de Bono-style six hats sessions with an AI agent. It walks a topic through facts, intuition, upside, risk, alternatives, and final moderation so you get a practical recommendation instead of a loose brainstorm.

What It Does

The skill runs three sequential rounds using these roles:

  • White Hat: facts, known information, and unknowns
  • Red Hat: intuition, emotional reactions, and gut checks
  • Yellow Hat: benefits, upside, and reasons the idea could work
  • Black Hat: risks, objections, failure modes, and downsides
  • Green Hat: alternatives, reframes, and creative options
  • Blue Hat: moderation, synthesis, final recommendation, agreements, tensions, and next steps

The hats run in order so each perspective can build on the previous ones. Blue Hat moderates and synthesizes rather than contributing a normal debate statement during each round.

When To Use It

Use this skill when you want to pressure-test a decision, strategy, plan, architecture choice, product direction, or career move. It works best when the prompt is framed as a concrete decision or question.

Example prompts:

Run a six hats debate on whether we should migrate this app from REST to GraphQL.
Write the output to ./decisions.
Use six hats to evaluate whether I should keep working on frontend tooling or move to an AI company.
Save it in ./examples.

Examples

Below are completed debates plus screenshots of typical agent conversations when using this skill.

Career decision — frontend tooling vs. AI companies

Pressure-tests staying in frontend tooling versus moving toward an AI company: tradeoffs, risks, and synthesis.

Summary: A principal frontend engineer debates staying deep in Sass and CSS tooling versus joining the AI boom. White and Yellow underline strong demand for senior UI talent and upside in AI interfaces; Black warns about hype, startup churn, narrower “dashboard + chat” work, and interview pressure to prove AI literacy. Green breaks the binary (AI + frontend infra vendors, internal AI projects, positioning at the intersection). Red names fatigue with the old lane versus fear of chasing shiny objects. Across three rounds, Blue Hat lands on phased optionality—not an immediate pivot: ship a small AI-powered UI experiment to see how it feels, run a few exploratory interviews for real compensation and role data, talk openly with your current employer about AI-adjacent growth, then judge any offer on team, product, and day-to-day frontend work rather than the “AI company” label alone.

Conversation excerpt: career advice six hats session

Full markdown debate: examples/six-hats-career-advice.md

Technology direction — React in 2026

Explores React’s role, ecosystem tradeoffs, and strategic framing for frontend work in 2026.

Summary: The debate weighs React’s institutional advantages—talent pool, npm ecosystem, React 19, compiler maturity, RSC-driven bundle wins in content-heavy apps—against shared unease: a harder mental model, Next.js/Vercel coupling and roadmap risk, perceived migration churn, and how much benchmark gaps vs. fine-grained frameworks translate to users. Green repeatedly widens the frame (Rust compile-to-native options, server-first/live views, AI-written UI changing cost and mental models). Blue Hat’s recommendation is defensive maturity: React is still a reasonable default for many teams, but treat the stack as leverage you manage, not dogma—keep server/client boundaries explicit, avoid unnecessary vendor lock-in, instrument real performance, and stay mobile enough that ecosystem shifts do not trap you.

Conversation excerpt: React 2026 six hats session

Full markdown debate: examples/six-hats-react-2026.md

Installation

Clone this repository into the skills directory used by your agent runtime.

For Claude-style skills:

git clone https://github.com/juanallo/six-hats-skill ~/.claude/skills/six-hats

For agent skills loaded from ~/.agents/skills:

git clone https://github.com/juanallo/six-hats-skill ~/.agents/skills/six-hats

For Cursor personal skills, use Cursor's personal skill directory:

git clone https://github.com/juanallo/six-hats-skill ~/.cursor/skills/six-hats

If you already cloned the repository somewhere else, copy or symlink the whole directory so SKILL.md lives directly inside the final six-hats folder:

ln -s /path/to/six-hats-skill ~/.claude/skills/six-hats

The important directory shape is:

six-hats/
|-- SKILL.md
|-- README.md
|-- examples/
`-- scripts/

Usage

After installation, ask your agent for a "six hats" or "six hats debate" session. Include:

  1. The decision, plan, or question to debate.
  2. The output directory where the generated debate should be written.

The skill writes a markdown file named like:

debate-YYYYMMDD_HHMMSS.md

The generated file contains:

  • Final recommendation from Blue Hat
  • Key agreements across hats
  • Unresolved tensions
  • Suggested next steps
  • Three rounds of hat-by-hat debate
  • Raw debate data

Optional Script

scripts/six_hats_debate.py is reference scaffolding for expected inputs, output naming, and batch-oriented usage:

python3 scripts/six_hats_debate.py "Should we launch v2?" "./decisions"

The script does not run the full conversational debate by itself; it writes a timestamped markdown stub you can overwrite after running the skill. The main workflow lives in SKILL.md.

Frequently Asked Questions

What is six-hats-skill?

six-hats-skill is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by juanallo. A structured decision-debate skill for running Edward de Bono-style six hats sessions with an AI agent. It walks a topic through facts, intuition, upside, risk, alternatives, and final moderation so you get a practical recommendation instead of a loose brainstorm. It has 0 GitHub stars.

Is six-hats-skill safe to use?

Yes. six-hats-skill passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install six-hats-skill?

Clone the repository with "git clone https://github.com/juanallo/six-hats-skill" and add it to your Claude Code skills directory (see the Installation section above). six-hats-skill ships a SKILL.md manifest, so compatible agents can discover and load it automatically.

What programming language is six-hats-skill written in?

six-hats-skill is primarily written in Python. It is open-source under juanallo on GitHub, so you can review or fork the full source.

Are there alternatives to six-hats-skill?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh six-hats-skill against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details