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:
-
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"}' -
Do the research using WebFetch (for crawling the URL) and WebSearch (for competitor/visibility research)
-
DELETE the running event:
curl -s -X DELETE "http://localhost:3500/api/packs/marketing/events?skill=<skill-name>" -
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.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.