Marketing Skill Runner

Run a single marketing skill against a target URL, posting real-time progress events.

Sby Skills Guide Bot
DevelopmentIntermediate
107/22/2026
Claude Code
#marketing-skill#automation#web-fetch#web-search#pipeline

Recommended for

Marketing Skill Runner

Run a single marketing skill against a target URL.

Arguments: <skill-name> <url>

Parse $ARGUMENTS to extract the skill name (first word) and URL (second word).

Server: http://localhost:3500

Instructions

Read the skill definition from packs/marketing/skills/<skill-name>.md to understand what this skill does and what events to emit.

Then execute that single skill following the same process as the full pipeline:

  1. POST a "running" status event: curl -s -X POST http://localhost:3500/api/packs/marketing/events -H 'Content-Type: application/json' -d '{"skill":"<skill-name>","component":"generic","props":{"title":"Running <skill-name>...","data":"Working on it"},"status":"running"}'

  2. Do the research using WebFetch (for crawling the URL) and WebSearch (for competitor/visibility research)

  3. DELETE the running event: curl -s -X DELETE "http://localhost:3500/api/packs/marketing/events?skill=<skill-name>"

  4. POST completed events with real data to http://localhost:3500/api/packs/marketing/events

Refer to the full pipeline command at .claude/commands/marketing.md for the detailed steps for each skill (audit-site, competitors, ai-visibility, content-gen).

Use real data from WebFetch and WebSearch. Never hardcode data. POST events progressively so the UI updates in real-time.

Related skills