Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub keboola/agnes-demo-marketplace --plugin revenue-explorerHow 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.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Implements vector databases with Pinecone, Weaviate, Qdrant, Milvus, pgvector for semantic search, RAG, recommendations, and similarity systems. Optimizes embeddings, indexing, and hybrid search.
Share bugs, ideas, or general feedback.
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.