Mandu Composition
SkillProductivityReact composition patterns for Mandu applications. Use when designing Island components, managing shared state, or building reusable component APIs. Triggers on compound components, context providers, boolean props, or component architecture tasks.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Mandu Composition skill
What this skill tells your AI
The instructions your AI receives, as published by konamgil/mandu in docs/archive/skills/mcp-v0/mandu-composition/SKILL.md and read by ahel’s review.
Mandu 애플리케이션을 위한 React 컴포지션 패턴 가이드. Island 컴파운드 컴포넌트, 상태 관리 인터페이스, Provider 패턴, slot-client 분리를 다룹니다. Vercel의 Composition Patterns를 Mandu 컨텍스트로 변환하여 적용합니다.
Agent Workflow Contract
This skill is a Domain addendum. It must not replace mandu-agent-workflow.
Use it only after mandu.agent.plan selects composition, UI, hydration, slot, or component domains.
Canonical workflow step: plan -> apply -> verify.
Preferred MCP tools:
| Step | Tools |
|---|---|
| plan | mandu.agent.plan, mandu.design.get, mandu.island.list |
| apply | mandu.agent.apply |
| verify | mandu.agent.verify, mandu.design.check, mandu.slot.validate |
| repair | mandu.agent.repair |
Allowed file edits:
- Island/client component files named in the plan
- Provider/state modules scoped to the target feature
- Slot-client boundaries only when the plan includes slot or hydration domains
Verification command:
mandu agent verify --changed --json --write
Common failures:
- Refactoring component APIs without checking island/client boundaries
- Adding shared state providers broader than the planned feature
- Mixing slot server logic into client composition files
Repair path:
mandu agent repair --from .mandu/agent-verify.json --json
When to Apply
Reference these guidelines when:
- Designing Island component architecture
- Managing shared state between Islands
- Building reusable component APIs
- Refactoring components with boolean prop proliferation
- Working with compound components or context providers
Rule Categories by Priority
| Priority | Category | Impact | Prefix |
|---|---|---|---|
| 1 | Component Architecture | HIGH | comp-arch- |
| 2 | State Management | HIGH | comp-state- |
| 3 | Island Patterns | MEDIUM | comp-island- |
| 4 | Implementation Patterns | MEDIUM | comp-pattern- |
Quick Reference
1. Component Architecture (HIGH)
comp-arch-avoid-boolean-props- Use composition instead of boolean customizationcomp-arch-compound-components- Structure Islands as compound componentscomp-arch-explicit-variants- Create explicit variant components
2. State Management (HIGH)
comp-state-context-interface- Define generic state/actions/meta interfacecomp-state-lift-state- Move state into provider for sibling accesscomp-state-decouple-impl- Provider is the only place knowing implementation
3. Island Patterns (MEDIUM)
comp-island-compound- Compose Islands with shared contextcomp-island-event- Communicate between Islands with useIslandEventcomp-island-slot-split- Separate server logic (slot) from client (Island)
4. Implementation Patterns (MEDIUM)
comp-pattern-children- Use children for composition over render propscomp-pattern-provider-boundary- Understand provider boundary vs visual nesting
Core Principle
Lift state, compose internals, make state dependency-injectable.
┌─────────────────────────────────────────┐
│ Provider (state + actions + meta) │
│ ┌───────────────────────────────────┐ │
│ │ Composer.Frame │ │
│ │ ┌─────────┐ ┌─────────────────┐ │ │
│ │ │ Input │ │ Footer │ │ │
│ │ └─────────┘ │ ┌─────┐ ┌─────┐ │ │ │
│ │ │ │Emoji│ │Send │ │ │ │
│ │ │ └─────┘ └─────┘ │ │ │
│ │ └─────────────────┘ │ │
│ └───────────────────────────────────┘ │
│ ┌───────────────┐ ← Outside Frame │
│ │ Preview │ but inside │
│ └───────────────┘ Provider! │
└─────────────────────────────────────────┘
How to Use
Read individual rule files for detailed explanations:
rules/comp-arch-compound-components.md
rules/comp-state-context-interface.md
rules/comp-island-event.md
Signals
- GitHub stars
- 46
- Forks
- 3
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
mandu-composition- Source
- github.com/konamgil/mandu