Research Router
Routes research, learning, and investigation tasks to specialized skills.
Subcategories
Deep Research
triggers: [comprehensive, thorough, multi-source, citations, verify, deep-dive]
skills:
- deep-research: 7-phase research protocol with Graph of Thoughts
- mcp-skillset-workflows: Multi-skill orchestration patterns
Reasoning / Thinking
triggers: [think, reason, analyze-deeply, complex-problem, multi-step]
skills:
- think: Cognitive enhancement toolkit
- reason: Recursive decomposition
- AoT: Atom of Thoughts (formal)
- urf: Universal Reasoning Framework
Learning
triggers: [learn, understand, explain, study, compare, evaluate]
skills:
- sc:explain: Clear explanations
- deepstudy: Deep study workflows
- notebooklm: Query NotebookLM
Routing Decision Tree
research request
│
├── "deep research" explicit?
│ └── deep-research
│
├── Reasoning/thinking focus?
│ ├── Lightweight? → think
│ ├── Formal proof? → AoT
│ └── Multi-scale? → urf
│
├── Learning focus?
│ ├── Explanation? → sc:explain
│ └── Study → deepstudy
│
└── General investigation?
└── deep-research
Progressive Loading
- Light Analysis: Load
think or reason first
- Deep Dive: If complexity increases, add
deep-research
- Formal Verification: If proof needed, add
AoT or urf
Managed Skills
| Skill |
Purpose |
Trigger |
| deep-research |
7-phase research |
"deep research", "thorough" |
| think |
Non-linear reasoning |
"think", "analyze" |
| reason |
Recursive decomposition |
"reason", "understand" |
| AoT |
Atom of Thoughts |
"prove", "verify", "formal" |
| urf |
Universal framework |
"multi-scale", "complex" |
| sc:explain |
Explanations |
"explain", "describe" |
1---2name: research-router3description: Routes research and investigation tasks. Triggers on research, investigate, deep-dive, explore, understand, learn, study, compare, thorough, comprehensive.4---56# Research Router78Routes research, learning, and investigation tasks to specialized skills.910## Subcategories1112### Deep Research13```yaml14triggers: [comprehensive, thorough, multi-source, citations, verify, deep-dive]15skills:16 - deep-research: 7-phase research protocol with Graph of Thoughts17 - mcp-skillset-workflows: Multi-skill orchestration patterns18```1920### Reasoning / Thinking21```yaml22triggers: [think, reason, analyze-deeply, complex-problem, multi-step]23skills:24 - think: Cognitive enhancement toolkit25 - reason: Recursive decomposition26 - AoT: Atom of Thoughts (formal)27 - urf: Universal Reasoning Framework28```2930### Learning31```yaml32triggers: [learn, understand, explain, study, compare, evaluate]33skills:34 - sc:explain: Clear explanations35 - deepstudy: Deep study workflows36 - notebooklm: Query NotebookLM37```3839## Routing Decision Tree4041```42research request43 │44 ├── "deep research" explicit?45 │ └── deep-research46 │47 ├── Reasoning/thinking focus?48 │ ├── Lightweight? → think49 │ ├── Formal proof? → AoT50 │ └── Multi-scale? → urf51 │52 ├── Learning focus?53 │ ├── Explanation? → sc:explain54 │ └── Study → deepstudy55 │56 └── General investigation?57 └── deep-research58```5960## Progressive Loading61621. **Light Analysis**: Load `think` or `reason` first632. **Deep Dive**: If complexity increases, add `deep-research`643. **Formal Verification**: If proof needed, add `AoT` or `urf`6566## Managed Skills6768| Skill | Purpose | Trigger |69|-------|---------|---------|70| deep-research | 7-phase research | "deep research", "thorough" |71| think | Non-linear reasoning | "think", "analyze" |72| reason | Recursive decomposition | "reason", "understand" |73| AoT | Atom of Thoughts | "prove", "verify", "formal" |74| urf | Universal framework | "multi-scale", "complex" |75| sc:explain | Explanations | "explain", "describe" |