Skip to content

AI agents

Coding agents do not know vizb unless you install the skill. The skill teaches the agent when to use vizb, how to install the binary if it is missing, and which docs page to fetch. The agent still runs the vizb CLI — this is not an MCP server.

Terminal window
# this project
npx skills add goptics/skills --skill vizb
# every project on this machine
npx skills add goptics/skills --skill vizb -g
# confirm the CLI can see it
npx skills add goptics/skills --list

The skills CLI clones the small goptics/skills pack (not this repo) and copies skills/vizb into the agents you have installed (Grok, Claude Code, Cursor, Codex, and others). After that, /vizb is available. Automatic invocation also stays on: “chart this CSV” or “plot the Go bench” should load the skill without typing /vizb.

Skill install is not binary install. If vizb is missing, the skill runs the install one-liners.

Type /vizb plus the file and what you want in natural language. The agent picks a chart, writes an HTML file, and returns the path — it does not paste the HTML into the chat.

/vizb sales.csv as bar by region & product, show labels

Same conversion as the CLI. Every example in these docs has an Agent tab with a prompt like this:

Natural-language prompt after installing the vizb skill. The agent runs the CLI.

/vizb sales.csv as bar by region & product, show labels

Other prompts:

/vizb sales.csv as pie by region
/vizb this benchmark as a line chart
/vizb bench.txt as bar
/vizb path/to/data.csv as bar

Or ask without the slash: “turn this benchmark output into an HTML chart.”

The agent should start with vizb <chart> <file> -o out.html and only add grouping or select flags if auto output is wrong.