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.
npx skills add Kilo-Org/kilo-marketplace --skill tableau-dashboard-creatorgit clone --depth 1 https://github.com/Kilo-Org/kilo-marketplaceWrote 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.
[](https://agentmods.dev/skills/kilo-org/kilo-marketplace/tableau-dashboard-creator)<a href="https://agentmods.dev/skills/kilo-org/kilo-marketplace/tableau-dashboard-creator"><img src="https://agentmods.dev/badge/skills/kilo-org/kilo-marketplace/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.
<a href="https://agentmods.dev/skills/kilo-org/kilo-marketplace/tableau-dashboard-creator"><img src="https://agentmods.dev/badge/skills/kilo-org/kilo-marketplace/tableau-dashboard-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 32 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Privilege Escalation · line 229 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- medium Excessive Agency · line 44 Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00073 | $0.03616 |
| Opus 5 | $0.00036 | $0.01808 |
| Sonnet 5 | $0.00015 | $0.00723 |
| Haiku 4.5 | $0.00007 | $0.00362 |
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 9d ago.
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- tableau-dashboard-creator — 97% identical, 21 lines differ
How it starts
The opening of the file, as written. The whole thing — 252 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 insidemock-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.
What ships with it
59 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.
- assets/fallback-design-tokens.md 433 B
- examples/top-level-workbook-example.twb 483 KB
- LICENSE 1.0 KB
- local.patch 21 KB
- references/snippets/dashboard/action-filter.twb 65 KB
- references/snippets/dashboard/DASHBOARD.md 19 KB
- references/snippets/dashboard/highlight-action.twb 74 KB
- references/snippets/dashboard/multi-sheet-layout.twb 105 KB
- references/snippets/dashboard/parameter-action.twb 43 KB
- references/snippets/dashboard/single-sheet-layout.twb 41 KB
- references/snippets/data-model/DATA_MODEL.md 6.5 KB
- references/snippets/data-model/multi-csv-join.twb 61 KB
- references/snippets/data-model/multi-csv-relationship.twb 55 KB
- references/snippets/data-model/single-csv.twb 24 KB
- references/snippets/features/calculated-field.twb 34 KB
- references/snippets/features/FEATURES.md 14 KB
- references/snippets/features/lod-expression.twb 33 KB
- references/snippets/features/parameter-control.twb 111 KB
- references/snippets/features/reference-line.twb 32 KB
- references/snippets/features/tablea-calculation.twb 25 KB
- references/snippets/scaffold/SCAFFOLD.md 7.6 KB
- references/snippets/scaffold/workbook-skeleton.twb 20 KB
- references/snippets/worksheets/area-chart.twb 38 KB
- references/snippets/worksheets/bar-chart-filtered.twb 34 KB
- references/snippets/worksheets/bar-chart-sorted.twb 32 KB
- references/snippets/worksheets/bar-chart-styled.twb 34 KB
- references/snippets/worksheets/bar-chart.twb 34 KB
- references/snippets/worksheets/combo-chart.twb 26 KB
- references/snippets/worksheets/custom-tooltip.twb 33 KB
- references/snippets/worksheets/dual-axis.twb 46 KB
- references/snippets/worksheets/histogram.twb 21 KB
- references/snippets/worksheets/line-chart.twb 33 KB
- references/snippets/worksheets/map-chart.twb 57 KB
- references/snippets/worksheets/pie-chart.twb 34 KB
- references/snippets/worksheets/scatter-plot.twb 34 KB
- references/snippets/worksheets/stacked-bar-chart.twb 31 KB
- references/snippets/worksheets/text-table.twb 39 KB
- references/snippets/worksheets/WORKSHEETS.md 23 KB
- references/step-0-brand-setup.md 9.1 KB
- references/step-a-data-exploration.md 6.2 KB
- references/step-b-dashboard-planning.md 5.6 KB
- references/step-c-mock-creation.md 13 KB
- references/step-d-implementation-spec.md 11 KB
- references/step-e-twb-generation.md 28 KB
- references/tableau-design-tokens.md 5.6 KB
- references/xsd/twb_2026.1.0.xsd 290 KB
- references/xsd/user.xsd 353 B
- references/xsd/xml.xsd 1.0 KB
- scripts/query_postgresql.py 8.7 KB runs code
- scripts/validate_twb_xsd.py 5.4 KB runs code
- scripts/validate_twb.py 24 KB runs code
- skeleton/.env.example 606 B
- skeleton/branding/branding.md 842 B
- skeleton/EXAMPLE-PRD.md 1.1 KB
- skeleton/QUERIES.md 780 B
- skeleton/SalesPerformance-PRD.md 755 B
- skeleton/sample-data/customer_segments.csv 640 B
- skeleton/sample-data/monthly_targets.csv 415 B
- skeleton/sample-data/sales_orders.csv 4.7 KB
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.
- 9d ago First seen · 252 lines · 73 tokens per session scan A 0014e59acf31
tableau-dashboard-creator is a skill published in the GitHub repository Kilo-Org/kilo-marketplace (175 stars, last pushed 22d ago), licensed Apache-2.0. It adds 73 tokens to every session and 3,616 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
webgl-holographic-foil
A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.
html-ppt-hermes-cyber-terminal
OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.
html-ppt-taste-brutalist
16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).
visual-ralph
Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ultragoal with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.
accessibility
Consolidated accessibility skill entrypoint for WCAG 2.2, ARIA Authoring Practices, cognitive accessibility, Section 508, EN 301 549, design intent verification, and the Accessibility Planner workflow.
make-resume
A Chinese-language tool for creating editable HTML resumes that can be changed in a browser and printed to PDF. It uses available resume templates when they are installed and otherwise provides a simpler fallback.