Knowledge Router
Use this as the public front door for context and knowledge operations. Keep the scope tight: this router is about attaching the right knowledge surface before or around work, not about skill lifecycle management.
Use This Router For
- “先查 brain 再答”
- “先查官方文档再建议方案”
- “把这个 prompt 优化成更稳的输入”
- requests where context acquisition is the missing step
Do Not Use This Router For
- creating, installing, or packaging skills
- use
skillops-router
- use
- AI research paper reading or appendix digestion
- use
research-router
- use
- product planning or delivery orchestration
- use
delivery-router
- use
Routing Table
attach-personalbrainUse when the task should attach to PersonalBrain for durable memory lookup, prior conclusions, project-aware context, or thin writeback.openai-docsUse when the user wants current OpenAI product or API guidance, citations, model selection, upgrade advice, or official docs answers.thinking-lensesUse when the task is really a prompt-quality problem: underspecified prompts, handoff prompts, high-risk prompts, or requests to improve reasoning structure.
Decision Rules
- If the user wants durable memory or PersonalBrain context, route to
attach-personalbrain. - If the source of truth should be official OpenAI documentation, route to
openai-docs. - If the main issue is that the prompt or handoff is weak, route to
thinking-lenses. - If the request is actually research evidence capture or paper digestion, hand off to
research-router. - If no extra context layer is needed, say so explicitly and keep the task direct.
Direct-Entry Exceptions
Skip this router and go direct when:
- the user explicitly names
attach-personalbrain,openai-docs, orthinking-lenses - the task is obviously just an OpenAI docs lookup
- the task is already inside a stable PersonalBrain-attached workflow
Output Contract
Always return:
- missing context or knowledge need
- chosen skill, or the decision that none is needed
- why that route fits
- one concrete next action
Guardrails
- do not expand this router into skill management
- do not confuse research reading with general knowledge routing
- do not insert a prompt-optimization pass when the prompt is already good enough
- preserve the lightest possible context move
Example Triggers
Use $knowledge-router to decide whether this needs PersonalBrain, OpenAI docs, or prompt optimization first.使用 $knowledge-router 看看这件事该先挂 brain、查官方文档,还是先重写 prompt。Use $knowledge-router to pick the thinnest useful context layer before execution.