Finance Skill Runner
Run a single finance skill.
Arguments: <skill-name> (e.g., mrr-check, billing-audit, forecast, pricing-strategy)
Server: http://localhost:3500
Instructions
Parse $ARGUMENTS to get the skill name. Read .env.local for STRIPE_API_KEY.
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/finance/events -H 'Content-Type: application/json' -d '{"skill":"<skill-name>","component":"generic","props":{"title":"Running <skill-name>...","data":"Working on it"},"status":"running"}'
-
Pull data from the Stripe API using curl (for mrr-check, billing-audit, forecast) or WebFetch/WebSearch (for pricing-strategy)
-
DELETE the running event:
curl -s -X DELETE "http://localhost:3500/api/packs/finance/events?skill=<skill-name>"
- POST completed events with real data to
http://localhost:3500/api/packs/finance/events
Refer to the full pipeline command at .claude/commands/finance.md for the detailed steps for each skill.
Use real data from the Stripe API. 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.