Current Status
- ✅ Articles Written: 5 deep-research pieces (14,959 words total)
- ✅ Storage:
/root/openclaw-workspace/agents/livevolatile-manager/content-pipeline/articles/ - ❌ Git Repo: Not initialized yet
- ❌ Auto-Deploy: Not set up yet
Setup Steps (Automated Publishing)
Step 1: Initialize Git Repository
cd /root/openclaw-workspace/agents/livevolatile-manager
git init
git remote add origin https://github.com/essamamdani/highly-volatile.git
git add .
git commit -m "Initial commit: 5 research articles + automation system"
git push -u origin main
Credentials:
- GitHub token: (from root TOOLS.md)
- Repo: https://github.com/essamamdani/highly-volatile
Step 2: Connect Vercel for Auto-Deploy
Vercel Setup:
- Go to https://vercel.com
- Import GitHub repo:
essamamdani/highly-volatile - Framework preset: Next.js (or your stack)
- Root directory:
/(or wherever your site code is) - Deploy!
Auto-Deploy Trigger:
- Every
git push→ Vercel auto-builds → livevolatile.com updates - Articles appear at:
livevolatile.com/blog/[slug]
Build Command:
# If using markdown-to-HTML converter
npm run build-articles
Step 3: Daily Automation (Heartbeat or Cron)
Option A: Heartbeat (Passive)
Update HEARTBEAT.md:
# Heartbeat Tasks
1. **Check for new trending topics** (search.sh)
2. **Write 2-3 articles** if topics found
3. **Git commit + push** articles to GitHub
4. **Report summary** to WhatsApp group
Option B: Cron Job (Active)
{
"schedule": { "kind": "cron", "expr": "0 8 * * *", "tz": "UTC" },
"payload": {
"kind": "agentTurn",
"message": "Search for 3 trending crypto volatility topics. Write 2-3 research articles (1500+ words each). Commit to GitHub. Report completion."
},
"sessionTarget": "isolated",
"delivery": { "mode": "announce", "channel": "[email protected]" }
}
Result: Every day at 8 AM UTC, I auto-write 2-3 articles + publish!
Quick Start (Manual Publishing for Now)
Steps:
- I've written articles → saved as
.mdfiles - You copy content from:
/root/openclaw-workspace/agents/livevolatile-manager/content-pipeline/articles/ - Paste into livevolatile.com admin panel (WordPress/Ghost/etc.)
- Click Publish
I can convert MD → HTML if needed:
# Run this to convert all articles to HTML
for file in content-pipeline/articles/*.md; do
pandoc "$file" -o "${file%.md}.html"
done
File Structure (What Goes Where)
highly-volatile/ # GitHub repo root
├── public/
│ └── blog/ # Published articles (HTML)
│ ├── bitcoin-volatility-predictions-2026/
│ ├── why-altcoins-follow-bitcoin-2026/
│ └── ...
├── content-pipeline/ # Agent workspace
│ ├── articles/ # Markdown source files
│ ├── TRENDING_TOPICS_2026.md
│ ├── AUTO_WRITER.md
│ └── ...
├── scripts/
│ └── build-articles.sh # Convert MD → HTML
└── vercel.json # Deploy config
SEO Checklist (Before Publishing)
For each article:
- ✅ Title tag: 50-60 characters, include primary keyword
- ✅ Meta description: 150-160 chars, compelling + data point
- ✅ URL slug:
/blog/bitcoin-volatility-predictions-2026 - ✅ Internal links: Link to related articles (when published)
- ✅ Images: Add charts/graphs (optional but boosts engagement)
- ✅ Schema markup: Article schema for rich snippets
I can auto-generate these when publishing!
Next Actions
Choose Your Path:
Path A: Full Automation (Best for Scale)
- I set up Git repo
- You connect Vercel
- I create daily cron job
- Result: 2-3 articles auto-publish daily
Path B: Semi-Manual (Quick Start)
- I write articles daily (already doing!)
- You manually copy-paste to CMS
- Result: You control publish timing
Path C: Hybrid
- I write + commit to GitHub daily
- You review in repo before publish
- Manual trigger Vercel deploy
- Result: Quality control + automation
Recommended: Path A (full automation by Feb 20)
Let me know which path and I'll set it up! 🚀