Skip to content

highperformance-tech/tableau-vds-agent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI Agents Meet Data Governance with Tableau VDS

The companion repo to Brad Fair's TC26 talk. If you scanned the QR code from the closing slide, this is what you came for: the four docs I pointed at, plus a few related resources worth a click.

The docs

  • vds-cheat-sheet.md — the markdown the agent loads alongside the prompt: every API operation, filter pattern, and gotcha it needs to write competent VDS calls. Start here if you're building.
  • architecture.md — the bird's-eye view: what queries Tableau, where results live, and why your existing data models, RLS, calcs, and metadata survive intact.
  • proxy-pattern.md — the security model: how the proxy authenticates as the user without giving the agent a token, and why the three plausible attacks all fail.
  • sandbox-model.md — the per-chat execution environment where data and code live across turns. Why per-chat, why per-user, what the sandbox doesn't do.

If you didn't see the talk

Someone has asked you to put an AI agent on your data. The obvious move — point the agent at your warehouse and let it write SQL — misses out on the data models, calculated fields, and row-level security you already have in Tableau. You don't want to do that.

This repo documents an alternative: an architecture for letting an AI agent query Tableau the same way your dashboards do, under your user's identity, without giving the agent a token or letting it negotiate who it's acting for.

It's two pieces. Boring infrastructure — a proxy that injects authentication (using a Tableau Connected App) and a per-chat execution sandbox. The authentication and authorization primitives are the ones Tableau already enforces; what's new is a proxy that mints tokens on behalf of a session-bound user, so the agent never holds one. To VDS, the agent is just another client. Plus one reference document the agent reads alongside the prompt: the cheat sheet.

What this isn't

A turnkey product. There's no installer, no deployable agent skeleton, no working code you can git clone and run. The cheat sheet is portable; the proxy and sandbox are patterns you implement against your own agent stack and infrastructure.

Related resources

Try It

  • Ana by TextQL — the agent product used in the TC26 demo. If you want to try this architecture against your own Tableau environment without building the agent and sandbox yourself, this is the easiest starting point.

Note: TextQL does not yet have the proxy pattern baked in -- my implementation was custom for the demo.

Tableau VDS

Connected Apps and JWTs (for the proxy)

About

Brad Fair

High Performance Technologies

highperformance.tech

Questions, issues, and feedback welcome — open an issue or reach out.

License

Licensed under the MIT License.

About

Companion reference docs for Brad Fair's TC26 talk: AI Agents Meet Data Governance with Tableau VDS

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors