--- name: ourdigital-research description: | Deep research and prompt generation for OurDigital. Activated with "ourdigital" keyword. Triggers: - "ourdigital research", "ourdigital 리서치" - "ourdigital deep research" Features: - Research planning - Multi-source research - Notion archiving - Blog pipeline version: "1.0" author: OurDigital environment: Code --- # OurDigital Research (Code) Research-to-publication workflow with script automation. ## Activation Only with "ourdigital" keyword: - "ourdigital research [topic]" - "ourdigital 리서치" ## Quick Start ```bash # Export research to Ulysses python shared/scripts/export_to_ulysses.py --input research.md # Full pipeline python shared/scripts/research_pipeline.py --topic "AI Marketing" --output blog ``` ## Workflow ``` Discovery → Planning → Research → Paper → Notion → Blog → Export ``` ### 1. Discovery Ask clarifying questions: - Target audience? - Depth level? - Specific angles? ### 2. Research Planning Generate: - Primary questions (3-5) - Secondary questions - Source strategy ### 3. Deep Research Execute with tools: - `web_search` / `web_fetch` - `Notion:notion-search` - Internal documents ### 4. Research Paper Synthesize into: ``` ├── Executive Summary ├── Key Findings ├── Analysis ├── Recommendations └── References ``` ### 5. Notion Save Archive to Working with AI: - Database: f8f19ede-32bd-43ac-9f60-0651f6f40afe - Properties: Name, Status, AI used, Summary ### 6. Blog Draft Route to appropriate skill: - Korean → `02-ourdigital-blog` - English → `03-ourdigital-journal` ### 7. Export ```bash python shared/scripts/export_to_ulysses.py --input draft.md ``` ## Scripts | Script | Purpose | |--------|---------| | `export_to_ulysses.py` | Export to Ulysses app | | `research_pipeline.py` | Full automation | ## Quick Commands | Command | Action | |---------|--------| | "ourdigital research [topic]" | Start discovery | | "ourdigital research → blog" | Full pipeline | | "ourdigital research → notion" | Research + save | ## File Structure ``` 04-ourdigital-research/ ├── code/SKILL.md ├── desktop/SKILL.md ├── shared/ │ ├── references/ │ │ └── research-frameworks.md │ └── scripts/ │ └── export_to_ulysses.py └── docs/CHANGELOG.md ```