docs.clickmax.io

clickmax-payments-dashboard-analysis

Use when the user wants payment dashboard KPIs, paginated dashboard views, my-sales queries, filter lookups, or a recoverable-revenue reading (how much is failed/canceled/refunded/pending/abandoned to win back) for seller revenue analysis in Clickmax.

First seen Jun 16, 2026

Installation

$ npx skills add https://docs.clickmax.io

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from docs.clickmax.io · top by installs.

npx skills add https://docs.clickmax.io

Browse all from docs.clickmax.io

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Versionv12.1.3
LicenseMIT
CompatibilityRequer o MCP da Clickmax ativo e conectado. Os nomes de tool
More metadata
author
Bilhon Technologies LTDA
version
v12.1.3
tools
["dashboard_get","dashboard_filters","dashboard_transactions_list","dashboard_subscriptions_list","dashboard_affiliates_list","dashboard_my_sales","dashboard_my_sales_aggregations","dashboard_external_sales","dashboard_external_sales_chart","recovery_recoverable_revenue","lead_activities_list"]

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 8,478 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 86 installs

SKILL.md

As tools abaixo aparecem com os nomes que o MCP da Clickmax registra. Se o seu cliente de IA prefixar nomes de tool (mcp<servidor>, mcp<servidor>, ou outro), use o nome já prefixado que aparecer na sua lista de tools.

When this applies

Use this skill for payment dashboard browsing and seller revenue analysis: headline KPIs, dashboard filter discovery, paginated transactions/subscriptions/affiliate lists, my-sales queries, external sales charts, and the recoverable-revenue reading (how much money is still winnable back across failed, canceled, refunded, pending, and abandoned-cart cohorts).

Not this skill:

  • detailed refund operations -> clickmax-transaction-operations
  • customer subscription lifecycle mutation -> clickmax-seller-subscriptions
  • why sales are failing, grouped by reason with the recoverable value per reason -> clickmax-failure-diagnosis

Key assumptions

  • dashboard_filters is the discovery surface for valid filter values
  • dashboardmysales supports richer filter bodies than the simpler paginated lists
  • dashboardmysales splits into rows and KPIs: dashboardmysalesaggregations returns the KPI object alone, and dashboardmy_sales with includeAggregations: false returns the rows alone. Asking for both when you need one costs ~15 full scans for nothing.
  • list endpoints and KPI endpoints can derive time windows differently from the chosen range
  • external sales are a separate surface and should not be merged blindly into native sales conclusions
  • recoveryrecoverablerevenue is the cheap aggregate for "how much can I recover" — it returns deduplicated buckets (failed, canceled, refunded, pixPending, boletoPending, cartAbandonment) plus reason/stage breakdowns, without paginating rows; prefer it over paging dashboardmysales just to re-sum recoverable money
  • dashboardget and dashboardmysalesaggregations scope sales DIFFERENTLY — not interchangeable for a count: dashboardget.byStatus blends owner + affiliate + coproducer roles into one number; the my-sales aggregations (totalNumberOfSalesPaid/Failed/Canceled/Refunded) scope strictly to sellerId = ownerId, matching what the visual dashboard's sales table/tab shows. Using dashboardget to answer "how many sales did I make" overcounts vs. what the user sees on screen.
  • KPI values are cached briefly per (workspace + filters), so a sale made seconds ago can be in the rows before it is in the totals. Do not reconcile a row-level count against the KPI object in the same breath.

Thought process

  1. Identify whether the user needs KPIs, paginated rows, filter discovery, deeper my-sales queries, or the recoverable-revenue total.
  2. Prefer the narrowest dashboard surface that answers the question.
  3. Use my-sales when the filter logic is more expressive than the lightweight dashboard lists.
  4. For "how much is there to recover", size it with the recoverable-revenue aggregate first, then drill into a specific cohort only if the user asks.

Execute guide

  • For "how many sales did I make" / seller-scoped counts (matches the visual dashboard), use dashboardmysalesaggregations (totalNumberOfSalesPaid/Failed/Canceled/Refunded, totalSales), NOT dashboardget — see scope warning in Key assumptions. It takes the same filter body minus pagination and sorting.
  • For top-level KPI snapshots that intentionally blend owner+affiliate+coproducer (balance, overall earnings trend), use dashboard_get with the requested range and only the narrow filters that materially change the reading, such as product.
  • For available filter values before analysis, use dashboard_filters with an empty body once per session, then reuse discovered project/product/client/status values instead of guessing ids or labels.
  • Keep filter shape explicit: date ranges, status/project/product/client filters, pagination (page / perPage), and sorting (column / order) materially change dashboard rows.
  • For paginated dashboard browsing, use the smallest list that matches the request:

- transactions -> dashboardtransactionslist - subscriptions -> dashboardsubscriptionslist - affiliates -> dashboardaffiliateslist

  • For seller-revenue analysis with richer filter bodies, prefer dashboardmysales, especially when the question depends on productIds, transactionStatus, or an explicit transactionPeriod window. When you are scanning rows (cohorts, per-buyer joins, exports), pass includeAggregations: false.
  • For "how much do I have to recover" (aggregated recoverable revenue across every loss/pending cohort), use recoveryrecoverablerevenue with an optional period and product/offer/project scope. It reconciles with the recovery totals shown on the my-sales screen. Do not page dashboardmysales with non-paid statuses just to re-sum what this aggregate already returns.
  • For listing recent abandoned carts (the concrete people, offer, and stage personaldata/paymentdata), use leadactivitieslist filtered to the cart.abandonment.v1 event. Take the cart value from the offer's current price.
  • For external-sales trend reading, use dashboardexternalsales_chart with explicit from, to, and period granularity such as daily.
  • For external-sales row analysis, use dashboardexternalsales; keep those conclusions separate from native dashboard KPIs unless the user explicitly wants a combined comparison.

Report

  • Lead with the business takeaway and the period assumption.
  • Order results from highest-signal KPI or cohort insight to supporting rows.
  • Cap long row dumps and prefer ranked summaries with +N more when needed.
  • Treat follow-up actions as opt-in only.
  • A sales-count/value answer ("quantas vendas", "quanto vendi") ALWAYS leads with a cx-hero for the paid value + count (value-tone="positive"), even for a single sale or a small amount — never state the sales value only in prose. This mirrors the recovery rule below and holds regardless of how many sales there are.
  • Recoverable revenue is money still winnable back, not a consummated loss — present it end to end in the warning money tone, never negative. Lead a recovery answer with a cx-hero for the total recoverable value (icon="database-sync"), then a cx-breakdown (layout="kanban") by origin/stage; differentiate sub-cases (bank decline vs pending vs abandoned) via hint/label text, not by changing the tone. Empty state: "Nada a recuperar no período 🎉". Never surface card data or CPF/document.

Warnings

  • Do not merge external-sales semantics into native dashboard KPIs without stating it.
  • Dashboard ranges and filter bodies matter to interpretation.
  • Recoverable revenue is an opportunity, not realized revenue — never colour it green (positive) or red (negative); it is warning (yellow).

Anti-patterns

  • Stating the sales value/count only in prose instead of a cx-hero — the model may plan a hero in its own reasoning and then drop it when writing the final answer; the hero is mandatory output, not optional polish.
  • Pulling my-sales for every small dashboard question.
  • Dumping raw paginated rows without synthesis.
  • Paging dashboardmysales with non-paid statuses to re-count recoverable money that recoveryrecoverablerevenue already aggregates.
  • Paging dashboardmysales to sum a KPI that dashboardmysales_aggregations returns in one call.
  • Scanning rows without includeAggregations: false, which recomputes every KPI on every page.