97 lines
2.1 KiB
Markdown
97 lines
2.1 KiB
Markdown
# Banatie Content Repository
|
|
|
|
Multi-agent content creation system for Banatie blog.
|
|
|
|
## Quick Start
|
|
|
|
### For Content Creation (Claude Desktop)
|
|
|
|
1. Open agent project in Claude Desktop
|
|
2. Say `/init` to start
|
|
3. Select file to work on
|
|
4. Follow agent workflow
|
|
5. Confirm handoff to next stage
|
|
|
|
### For Repository Management (Claude Code)
|
|
|
|
```bash
|
|
cd /projects/my-projects/banatie-content
|
|
claude
|
|
|
|
# Commands:
|
|
/status # Pipeline overview
|
|
/validate {slug} # Check file validity
|
|
/move {slug} {stage} # Move file between stages
|
|
```
|
|
|
|
---
|
|
|
|
## The Pipeline
|
|
|
|
```
|
|
@spy → 0-inbox → 1-planning → 2-outline → 3-drafting ⟲ → 4-human-review → 5-optimization → 6-ready → 7-published
|
|
@strategist @architect @writer Human @seo Human Human
|
|
@editor @image-gen
|
|
```
|
|
|
|
---
|
|
|
|
## File Structure
|
|
|
|
One markdown file per article, moves between folders:
|
|
|
|
```
|
|
{stage}/{slug}.md
|
|
```
|
|
|
|
File grows by accumulating sections:
|
|
- Brief (from @strategist)
|
|
- Outline (from @architect)
|
|
- Draft → Text (from @writer, edited by human)
|
|
|
|
---
|
|
|
|
## Agents
|
|
|
|
| Agent | Role | Model |
|
|
|-------|------|-------|
|
|
| @spy | Research | Sonnet |
|
|
| @strategist | Topic planning | Opus |
|
|
| @architect | Article structure | Opus |
|
|
| @writer | Draft writing | Sonnet |
|
|
| @editor | Quality review | Opus |
|
|
| @seo | SEO + GEO | Sonnet |
|
|
| @image-gen | Visual assets | Sonnet |
|
|
| @style-guide-creator | Author personas | Opus |
|
|
|
|
---
|
|
|
|
## Authors
|
|
|
|
| ID | Persona | Topics | Status |
|
|
|----|---------|--------|--------|
|
|
| henry | Technical Expert | Tutorials, API guides | Complete |
|
|
| nina | Creative Designer | AI art, design | Pending |
|
|
|
|
---
|
|
|
|
## Key Files
|
|
|
|
| File | Purpose |
|
|
|------|---------|
|
|
| `shared/content-framework.md` | How the system works |
|
|
| `shared/human-editing-checklist.md` | Human review tasks |
|
|
| `style-guides/AUTHORS.md` | Author registry |
|
|
| `style-guides/henry-technical.md` | Henry's voice |
|
|
|
|
---
|
|
|
|
## Language
|
|
|
|
- **Files:** English
|
|
- **Agent communication:** Russian
|
|
|
|
---
|
|
|
|
**Last updated:** December 2024
|