tableau-dashboard-creator

tableau-dashboard-creator is a skill for Claude Code from laviDrori0702/tableau-dashboard-creator-skill. It costs 73 tokens per session (3,504 once invoked), scanned A, a copy of tableau-dashboard-creator, MIT.

A guided workflow for turning a plain-language dashboard request into a Tableau dashboard plan, an interactive HTML mock-up, and optionally a Tableau workbook. Tableau is a tool for exploring data and building interactive charts and dashboards.

In plain words
What is it for?
Use it to explore data, define dashboard layout and interactions, create a visual mock-up, write an implementation specification, and optionally generate a workbook.
Why use it?
It gives analysts a structured path from requirements and data to a design that can be implemented in Tableau. It also checks for project files such as queries or sample CSV data, a product brief, branding details, and database settings when needed.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Part of the tableau-dashboard-plugin plugin — 10 skills shipped together

Good fit Use it to explore data, define dashboard layout and interactions, create a visual mock-up, write an implementation specification, and optionally generate a workbook.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lavidrori0702/tableau-dashboard-creator-skill/tableau-dashboard-creator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add laviDrori0702/tableau-dashboard-creator-skill --skill tableau-dashboard-creator
Clone the repo
git clone --depth 1 https://github.com/laviDrori0702/tableau-dashboard-creator-skill

Made for: Claude Code.

Or install tableau-dashboard-plugin, the plugin that ships this one along with the rest of its 10 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tableau-dashboard-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/lavidrori0702/tableau-dashboard-creator-skill/tableau-dashboard-creator/github.svg)](https://agentmods.dev/skills/lavidrori0702/tableau-dashboard-creator-skill/tableau-dashboard-creator)
Your own site
<a href="https://agentmods.dev/skills/lavidrori0702/tableau-dashboard-creator-skill/tableau-dashboard-creator"><img src="https://agentmods.dev/badge/skills/lavidrori0702/tableau-dashboard-creator-skill/tableau-dashboard-creator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tableau-dashboard-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/lavidrori0702/tableau-dashboard-creator-skill/tableau-dashboard-creator"><img src="https://agentmods.dev/badge/skills/lavidrori0702/tableau-dashboard-creator-skill/tableau-dashboard-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,504 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 97% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00073 $0.03504
Opus 5 $0.00036 $0.01752
Sonnet 5 $0.00015 $0.00701
Haiku 4.5 $0.00007 $0.00350

Measured 12d ago against content hash 6fe90e55ab4b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

tableau-dashboard-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/query_postgresql.py, scripts/validate_twb_xsd.py, scripts/validate_twb.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

97% identical to tableau-dashboard-creator — 21 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skill/tableau-dashboard-creator/SKILL.md · 239 lines

How it starts

The opening of the file, as written. The whole thing — 239 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Tableau Dashboard Creator

A multi-step workflow that transforms a human-language dashboard request into an implementable Tableau specification with an interactive HTML mock and an optional generated workbook.

Prerequisites

Before starting, scan the user's project root for:

Checklist (all paths are inside the project directory the skill is executed in, except `.env` — see note below):
- [ ] QUERIES.md — SQL queries grouped under database type headings (e.g., PostgreSQL)
      OR sample-data/ directory with CSV files
- [ ] <DASHBOARD-NAME>-PRD.md — Human-language dashboard request
- [ ] .env — Database credentials (skip if using sample-data/). Does **not** need to live
      inside the project directory — `load_dotenv()` walks upward from the current
      working directory and picks up the closest `.env` it finds, so the user can keep
      credentials in a parent directory and avoid copying secrets into the project.
      Required variables (PostgreSQL): `PG_HOST`, `PG_DATABASE`, `PG_USER`, `PG_PASSWORD`,
      and optionally `PG_PORT` (defaults to `5432`).
- [ ] branding/ directory (required) containing ONE of:
      - branding.md — brand spec (palette, fonts, padding, sizing)
      - template.twb — Organization's Tableau template workbook
      Optionally, a logo (.svg or .jpg) can be added to branding/ in either case.

If any are missing, immediately run Project Scaffolding (below) before doing anything else. Do NOT ask the user to manually provide files — scaffold first, then let them customize.

Only check for the files listed above. Do NOT check for design-tokens.md, DS-ARCHITECTURE.md, DASHBOARD-PLAN.md, or any files inside mock-version/ — those are outputs generated by the workflow steps, not user-provided inputs.

QUERIES.md Format

Queries must be grouped under a heading matching the database type:

## PostgreSQL
SELECT * FROM public.table2

The agent selects the correct query script based on the heading.

Read the full file on GitHub · 239 lines

Files

What ships with it

57 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 239 lines · 73 tokens per session scan A 6fe90e55ab4b

Subscribe to this mod's changes

tableau-dashboard-creator is a skill published in the GitHub repository laviDrori0702/tableau-dashboard-creator-skill (21 stars, last pushed 2d ago), licensed MIT. It adds 73 tokens to every session and 3,504 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to tableau-dashboard-creator, differing in 21 lines, and is treated as a copy.

Related

Other skills, from other repositories

slop-eval

Objectively evaluate a UI/web design against the pols.dev anti-slop design law: detect catalogued slop tells with cited evidence, score 8 weighted axes (color, type, components, layout, motion, execution, signature, cohesion), and emit a Slop Report with a 0–100 Slop Index and grade. Use when the user asks to…

fabricioctelles/skills · 142 tokens

design-md-validator

Validate DESIGN.md files against the official Google specification using the @google/design.md CLI linter. Works with local files. Use when the user wants to lint a DESIGN.md, check spec compliance, find broken token references, verify WCAG contrast ratios, diff two versions, export tokens to Tailwind or DTCG format…

fabricioctelles/skills · 170 tokens

revenue-centric-design

Revenue-Centric Design (RCD) — evidence-backed principles for making a SaaS or startup product convert, retain, and monetize. Use when the user works on a landing page or CRO ("my page isn't converting"), onboarding/activation ("users sign up but don't stick"), churn/retention ("customers keep canceling")…

fabricioctelles/skills · 146 tokens

ultimate-design-system-master

Create comprehensive design systems, brand identities, and UI component libraries. Use when the user says "create design system", "build brand identity", "design UI components", "generate design tokens", "create figma specs", "review my design", "analyze design trends", "audit accessibility", "convert design to code"…

fabricioctelles/skills · 88 tokens

frontend-design

Transform UI style requirements into production-ready frontend code with systematic design tokens, accessibility compliance, and creative execution. Use when building websites, web applications, React/Vue components, dashboards, landing pages, or any web UI requiring both design consistency and aesthetic quality.

jjyaoao/HelloAgents · 54 tokens

webpage_generate

A tool for generating a previewable, single-file HTML webpage from a description and saving it in the workspace for the viewer to display.

limecloud/lime · 31 tokens