ワンクリックで
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]