Funnels Skill Runner
Run a single funnels 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/funnels/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/funnels/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 pages), Playwright (for interactive flows like signup), WebSearch (for benchmarks), and Stripe API if available (
source .env.local 2>/dev/null; curl -s "https://api.stripe.com/v1/subscriptions?limit=100&status=active" -u "$STRIPE_API_KEY:") -
DELETE the running event:
curl -s -X DELETE "http://localhost:3500/api/packs/funnels/events?skill=<skill-name>" -
POST completed events with real data to
http://localhost:3500/api/packs/funnels/events
Refer to the full pipeline command at .claude/commands/funnels.md for the detailed steps for each skill (page-cro, signup-flow-cro, pricing-page-cro, conversion-audit, funnel-analysis, churn-prevention).
Use real data from WebFetch, Playwright, and WebSearch. Never hardcode data. POST events progressively so the UI updates in real-time.
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.