Initialize Ralph the Marketer
Description
Set up a new Ralph Marketer copywriting project in the current directory.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
Repository README
This is the README for muratcankoylan/ralph-wiggum-marketer, shared by 4 entries
in this directory. It describes the repository, not this entry specifically.
description: Initialize a new Ralph Marketer project in the current directory allowed-tools: [Bash, Write, Read, Glob] model: sonnet
Initialize Ralph the Marketer
Set up a new Ralph Marketer copywriting project in the current directory.
What This Does
- Creates the directory structure for Ralph
- Copies template files (prd.json, progress.txt, prompt.md)
- Sets up the content database with sample data
- Creates content directories (drafts/, published/)
Setup Steps
# Create directories
mkdir -p scripts/ralph content/{drafts,published} data src/{db,content}
# Copy database scripts from plugin
PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT}"
cp "$PLUGIN_ROOT/scripts/src/db/init.js" src/db/
cp "$PLUGIN_ROOT/scripts/src/db/seed.js" src/db/
cp "$PLUGIN_ROOT/scripts/src/db/status.js" src/db/
cp "$PLUGIN_ROOT/scripts/src/db/query.js" src/db/
cp "$PLUGIN_ROOT/scripts/src/content/list.js" src/content/
cp "$PLUGIN_ROOT/scripts/src/test.js" src/
# Copy Ralph templates
cp "$PLUGIN_ROOT/templates/prd.json" scripts/ralph/
cp "$PLUGIN_ROOT/templates/progress.txt" scripts/ralph/
cp "$PLUGIN_ROOT/templates/prompt.md" scripts/ralph/
# Copy package.json if it doesn't exist
if [ ! -f package.json ]; then
cp "$PLUGIN_ROOT/templates/package.json" .
fi
# Create .gitkeep files
touch content/drafts/.gitkeep content/published/.gitkeep data/.gitkeep
# Initialize git if needed
if [ ! -d .git ]; then
git init
fi
# Install dependencies
npm install
# Initialize and seed database
npm run db:reset
echo "✅ Ralph Marketer initialized!"
echo ""
echo "Next steps:"
echo " 1. Edit scripts/ralph/prd.json with your content tasks"
echo " 2. Run /ralph-marketer to start the loop"
After Initialization
The user should:
- Customize
scripts/ralph/prd.jsonwith their specific content tasks - Optionally modify the seed data in
src/db/seed.jswith their own trends/research/communications - Run
/ralph-marketerto start the autonomous content creation loop
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11