Business: Kitchen furniture manufacturing (custom kitchens, Tallinn, Estonia) Website: studiokook.ee
Automation system for Studiokook using:
- CLI (Claude Code): Research, analysis, workflow design, decisions
- n8n: 24/7 automation (SEO, Instagram, monitoring)
- Python agents (FastAPI): AI logic (Claude API)
Studiokook/
├── agents/ # Python FastAPI (SEO, content, competitors)
├── n8n/workflows/ # n8n automation workflows (JSON)
├── knowledge/ # SQLite database (decisions, logs, benchmarks)
├── skills/ # Skill definitions (n8n, seo-smm, content-creator)
├── credentials/ # API credentials (Google, etc.)
├── docs/ # Architecture & documentation
└── scripts/ # Utility scripts
cd Studiokook
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r agents/requirements.txtcd agents
uvicorn main:app --reload --port 8001- Import workflows from
n8n/workflows/ - Configure credentials
- Test workflows
cd Studiokook
claude # Loads Studiokook context only- (None yet - starting with SEO Audit)
- SEO Audit (weekly, Monday 10 AM)
- Instagram Content (daily, 9 AM)
- Benchmark Monitoring (daily, 9 AM)
- Competitor Monitoring (daily, 3 AM)
See knowledge/knowledge.db or docs/ARCHITECTURE.md
- CLI + n8n hybrid architecture
- Monitor benchmark labs instead of self-testing
- Start with SEO Audit workflow
- Architecture:
docs/ARCHITECTURE.md(detailed ADR) - Quick Reference:
docs/SUMMARY.md - Skills:
skills/*.md(n8n, seo-smm, content-creator)
/n8n- n8n workflow automation/seo-smm- SEO & Instagram strategy/content-creator- Content creation patterns/knowledge- Database operations
- Create SEO agent (FastAPI)
- Design SEO audit n8n workflow
- Setup n8n instance
- Test end-to-end
- Deploy
Last Updated: 2026-01-29