---
title: "Multi-Hat Workflow Example"
description: "!!! note \"Documentation In Progress\" This page is under development. Check back soon for a complete multi-hat workflow example."
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/multi-hat
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:31:14.251Z
license: CC-BY-4.0
attribution: "Multi-Hat Workflow Example — Claudary (https://claudary.paisolsolutions.com/skills/multi-hat)"
---

# Multi-Hat Workflow Example
!!! note "Documentation In Progress" This page is under development. Check back soon for a complete multi-hat workflow example.

## Overview

# Multi-Hat Workflow Example

!!! note "Documentation In Progress"
    This page is under development. Check back soon for a complete multi-hat workflow example.

## Overview

This example demonstrates advanced orchestration using multiple hats that switch based on events and context.

## Configuration

```yaml
preset: code-review
hats:
  planner:
    triggers: ["start", "requirements:change"]
  coder:
    triggers: ["plan:complete"]
  reviewer:
    triggers: ["code:complete"]
  fixer:
    triggers: ["review:issues"]
```

## Event Flow

```mermaid
sequenceDiagram
    participant P as Planner
    participant C as Coder
    participant R as Reviewer
    P->>C: plan:complete
    C->>R: code:complete
    R->>C: review:issues
    C->>R: code:complete
    R-->>P: LOOP_COMPLETE
```

## See Also

- [Hats & Events](../concepts/hats-and-events.md) - Core concepts
- [Creating Custom Hats](../advanced/custom-hats.md) - Custom hat development
- [Presets](../guide/presets.md) - Built-in hat collections

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/multi-hat) · https://claudary.paisolsolutions.com
