- Add new 00-claude-code-setting skill for token usage optimization - Includes audit scripts for MCP servers, CLAUDE.md, and extensions - Auto-fix capability with backup for serverInstructions and frontmatter - Add YAML frontmatter to 17 command files - Target: keep baseline under 30% of 200K context limit Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
50 lines
1.3 KiB
Markdown
50 lines
1.3 KiB
Markdown
---
|
|
description: Ourdigital Research command
|
|
---
|
|
|
|
# OurDigital Research
|
|
|
|
Research-to-publication workflow for OurDigital blogs.
|
|
|
|
## Triggers
|
|
- "export to Ulysses", "publish research", "블로그 발행"
|
|
|
|
## Capabilities
|
|
|
|
1. **Markdown Export** - Format research for publishing
|
|
2. **Ulysses Integration** - Direct export to Ulysses app
|
|
3. **Publishing Checklist** - Pre-publish verification
|
|
4. **Multi-target** - blog.ourdigital.org, journal, ourstory.day
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Export to Ulysses
|
|
python ourdigital-custom-skills/31-ourdigital-research/code/scripts/export_to_ulysses.py \
|
|
--input research.md --group "Blog Drafts"
|
|
|
|
# With tags
|
|
python ourdigital-custom-skills/31-ourdigital-research/code/scripts/export_to_ulysses.py \
|
|
--input research.md \
|
|
--group "Blog Drafts" \
|
|
--tags "AI,research,draft"
|
|
|
|
# From Notion export
|
|
python ourdigital-custom-skills/31-ourdigital-research/code/scripts/export_to_ulysses.py \
|
|
--notion-export notion_export.zip \
|
|
--group "From Notion"
|
|
```
|
|
|
|
## Workflow
|
|
|
|
1. Complete research in Claude/Notion
|
|
2. Export to markdown
|
|
3. Run export script → Ulysses
|
|
4. Edit and polish in Ulysses
|
|
5. Publish to Ghost/OurDigital
|
|
|
|
## Output Targets
|
|
- **blog.ourdigital.org** - Main blog
|
|
- **journal.ourdigital.org** - Long-form essays
|
|
- **ourstory.day** - Personal narratives
|