Notion: Workspace Automation Router
Route to the correct sub-skill based on the user's need. All sub-skills use Notion MCP tools (Notion:notion-search, Notion:notion-fetch, Notion:notion-create-pages, Notion:notion-update-page).
Sub-skill Selection
| Sub-skill | When | Read |
|---|---|---|
| meeting-intelligence | Prep meeting materials (pre-read + agenda) | meeting-intelligence/SKILL.md |
| knowledge-capture | Save conversation/insights as structured Notion docs | knowledge-capture/SKILL.md |
| research-documentation | Search Notion, synthesize findings, create reports | research-documentation/SKILL.md |
| spec-to-implementation | Break specs into tasks with implementation tracking | spec-to-implementation/SKILL.md |
Decision Logic
- •Meeting coming up →
meeting-intelligence(create pre-read + agenda from Notion context) - •Want to save knowledge →
knowledge-capture(conversation → structured wiki/database page) - •Need to research a topic →
research-documentation(search → synthesize → report) - •Have a spec to implement →
spec-to-implementation(spec → plan → tasks → progress tracking)
If unclear which sub-skill fits, use AskUserQuestion:
code
questions:
- question: "어떤 Notion 작업이 필요한가요?"
header: "유형"
options:
- label: "회의 준비"
description: "Notion 컨텍스트를 기반으로 내부 사전 자료 + 외부 안건 생성"
- label: "지식 저장"
description: "대화 내용이나 인사이트를 구조화된 Notion 문서로 저장"
- label: "리서치 정리"
description: "Notion 검색 → 여러 페이지 종합 → 리서치 보고서 생성"
- label: "스펙 구현"
description: "스펙 문서를 구현 계획과 태스크로 분해하여 추적"
multiSelect: false
After selection, read the corresponding sub-skill's SKILL.md and follow its protocol.