marketing-orchestrator-skill
AI-powered marketing orchestrator with six specialist routes, client memory, and self-improving revision loop for freelance marketers
How do I install this agent skill?
npx skills add https://github.com/aradotso/marketing-skills --skill marketing-orchestrator-skillIs this agent skill safe to install?
- Gen Agent Trust Hubwarn
This skill acts as a marketing orchestrator that manages client profiles and specialist sub-skills. It includes a self-improvement feature called a 'revision loop' that modifies its own sub-skill instruction files based on usage logs. Additionally, it provides shell commands for Git deployment and instructions for managing API keys.
- Socketpass
No alerts
- Snykpass
Risk: LOW · No issues
What does this agent skill do?
Marketing Orchestrator Skill
Skill by ara.so — Marketing Skills collection
What This Project Does
The Marketing Orchestrator is a Claude skill that routes marketing requests to six specialist sub-skills: Brand Strategy & ICP, Ad Copy & Paid Media, Content Creation, Repurpose, Campaign Mode, and GitHub Deploy. It includes:
- Automatic routing based on user intent
- Client memory that persists across sessions
- Self-evaluation of outputs before delivery
- Revision loop that improves the skill over time from logged usage patterns
Installation
This is a Claude AI skill designed for Claude.ai with Skills feature enabled.
- Clone the repository:
git clone https://github.com/bryanengel72/marketing-orchestrator.git
cd marketing-orchestrator
-
Install via Claude Skills interface by uploading the project folder
-
Verify installation by checking for these files:
marketing-orchestrator/
├── SKILL.md # Main orchestrator
├── references/
│ ├── revision-log.md # Session tracking
│ └── client-profiles/ # Client data
└── sub-skills/ # Six specialist routes
├── brand-strategy-icp/SKILL.md
├── ad-copy-paid-media/SKILL.md
├── content-creation/SKILL.md
├── repurpose/SKILL.md
├── campaign-mode/SKILL.md
└── github-deploy/SKILL.md
Project Structure
Core Components
SKILL.md (Main Orchestrator)
- Handles intake and routing
- Manages client profile lookup/creation
- Performs self-evaluation before delivery
- Tracks revision loop (every 3rd session)
Sub-Skills (Six Specialists)
Each sub-skill has its own SKILL.md with specialist instructions:
brand-strategy-icp/— ICP profiles, positioning, brand voicead-copy-paid-media/— Platform ads with character limitscontent-creation/— Blogs, social posts, email sequencesrepurpose/— Multi-platform content adaptationcampaign-mode/— Full campaign architecturegithub-deploy/— Git setup for non-developers
References
references/revision-log.md— Session log for improvement trackingreferences/client-profiles/— Persistent client context
How to Use
Starting a Session
The orchestrator automatically handles routing. User says:
"I need Google Ads copy for a new SaaS product"
Orchestrator:
- Checks for existing client profile in
references/client-profiles/{client-name}.md - If new, asks intake questions (company name, industry, target audience, etc.)
- Routes to
ad-copy-paid-mediasub-skill - Sub-skill generates output
- Self-evaluates against rubric (audience fit, clarity, voice, format, goal alignment)
- Logs session to
references/revision-log.md - Delivers final output with quality check signal
Client Profile Format
Client profiles are saved as:
references/client-profiles/acme-corp.md
Example profile structure:
# Acme Corp
**Industry:** B2B SaaS
**Target Audience:** Mid-market operations managers
**Brand Voice:** Professional, data-driven, empathetic
**Key Pain Points:** Manual workflows, data silos
**Unique Value Prop:** All-in-one automation without IT dependency
## Past Projects
- 2026-04-15: Google Ads campaign (5 ad variants)
- 2026-05-02: Blog post series (productivity tips)
## Notes
- Avoid technical jargon
- Emphasize ROI and time savings
Revision Loop
Every third session, the orchestrator prompts:
"📊 Revision reminder: It's been 3 sessions. Would you like me to analyze
the revision log and suggest an improvement?"
If user accepts:
- Reads
references/revision-log.md - Identifies most frequent pattern (e.g., "intake questions too long")
- Proposes specific fix
- Updates relevant sub-skill after approval
- Logs change with version bump
Revision Log Format
# Revision Log
## Version 1.2.0 (2026-05-17)
- Reduced brand-strategy intake from 8 to 5 questions
- Added auto-skip for returning clients with profiles
- Source: Sessions #12, #14, #16 flagged intake length
## Session #16 (2026-05-17)
**Route:** brand-strategy-icp
**Client:** New (TechFlow Inc)
**Quality Check:** ✅ Passed all rubric categories
**Flag:** Intake took 4 back-and-forth exchanges
## Session #15 (2026-05-14)
**Route:** ad-copy-paid-media
**Client:** Returning (Acme Corp)
**Quality Check:** ✅ Passed all rubric categories
**Note:** Profile auto-loaded, no redundant questions
Key Workflows
1. Brand Strategy with Document Export
User request:
"Create an ICP profile and positioning doc for my coaching business"
Sub-skill output includes:
- Structured ICP with demographics, psychographics, pain points
- Positioning framework (category, audience, problem, solution, differentiation)
- Brand voice guide with tone attributes and examples
- Downloadable Word doc with formatted sections
The sub-skill automatically structures content for .docx export via Claude's artifact system.
2. Ad Copy with Platform Constraints
User request:
"Write Meta Ads for a webinar registration campaign"
Output includes:
## Ad Variant A
**Primary Text (125 chars):** Join 500+ marketers mastering AI workflows.
Free webinar May 30. Save your seat →
**Headline (40 chars):** Master AI Marketing in 60 Minutes
**Description (30 chars):** Live Q&A included. No replay.
---
**Character Counts:**
- Primary: 125/125 ✅
- Headline: 32/40 ✅
- Description: 29/30 ✅
Platform limits are enforced during generation.
3. Multi-Platform Repurposing
User provides source content (e.g., blog post) and target platforms:
"Repurpose this blog post for LinkedIn, Twitter, and Instagram"
Sub-skill generates:
- LinkedIn: Professional narrative (1200-1500 chars), hashtags, engagement hook
- Twitter: Thread format (280 chars/tweet), optimized for retweets
- Instagram: Visual-first caption, story-friendly formatting
Each is rewritten natively for platform, not truncated.
4. Full Campaign Mode
User request:
"Plan a product launch campaign for a new app feature"
Campaign Mode sub-skill:
- Defines campaign architecture (awareness → consideration → conversion)
- Lists all deliverables in funnel sequence
- Creates each asset with connecting narrative thread
- Generates launch checklist with dates and owners
Example output structure:
# Campaign Architecture
**Goal:** 500 beta signups in 2 weeks
**Funnel:** Teaser posts → Feature explainer → Signup CTA
## Deliverables (in sequence)
1. Teaser email (1 week before)
2. LinkedIn announcement post (launch day)
3. Demo video script (launch day)
4. Retargeting ad copy (days 3-7)
5. Follow-up email (1 week after)
[Full copy for each deliverable follows]
## Launch Checklist
- [ ] Load email into ESP (Day -1)
- [ ] Schedule LinkedIn post (Day 0, 9am)
- [ ] Activate retargeting ads (Day 3)
5. GitHub Deploy for Non-Developers
User request:
"Help me set up GitHub for my marketing files"
Sub-skill provides:
# Step 1: Create GitHub account at github.com
# Step 2: Install Git
# macOS:
brew install git
# Windows:
# Download from git-scm.com
# Step 3: Configure Git
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
# Step 4: Create repository on GitHub (via web UI)
# Repository name: marketing-files
# Visibility: Private
# Step 5: Initialize local folder
cd ~/Documents/marketing-files
git init
git remote add origin https://github.com/YOUR_USERNAME/marketing-files.git
# Step 6: First commit
git add .
git commit -m "Initial commit"
git push -u origin main
# Daily workflow:
git add .
git commit -m "Updated campaign docs"
git push
Includes troubleshooting for common errors (authentication, branch naming, merge conflicts).
Self-Evaluation Rubric
Before delivering output, the orchestrator evaluates against:
- Audience Fit: Does this match the client's target audience profile?
- Clarity: Is the language clear and jargon-appropriate?
- Voice Consistency: Does it match the client's brand voice?
- Platform Format: Does it meet platform-specific requirements (char limits, structure)?
- Goal Alignment: Does it directly support the stated objective?
Outputs are silently revised if any category fails. Final delivery includes:
✅ Quality check: Passed all rubric categories
Configuration
Custom Sub-Skill
To add a new specialist route:
- Create folder:
sub-skills/new-specialist/ - Add
SKILL.mdwith specialist instructions:
# New Specialist Sub-Skill
## Scope
Handles [specific marketing task category]
## Intake Questions
- Question 1
- Question 2
## Output Format
[Structured template]
## Self-Evaluation Focus
[Task-specific quality criteria]
- Update main
SKILL.mdrouting logic to include new route trigger phrases
Environment Variables
For API integrations (not included in base skill):
export OPENAI_API_KEY=your_key_here
export ANTHROPIC_API_KEY=your_key_here
Troubleshooting
Client Profile Not Loading
Symptom: Orchestrator asks intake questions for returning client
Fix:
- Check filename matches client name (kebab-case):
acme-corp.md - Verify file location:
references/client-profiles/acme-corp.md - Confirm markdown syntax is valid
Revision Log Not Tracking
Symptom: No entries appear in references/revision-log.md
Fix:
- Ensure file exists at
references/revision-log.md - Check file permissions (must be writable)
- Verify orchestrator is logging at end of each session
Sub-Skill Not Routing
Symptom: Wrong specialist handles request
Fix:
- Check user request includes clear trigger words (e.g., "ad copy", "campaign", "repurpose")
- Review routing logic in main
SKILL.md - If ambiguous, orchestrator should ask clarifying question before routing
Common Patterns
Pattern: Resume Previous Session
User returns with:
"Continue working on the Acme Corp campaign from last week"
Orchestrator:
- Loads
references/client-profiles/acme-corp.md - Reads "Past Projects" section for context
- Confirms campaign details with user
- Routes to appropriate sub-skill
Pattern: Batch Content Request
User:
"Create 5 LinkedIn posts about remote work productivity"
Orchestrator routes to content-creation, which:
- Generates all 5 posts in single session
- Ensures variety in hooks and formats
- Numbers each post for easy reference
- Offers to add to content calendar
Pattern: Quick Edit
User:
"Make that last ad copy more concise"
Orchestrator:
- Retrieves previous output from session context
- Applies edit instruction
- Re-runs self-evaluation
- Delivers revised version with quality check
Advanced Usage
Chaining Multiple Routes
User:
"Create a brand voice guide, then write 3 ads using that voice"
Orchestrator:
- Routes to
brand-strategy-icpfirst - Saves output to client profile under "Brand Voice" section
- Routes to
ad-copy-paid-mediawith voice guide context - Generates ads conforming to established voice
Export Formats
For document-heavy routes (Brand Strategy, Campaign Mode):
- Orchestrator structures output for Claude's artifact system
- User can download as
.docx,.md, or.pdf - Formatting includes headers, bullet lists, tables
Testing the Skill
Test 1: New Client Intake
User: "I need a blog post about AI in healthcare"
Expected: Intake questions → content-creation route → quality check
Test 2: Returning Client
User: "Create another ad set for Acme Corp"
Expected: Auto-load profile → ad-copy route → no redundant questions
Test 3: Revision Loop
After 3rd session, expected: "📊 Revision reminder..." prompt
User: "Yes, analyze the log"
Expected: Pattern analysis → proposed fix → update confirmation
License
MIT License — Free to use, adapt, and extend.
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/aradotso/marketing-skills/marketing-orchestrator-skill">View marketing-orchestrator-skill on skillZs</a>