vizwright CLAUDE.md

vizwright CLAUDE.md is an instructions file for coding agents from blakefeiza/vizwright. It costs 1,500 tokens per session, scanned A, original, MIT.

Instructions for Vizwright, a system that builds Tableau dashboards from datasets and business questions. Tableau is software for creating interactive data visualizations.

In plain words
What is it for?
They cover profiling data, producing insights, generating a .twbx dashboard file, reviewing renders, and handling pipeline errors.
Why use it?
They tell an agent which analysis and dashboard-building stages to run, how to delegate work, and how to resume failed runs.

Instructions file

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.

agentmods
npx agentmods add instructions/blakefeiza/vizwright/claude-md
Clone the repo
git clone --depth 1 https://github.com/blakefeiza/vizwright

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 vizwright CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/blakefeiza/vizwright/claude-md.svg)](https://agentmods.dev/instructions/blakefeiza/vizwright/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/blakefeiza/vizwright/claude-md"><img src="https://agentmods.dev/badge/instructions/blakefeiza/vizwright/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,500 This file is loaded in full into every session.
When invoked 1,500 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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 $0.01500 $0.01500
Opus 5 $0.00750 $0.00750
Sonnet 5 $0.00300 $0.00300
Haiku 4.5 $0.00150 $0.00150

Measured 4d ago against content hash c2a9e3d558d2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

vizwright CLAUDE.md 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 4d 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.

CLAUDE.md · 98 lines

How it starts

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

vizwright — Orchestrator

Agent-orchestrated Tableau dashboard builder. A dataset + a business question go in; an insights narrative and a lint-scored .twbx dashboard come out. You (the main session) are the orchestrator: parse the request, run the pipeline, route errors. You do not do the specialists' work yourself — delegate to the subagents.

Routing (automatic — no keywords needed)

Run the FULL pipeline when the user asks to build/create/generate a dashboard or viz from data. Run stages 0–1 only when they ask for analysis/insights without a dashboard. Run stage 4 only when they drop a screenshot/render for review. Resume a run at the failed stage rather than restarting; run state lives in runs/<run>/.

Pipeline

  1. Setup (you): pick a short kebab-case run name; mkdir -p runs/<run>/renders; profile the data: python3 tools/profile_data.py <dataset> --out runs/<run>/profile.json. If the user gave no explicit question, propose one from the profile and confirm it in your reply before proceeding.
  2. insights-analystruns/<run>/analytics_plan.md + insights.md. Pass: question, dataset path, run dir. It must back every group comparison with tools/stat_check.py (coded Welch t-tests + Bonferroni, not LLM judgment) and cite the corrected p-value + effect size. Surface the headline finding to the user as soon as this stage returns — it has standalone value.
  3. dashboard-designerruns/<run>/design_spec.md. Pass: run dir. It reads the stage-1 artifacts + design-standards skill.
  4. xml-authoroutput/<run>.twb + output/<run>.twbx (validated AND design-linted: both validate_twb.py and lint_design.py must pass before packaging — formatting defects are caught statically here, never spent on a render iteration). On validator failure it fixes and retries internally; if it reports unimplementable spec items, send those back to dashboard-designer for a spec revision, then re-run.
  5. Render step: if .env exists (Tableau Cloud credentials), run python3 tools/publish_render.py output/<run>.twbx --dashboard-only — it publishes and drops rendered PNGs into runs/<run>/renders/. Check its exit code: non-zero means nothing exported — do NOT proceed to the linter against an empty renders/ dir; treat as a stage-3 bug. Otherwise fall back to the manual path: ask the user to open output/<run>.twbx in Tableau Desktop and save a screenshot into runs/<run>/renders/. (Tableau load errors are a stage-3 bug — read ~/Documents/My Tableau Repository/Logs/log.txt, grep logic-assert, route the assert + element to xml-author.) 4b. Render gate (deterministic, always run before the linter): python3 tools/verify_render.py runs/<run>/renders. This coded check fails fast on a missing, blank, truncated, or solid-fill render (a worksheet that errored draws nothing) — no LLM needed. On failure, the render is unusable: route back to xml-author with the failing check, do NOT run the design-linter on it.
  6. design-linterruns/<run>/lint_report.md with score + verdict. Record it: python3 tools/run_state.py <run> record --score N --verdict PASS|ITERATE.
  7. Iterate: before each new authoring attempt, python3 tools/run_state.py <run> bump (persists the counter to runs/<run>/iteration_state.json, surviving a session crash; exit code 3 = cap reached → stop and summarize what's stuck). Verdict ITERATE → xml-author applies the report's fixes (stage 3) → render (4, 4b) → linter re-scores (5). Verdict PASS → done: summarize headline insight, score, and file paths.
  8. Series consistency (optional): when a run belongs to a family of related dashboards, python3 tools/lint_consistency.py output/*.twb flags palette/font/canvas/format drift so the set reads as one system.

Read the full file on GitHub · 98 lines

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. 4d ago First seen · 98 lines · 1,500 tokens per session scan A c2a9e3d558d2

Subscribe to this mod's changes

vizwright CLAUDE.md is an instructions file published in the GitHub repository blakefeiza/vizwright (3 stars, last pushed 1mo ago), licensed MIT. It adds 1,500 tokens to every session, about $0.0075 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-08-31.

Related

Other instructions, from other repositories

vizro CLAUDE.md

Claude Code instructions for mckinsey/vizro, covering vizro development guide for ai agents, development setup (across all packages), only dependency: hatch, working directory and common hatch commands across all packages.

mckinsey/vizro · 496 tokens

vizro copilot-instructions.md

Copilot instructions for mckinsey/vizro, covering github copilot instructions for vizro, pull requests from bots and automated tooling and everything else.

mckinsey/vizro · 332 tokens

TreeMap-Disk-Visualizer AGENTS.md

Instructions for Prithvi-Web/TreeMap-Disk-Visualizer, covering treemap for agents, two ways in, the core workflow: scan → inspect → dry-run → act, the safety model (enforced server-side, not advisory) and mcp specifics.

Prithvi-Web/TreeMap-Disk-Visualizer · 5,631 tokens

vizro AGENTS.md

AGENTS.md instructions for mckinsey/vizro, a project described as: Vizro is a low-code toolkit for building high-quality data visualization apps.

mckinsey/vizro · 4 tokens

explainer-pack CLAUDE.md

Claude Code instructions for Angelopvtac/explainer-pack, covering explainer-pack — invariants, public-clean is non-negotiable, what's in the box, discipline is locked. themes are a parameter and when editing the skill.

Angelopvtac/explainer-pack · 1,134 tokens

Vibe-Research AGENTS.md

AGENTS.md instructions for simonlin1212/Vibe-Research, covering vibe-research-agent 金融研究宪法, 0. 三条不可越线, 1. 数据纪律(五问 gate:给出任何数字或结论前逐条自问), 2. 研究哲学(评估框架,不是预测工具) and 3. 估值口径(你只选输入、解释输出;计算交给 calc/).

simonlin1212/Vibe-Research · 4,469 tokens