mit einem Klick
knowledge-manager-workflow
// 6-phase workflow for content extraction, analysis, and export to Obsidian/Notion
// 6-phase workflow for content extraction, analysis, and export to Obsidian/Notion
Generate professional slide deck images from content. Creates comprehensive outlines with style instructions, then generates individual slide images. Use when user asks to "create slides", "make a presentation", "generate deck", or "slide deck".
Extract content from Threads, Instagram with reply collection and depth control
Unified storage interface for Obsidian, Notion, and local file systems
Unified browser interface for Antigravity native, Playwright, and Hyperbrowser providers
Automated setup wizard for Knowledge Manager - configures MCP servers and creates config files
Output format specifications for Obsidian, Notion, and Markdown exports
| name | Knowledge Manager Workflow |
| description | 6-phase workflow for content extraction, analysis, and export to Obsidian/Notion |
Complete 6-phase workflow guide for content processing
Phase 0: Load Configuration
↓
Phase 1: Detect Input Source
↓
Phase 1.5: Collect User Preferences
↓
Phase 2: Extract Content
↓
Phase 3: Analyze Content
↓
Phase 4: Select Output Format
↓
Phase 5: Execute Export
↓
Phase 6: Verify and Report
Antigravity/Gemini CLI에서 반드시 실행:
콘텐츠 처리 전 반드시 아래 질문을 사용자에게 물어야 합니다:
📊 상세 수준: 1.요약 / 2.보통 / 3.상세
🎯 중점 영역: A.개념 / B.실용 / C.기술 / D.인사이트 / E.전체
📝 노트 분할: ①단일 / ②주제별 / ③원자적 / ④3-tier
🔗 연결 수준: 최소 / 보통 / 최대
기본값(3.상세, E.전체, ④3-tier, 최대)을 사용하시겠습니까?
💡 3-tier란? 개요 노트 + 주제별 노트 + 원자적 노트로 계층 구조화
소셜 미디어(Threads/Instagram) URL인 경우 추가 질문:
🔄 답글 수집 범위:
1) depth=1: 직접 답글만 (빠름)
2) depth=2: 답글의 답글까지 (더 완전한 맥락)
⚠️ 이 단계를 건너뛰면 안 됩니다!
노트 저장 전 반드시 관련 노트를 검색하고 연결합니다.
콘텐츠에서 핵심 키워드 추출:
// Antigravity/Gemini CLI 도구명
keywords = ["AI", "프롬프트", "Claude"]
keywords.forEach(keyword => {
mcp_obsidian_search_vault({ query: keyword })
})
검색 결과에서 상위 노트들을 읽어 관련성 확인:
// 검색 결과에서 상위 10개 노트 읽기
search_results.slice(0, 10).forEach(result => {
mcp_obsidian_read_note({ path: result.path })
})
Phase 1.5에서 선택한 "🔗 연결 수준"에 따라 링크 개수 결정:
| 연결 수준 | 링크 개수 | 설명 |
|---|---|---|
| 최소 | 1-2개 | 가장 관련성 높은 노트만 연결 |
| 보통 (기본값) | 3-5개 | 주요 관련 노트 연결 |
| 최대 | 5-10개 | 관련 가능성 있는 모든 노트 연결 |
## 관련 노트
- [[AI-프롬프트-기초]]
- [[Claude-사용-가이드]]
- [[LLM-활용법]]
⚠️ Vault 검색 없이 저장 = 잘못된 동작! ⚠️ 관련 노트 발견했는데 wikilink 안 함 = 잘못된 동작!
| 환경 | 사용할 도구 | 절대 사용 금지 |
|---|---|---|
| Antigravity | mcp_obsidian_create_note | write_to_file |
| Gemini CLI | mcp_obsidian_create_note | write_to_file |
⚠️ MCP 도구 사용 가능한데 파일 시스템 도구 사용 = 잘못된 동작!
Must execute before all operations
// 1. Read config file
config = Read("km-config.json")
// 2. Check required items
if (!config) {
return "Configuration file not found. Please run /knowledge-manager setup"
}
// 3. Load storage settings
storage = {
primary: config.storage.primary,
obsidian: config.storage.obsidian,
notion: config.storage.notion,
local: config.storage.local
}
// 4. Load browser settings
browser = {
provider: config.browser.provider,
hyperbrowser: config.browser.hyperbrowser
}
| Input Pattern | Type | Processing |
|---|---|---|
https://threads.net/* | Social Media | → km-browser-abstraction (stealth recommended) |
https://instagram.com/* | Social Media | → km-browser-abstraction (stealth recommended) |
https://* | Web URL | → km-browser-abstraction |
*.pdf | PDF File | → Read tool |
*.docx | Word File | → Read tool |
notion.so/* | Notion Page | → Notion MCP |
→ See km-browser-abstraction skill
// Auto-select based on configured provider
content = scrape_url(url, {
stealth: inputType.requiresStealth
})
→ See km-storage-abstraction skill
// Auto-save to configured storage
save_note(relativePath, content)
## ✅ Processing Complete!
### Input
- Source: {url or filename}
- Type: {web / file / social media}
### Saved Notes
| Title | Path | Status |
|-------|------|--------|
| {note1} | {path1} | ✅ |