CCM
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
brianrwagner avatar

Go Mode

brianrwagner/ai-marketing-claude-code-skills
362 installs390 stars
Summary

This is the "just tell me what to do and I'll handle it" skill. You give Claude a goal, it breaks it down into a plan with time estimates and costs, waits for your approval, then executes each step while checking in at decision points. Three modes: quick for simple tasks, standard for most work, and deep for when you need approval between phases. It comes with built-in guardrails that pause before spending money, sending emails, or deleting anything. The author includes detailed examples like competitor research pipelines and content repurposing that show realistic execution flows. Best for when you want to delegate an entire workflow instead of micromanaging every prompt.

Install to Claude Code

npx -y skills add brianrwagner/ai-marketing-claude-code-skills --skill go-mode --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Files
SKILL.mdView on GitHub

🎯 Go Mode — Autonomous Goal Execution

Give me a goal. I'll plan it, confirm with you, execute it, and report back. You steer — I drive.

Mode

Detect from context or ask: "Just do it, plan first, or plan + phase approvals?"

ModeWhat you getBest for
quick1-line plan → you confirm → executeSimple tasks, clear goals
standardFull plan → you confirm → execute → report (default)Most tasks
deepFull plan → risk review → confirm each phase → execute → reportHigh-stakes or multi-system tasks

Default: standard — use quick for simple, clear goals. Use deep when mistakes would be expensive to undo.


How It Works

GOAL → PLAN → CONFIRM → EXECUTE → REPORT

Phase 1: PLAN

When given a goal, break it down:

  1. Parse the goal — What's the desired outcome? What does "done" look like?
  2. Break into steps — Ordered task list, each step concrete and actionable
  3. Identify tools — Which skills, APIs, agents, or CLI tools are needed?
  4. Estimate effort — Time per step, total duration, API costs if applicable
  5. Flag risks — What could go wrong? What needs human approval?

Output a structured plan:

## 🎯 Goal: [restated goal]

### Definition of Done
[What success looks like]

### Plan
| # | Step | Tool/Skill | Est. Time | Cost | Risk |
|---|------|-----------|-----------|------|------|
| 1 | ... | ... | ... | ... | ... |

### Total Estimate
- **Time:** X minutes
- **API Cost:** ~$X.XX
- **Human Checkpoints:** [list]

### Guardrails Triggered
- [ ] External communication (needs approval)
- [ ] Financial spend > $1
- [ ] Irreversible action

Phase 2: CONFIRM

Present the plan and wait for approval:

  • "Go" → Execute all steps
  • "Go with changes" → Adjust plan, then execute
  • "Just steps 1-3" → Partial execution
  • "Cancel" → Abort

Never skip confirmation. This is the human's steering wheel.

Phase 3: EXECUTE

Run each step sequentially:

  1. Announce the current step: "Step 2/5: Researching competitor pricing..."
  2. Execute using the identified tool/skill
  3. Checkpoint after each major step — brief status update
  4. Pause if:
    • A guardrail is triggered (external action, spend, irreversible)
    • Something unexpected happens
    • A decision point requires human judgment
  5. Adapt — If a step fails, try alternatives before escalating

Phase 4: REPORT

When all steps complete:

## ✅ Goal Complete: [goal]

### What Was Done
- Step 1: [result]
- Step 2: [result]
- ...

### Outputs
- [List of files, links, artifacts created]

### What Was Learned
- [Insights discovered during execution]

### Recommended Next Steps
- [What to do with the results]
- [Follow-up opportunities]

### Stats
- Total time: Xm
- API calls: X
- Est. cost: $X.XX

Guardrails

Always Ask Before:

  • ✉️ Sending emails, DMs, or messages to anyone
  • 📢 Posting to social media (Twitter, LinkedIn, etc.)
  • 💰 Spending money or making API calls > $1 estimated
  • 🗑️ Deleting files or data
  • 🔒 Changing permissions, credentials, or configs
  • 🌐 Making any public-facing change

Auto-Proceed On:

  • ✅ Reading files, searching the web
  • ✅ Creating drafts (not publishing)
  • ✅ Organizing or summarizing information
  • ✅ Running analysis or calculations
  • ✅ Creating files in the workspace

Budget Caps

  • Default per-goal budget: $5 API spend max
  • Per-step timeout: 5 minutes (escalate if stuck)
  • Total goal timeout: 60 minutes (checkpoint and ask to continue)
  • Human can override any cap at confirm time

Available Tools & Skills Reference

When planning, draw from this toolkit:

Research & Information

ToolUse For
web_searchQuick web lookups
web_fetchRead full web pages
qmd searchSearch Obsidian vault knowledge base
content-research-writer skillDeep research + writing
research-coordinator skillMulti-source research

Content Creation

ToolUse For
content-atomizer skillTurn 1 piece → 13+ posts
direct-response-copy skillSales copy
seo-content skillSEO articles
newsletter skillNewsletter editions
email-sequences skillEmail flows
nano-banana skillImage generation (Gemini)

Marketing & Strategy

ToolUse For
positioning-angles skillFind hooks that sell
keyword-research skillSEO keyword strategy
business-prospecting skillLead research
landing-page-design skillLanding pages
page-cro skillConversion optimization

Communication

ToolUse For
bird CLITwitter/X (read, post, reply)
GmailEmail (read, send)
NotionPages and databases
TelegramMessaging

Development

ToolUse For
execShell commands
codexCode generation (GPT)
claudeCode generation (Claude)
File toolsRead, write, edit files

Example Goals

1. Competitor Analysis → Comparison Page

Goal: "Research our top 3 competitors in the AI assistant space and build a comparison page"

Plan:
1. Identify top 3 competitors (web search) — 5min
2. Research each: pricing, features, reviews — 15min
3. Build comparison matrix — 10min
4. Write comparison page copy — 15min
5. Create visual comparison table — 5min
Total: ~50min, ~$0.50 API cost

2. Content Repurposing Pipeline

Goal: "Take my latest blog post and turn it into a week of social content"

Plan:
1. Read and analyze the blog post — 2min
2. Extract key themes and quotes — 5min
3. Generate 5 Twitter threads — 15min
4. Generate 5 LinkedIn posts — 15min
5. Create 3 image prompts + generate visuals — 10min
6. Build content calendar — 5min
Total: ~52min, ~$1.00 API cost

3. Lead Research Sprint

Goal: "Find 20 potential clients in the SaaS space who might need our marketing services"

Plan:
1. Define ideal client profile — 5min
2. Search for SaaS companies (web) — 15min
3. Research each company's marketing gaps — 20min
4. Score and rank prospects — 10min
5. Build outreach-ready prospect list — 10min
6. Draft personalized intro messages [NEEDS APPROVAL] — 15min
Total: ~75min, ~$0.75 API cost

4. SEO Content Sprint

Goal: "Create 3 SEO-optimized blog posts for our target keywords"

Plan:
1. Review target keyword list — 2min
2. Research top-ranking content for each keyword — 15min
3. Create outlines using SEO skill — 10min
4. Write article 1 — 15min
5. Write article 2 — 15min
6. Write article 3 — 15min
7. Add internal links and meta descriptions — 10min
Total: ~82min, ~$2.00 API cost

5. Launch Prep Checklist

Goal: "Prepare everything needed to launch our new product next Tuesday"

Plan:
1. Audit what exists (landing page, emails, social) — 10min
2. Identify gaps — 5min
3. Write launch email sequence (3 emails) — 20min
4. Create social media posts (Twitter, LinkedIn) — 15min
5. Generate launch graphics — 10min
6. Build launch day timeline — 5min
7. Draft press/outreach messages [NEEDS APPROVAL] — 15min
Total: ~80min, ~$2.50 API cost

6. Weekly Review & Planning

Goal: "Review this week's metrics, summarize wins/losses, and plan next week's priorities"

Plan:
1. Pull metrics from available sources — 10min
2. Summarize key wins — 5min
3. Identify what didn't work — 5min
4. Review upcoming calendar — 5min
5. Propose next week's top 3 priorities — 10min
6. Create actionable task list — 5min
Total: ~40min, ~$0.25 API cost

Usage

Just tell the agent your goal in natural language:

"Take the wheel: Research the top 5 AI newsletter tools, compare them, and recommend the best one for a solopreneur"

"Take the wheel: Build a complete email welcome sequence for new subscribers — 5 emails over 2 weeks"

"Take the wheel: Audit our Twitter presence and create a 30-day content strategy"

The agent will plan, confirm, execute, and report. You stay in control at every checkpoint.

Principles

  1. Transparency — Always show the plan before executing
  2. Safety — Never take external actions without approval
  3. Efficiency — Use the cheapest/fastest tool for each step
  4. Resilience — Try alternatives before giving up
  5. Accountability — Report everything that was done
  6. Respect time — Estimate honestly, checkpoint if running long
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
AI & Agent BuildingProductivity & PlanningMarketing & SEOGo
First SeenJun 3, 2026
View on GitHub

More from brianrwagner/ai-marketing-claude-code-skills

All 23 skills →
  • Ai Discoverability Audit361
  • Social Card Gen357
  • Testimonial Collector349
  • Meeting Prep Cc331
  • Tweet Draft Reviewer329
  • Vault Cleanup Auditor329
  • De Ai Ify530
  • Reddit Insights460
  • Linkedin Profile Optimizer440
  • Last30days431
  • Homepage Audit425
  • Youtube Summarizer418
  • Linkedin Authority Builder415
  • Content Idea Generator413
  • Voice Extractor413
  • Plan My Day402
  • Positioning Basics402
  • Newsletter Creation Curation396
  • Cold Outreach Sequence385
  • Marketing Principles381
  • Case Study Builder372
  • Daily Briefing Builder368

Recommended

More AI & Agent Building →
camacho avatar
to-issues

camacho/ai-skills

to issues
362
1
watertian avatar
wechat-devtools

watertian/wechat-devtools-mcp

微信开发者工具 MCP —— 小程序构建、预览、调试与自动化测试
362
107
arjenschwarz avatar
ui-ux-reviewer

arjenschwarz/agentic-coding

Evaluate and improve user experience of interfaces (CLI, web, mobile)
361
19
bitwize-music-studio avatar
lyric-writer

bitwize-music-studio/claude-ai-music-skills

Writes or reviews lyrics with professional prosody, rhyme craft, and quality checks. Use when writing new lyrics, revising existing lyrics, or when the user says 'let's work on a track.'
361
407
jwynia avatar
moral-parallax

jwynia/agent-skills

Generate speculative fiction stories about systemic exploitation by collapsing comfortable moral distances. Use when exploring how privilege and harm are connected, when writing about systems that export consequences, or when you want stories where innocence becomes impossible.
361
141
danielmiessler avatar
OSINT

danielmiessler/personal_ai_infrastructure

osint
360
14.6k