Skip to content

Quickstart

Install the connector, ask your AI for a dashboard, and end at a live URL you can share. The free path, using manual refresh.

1. Install the connector

Installing the plugin is the supported path: it bundles the authoring skill and the publish service together, and the skill is most of the product's behaviour.

/plugin marketplace add https://dashies.xyz/marketplace.json
/plugin install dashies@dashies
npx plugins add Dashies-ai/dashies-plugin

2. Sign in

The first tool call opens a browser and asks you to sign in once. There are no tokens to copy, paste, or rotate.

3. Ask for a dashboard

Describe the numbers you want in plain language. Your AI writes the spec and publishes it.

datasets:
  - name: revenue_by_month
    mode: cube
    sql: |
      select date_trunc('month', ordered_at) as month,
             sum(amount) as revenue
      from orders
      group by 1
      order by 1

Check it worked

Open the URL the publish step returned. It looks like https://<your-handle>.dashies.xyz/<slug>. The page should load with real numbers already in it, not a loading state.

Verify the numbers yourself

A dashboard that publishes cleanly is not automatically correct. Sum each additive measure over the cube and compare it against an independent aggregate over the base table before you share the link.

What is on this page later

  • The full free-tier walkthrough with a real dataset.
  • The Pro path: connect a warehouse, arm a schedule, watch a run land.

Placeholder

This page is a skeleton. The written content lands in a later wave.

Last updated 2026-08-03