dot
Query company data using Dot, an AI data analyst with access to your databases. Use when users ask about data, metrics, KPIs, reports, SQL, dashboards, or say "ask dot" or "check the numbers".
What this skill does
# dot — AI Data Analyst CLI
`dot` lets you query your company's databases through Dot, an AI data analyst.
Dot writes SQL, runs queries, generates charts, and explains results.
## Setup
If `dot` is not installed or not found in PATH:
- **macOS/Linux:** `curl -fsSL https://app.getdot.ai/install.sh | sh`
- **Windows:** `irm https://app.getdot.ai/install.ps1 | iex`
After installing, authenticate with `dot login` (opens browser).
## When to use
Use `dot` when the user asks about:
- Data questions: "What were sales last month?", "Show me top customers"
- Metrics and KPIs: "What's our churn rate?", "Revenue by region"
- SQL queries: "Write a query to find...", "Check the database for..."
- Reports: "Generate a summary of...", "Break down..."
- Any time they say "ask dot", "check the numbers", or "query the data"
## Decision: catalog vs ask
- If the user asks WHAT data is available, run `dot catalog`
- If the question is vague (no specific metric, table, or time period), run `dot catalog` first to understand what's available, then ask a targeted question
- If the user asks a specific data question, go straight to `dot "..."`
## How to use
### Discover available data first
Before asking questions, run `dot catalog` to see what data is available:
```bash
dot catalog
```
This returns instantly (no LLM call) and shows:
- Available capabilities (SQL, visualizations, scheduled reports, text analysis)
- Custom skills configured for the org
- Data source connections with table counts
- Top 50 tables sorted by usage, with descriptions and column/row counts
- External assets (Looker dashboards, etc.)
### Ask questions
Run `dot` via Bash with the question in quotes. Set a generous timeout — Dot runs a full AI analysis pipeline (SQL generation, execution, visualization) which takes 15-60 seconds, sometimes up to 2 minutes for complex queries:
```bash
dot "What were total sales last month?"
```
### Follow-up questions
Every response includes a chat ID. Use `--chat` to continue the conversation:
```bash
dot "Now break down by region" --chat cli-m1abc2d-x4y5z6
```
### When to bypass cache
Responses are cached permanently. Use `--no-cache` when:
- The question involves "today", "right now", "latest", or "current"
- The user says "refresh", "update", or "re-run"
- The user seems unsatisfied with a previous answer
```bash
dot "What are today's sales numbers?" --no-cache
```
### After receiving a response
1. Parse the output text and present the explanation to the user
2. If a chart PNG path is shown ("Chart saved to: /tmp/dot/...png"), READ the PNG file — you have multimodal capabilities and can describe what the chart shows
3. If a CSV path is shown and the user needs detailed analysis, read and analyze the CSV data
4. Present suggested follow-ups if they seem relevant to the user's goal
5. If the user wants to continue, use `--chat` with the chat ID from the output
### Output format
The output includes:
- **Text explanation** — natural language answer to the question
- **SQL query** — the exact SQL that was executed
- **Data preview** — first rows as CSV-like text with column stats
- **Chart** — saved as PNG to `/tmp/dot/<chat-id>/` (read it — you're multimodal)
- **CSV data** — saved locally for further analysis
- **Dot URL** — link to the full interactive analysis in the browser
- **Suggested follow-ups** — use these proactively if relevant
### Multi-step analysis
You can orchestrate multi-step data analysis:
1. Run `dot catalog` to understand available data
2. Ask an initial question with `dot "..."`
3. Read the CSV output for deeper analysis or custom calculations
4. Ask follow-up questions using `--chat` to refine results
5. Compare results across multiple queries
### Caching
- `dot "question"` — cached forever until `--clear-cache`
- Follow-ups with `--chat` are never cached (always fresh)
- `dot catalog` is never cached (already fast, no LLM)
Use `--no-cache` to force a fresh request, or `--clear-cache` to wipe all cached data.
### Tips for good questions
- Start with `dot catalog` to understand what tables and data are available
- Be specific: include metric names, time periods, filters
- One question at a time works best
- Use follow-ups (`--chat`) to refine rather than asking compound questions
- If you need a chart, say "show me a chart of..." or "visualize..."
### Error: command not found
If `dot` is not found, tell the user to install it:
```bash
curl -fsSL https://app.getdot.ai/install.sh | sh
dot login
```
### Error: Not authenticated
If you get "Not authenticated", the user needs to log in:
```bash
dot login
```
If `dot login` doesn't work (e.g., no browser available, SSO issues), the user can create an API token manually:
1. Open the Dot dashboard in a browser (e.g., `https://app.getdot.ai` or your company's Dot URL)
2. Go to **Settings > Users > API Tokens**
3. Create a new token scoped to their user
4. Use it with: `dot login --token <TOKEN> --server <SERVER_URL>`
### Error: Authentication failed
If you get "Authentication failed", the token may have expired. The user needs to re-login:
```bash
dot login
```
### Error: Connection failed
If dot can't reach the server, tell the user to check their internet connection.
If using a custom server, verify the URL with `dot status`.
### Debugging
Run `dot status` to check who is logged in, which server is configured, and whether the token is expired.
### Examples
```bash
# See what data is available
dot catalog
# Simple question
dot "What were total sales last month?"
# With follow-up
dot "Compare to the same period last year" --chat cli-m1abc2d-x4y5z6
# Chart request
dot "Show me a chart of monthly revenue trend for the past 12 months"
# Specific filters
dot "Top 10 customers by order count in Q4 2025, US only"
# Force fresh answer (bypass cache)
dot "What were total sales last month?" --no-cache
```
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.