Check the content pipeline status for Ralph the Marketer
Displays Ralph's content pipeline status, progress, and blockers.
/plugin marketplace add muratcankoylan/ralph-wiggum-marketer/plugin install ralph-wiggum-marketer@ralph-wiggum-marketerhaikuCheck the current status of the content pipeline and Ralph's progress.
# Database status
npm run db:status
# Available content sources
node src/content/list.js
# PRD status
cat scripts/ralph/prd.json | jq '.userStories[] | {id, title, passes, priority}'
# Recent progress
tail -50 scripts/ralph/progress.txt
# Recent commits
git log --oneline -10
# Content counts
echo "Drafts:" && ls -la content/drafts/ 2>/dev/null || echo " No drafts yet"
echo "Published:" && ls -la content/published/ 2>/dev/null || echo " No published content yet"
Summarize the status for the user: