원클릭으로
atomic-decomposition
MECE+ methodology for breaking problems into independently-solvable atomic tasks
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
MECE+ methodology for breaking problems into independently-solvable atomic tasks
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Automatically extract reusable patterns from Claude Code sessions and save them as learned skills for future use.
Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents.
Research-before-coding workflow. Search for existing tools, libraries, and patterns before writing custom code. Invokes the researcher agent.
Recursive sandboxing for 100+ iterations before human review
Simulate-Deploy-Augment loop replacing traditional PDCA
Patterns and utilities for building React components in house-maint-ai
| name | Atomic Decomposition |
| description | MECE+ methodology for breaking problems into independently-solvable atomic tasks |
Break complex problems into atomic, AI-solvable units with dependency tracking.
| Principle | Description |
|---|---|
| Mutually Exclusive | No overlapping responsibilities |
| Collectively Exhaustive | Complete coverage of the problem |
| Atomic | Indivisible units of work |
| Independent | Solvable without coordination |
problem: "[Problem statement]"
atomic_tasks:
- id: T1
action: "[Verb] [Object]"
input: "[What's needed]"
output: "[What's produced]"
agent: "[Assigned agent]"
deps: []
- id: T2
deps: [T1]
# ...
Each atomic task must satisfy:
graph LR
subgraph "Parallel Group 1"
T1[Task 1]
T2[Task 2]
end
subgraph "Sequential"
T3[Task 3]
end
T1 --> T3
T2 --> T3
Analyze → Design → Implement → Test → Document
Reproduce → Diagnose → Fix → Verify → Regress
Audit → Plan → Extract → Transform → Validate
Called by manager-agent during objective decomposition:
skill: atomic-decomposition
input:
objective: "[User goal]"
constraints: "[Limitations]"
output:
tasks: [atomic task list]
graph: [dependency mermaid]