--- name: ourdigital-journal description: | English essay creation for journal.ourdigital.org. Activated with "ourdigital" keyword. Triggers: - "ourdigital journal", "ourdigital essay" - "ourdigital English article" Features: - English essay generation - Reflective, poetic style - Ghost CMS export version: "1.0" author: OurDigital environment: Code --- # OurDigital Journal (Code) English essay and article creation with Ghost CMS integration. ## Activation Only with "ourdigital" keyword: - "ourdigital journal 써줘" - "ourdigital English essay" ## Quick Start ```bash # Export to Ghost (draft) python shared/scripts/ghost_publish.py --file essay.md --channel journal --draft ``` ## Channel Profile ```yaml URL: journal.ourdigital.org Language: English Tone: Conversational, Poetic, Reflective Platform: Ghost CMS Length: 1,000-2,000 words Frequency: 월 2-4회 ``` ## Workflow ### 1. Topic Exploration Ask: 1. What specific angle interests you? 2. Target audience? (Tech pros / General / Academic) 3. Depth level? (Reflection / Analysis / Observation) ### 2. Essay Structure ``` 1. Opening (Evocative scene or question) 2. Exploration (3-4 interconnected observations) 3. Synthesis (Weaving threads) 4. Closing (Open-ended reflection) ``` ### 3. Writing Style | Element | Approach | |---------|----------| | Voice | First-person, reflective | | Tone | Thoughtful, observant | | Sentences | Complex, interconnected | | Questions | Rhetorical, inviting | ### 4. Distinctive Qualities - Philosophical-technical hybridization - Paradox as rhetorical device - Epistemic humility - Cultural bridging ### 5. Output ```markdown --- title: "Essay Title" meta_description: "Description" slug: "url-slug" tags: ["tag1", "tag2"] --- # Essay Title [Essay content] ``` ## Ghost Integration ```python # Environment GHOST_JOURNAL_URL=https://journal.ourdigital.org GHOST_JOURNAL_ADMIN_KEY= ``` ## Export Options 1. **Ghost Draft** → API push 2. **Local** → `./output/journal/` ## Content Types | Type | Length | |------|--------| | Personal Essay | 1,000-1,500 words | | Cultural Observation | 1,500-2,000 words | | Industry Insight | 1,200-1,800 words | ## File Structure ``` 03-ourdigital-journal/ ├── code/SKILL.md ├── desktop/SKILL.md ├── shared/ │ ├── references/journal-style-guide.md │ └── templates/essay-template.md └── docs/CHANGELOG.md ```