From revenue-explorer
Summarise revenue, order count, and average order value over the demo orders_demo table, optionally grouped by day/week/month. Triggers on revenue, AOV, and order-trend questions over the demo dataset.
How this skill is triggered — by the user, by Claude, or both
Slash command
/revenue-explorer:revenue-explorerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Answer revenue questions over the bundled synthetic `orders_demo` table — no SQL required.
Answer revenue questions over the bundled synthetic orders_demo table — no SQL required.
agnes schema orders_demo to confirm columns (order_id, customer_id, order_date, amount).agnes query "SELECT date_trunc('month', order_date) AS period, sum(amount) AS revenue, count(*) AS orders FROM orders_demo GROUP BY 1 ORDER BY 1".avg(amount).Everything runs locally against the demo data — there is no cost or production risk.
Guides reception of code review feedback: verify before implementing, avoid performative agreement, push back with technical reasoning when needed.
Design banners for social media, ads, website heroes, and print with multiple art direction options and AI-generated visuals.
npx claudepluginhub keboola/agnes-demo-marketplace --plugin revenue-explorer