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 agentmods add skills/bskimball/tanstack-hono/vite-plusnpx skills add bskimball/tanstack-hono --skill vite-plusgit clone --depth 1 https://github.com/bskimball/tanstack-honoWrote 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/bskimball/tanstack-hono/vite-plus)<a href="https://agentmods.dev/skills/bskimball/tanstack-hono/vite-plus"><img src="https://agentmods.dev/badge/skills/bskimball/tanstack-hono/vite-plus.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00125 | $0.02775 |
| Opus 5 | $0.00063 | $0.01388 |
| Sonnet 5 | $0.00025 | $0.00555 |
| Haiku 4.5 | $0.00013 | $0.00278 |
Grade D, and why
vite-plus scanned grade D with 3 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -fsSL https://vite.plus | bash Enumerates other installed skillsmediumAgent snooping
Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.
> On first activation of this skill in a conversation: check which companion skills are installed by running `ls ~/.claude/skills/ ~/.agent/skills/ ~/.agents/skills/ .claude/skills/ .agent/skills/ .agents/skills/ 2>/dev/ Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -fsSL https://vite.plus | bash How it starts
The opening of the file, as written. The whole thing — 323 lines — stays where its author put it; the contents beside it link to each section on GitHub.
When this skill is activated, always start your first response with the 🧢 emoji.
Vite+
Vite+ is the unified toolchain for web development by VoidZero. It consolidates
the dev server (Vite), bundler (Rolldown), test runner (Vitest), linter (Oxlint),
formatter (Oxfmt), task runner (Vite Task), and library packager (tsdown) into a
single CLI called vp. It also manages Node.js versions and package managers
globally, replacing the need for nvm, fnm, or Corepack.
When to use this skill
Trigger this skill when the user:
- Wants to scaffold a new project or monorepo with
vp create - Needs to migrate an existing Vite/Vitest project to Vite+
- Asks about
vp dev,vp build,vp test,vp lint,vp fmt, orvp check - Configures
vite.config.tswithlint,fmt,test,run,pack, orstagedblocks - Runs monorepo tasks with
vp run -ror workspace filtering - Packages a library with
vp pack(tsdown integration) - Manages Node.js versions with
vp env - References the
vporvpxCLI commands
Do NOT trigger this skill for:
- Plain Vite (without Vite+) configuration - use standard Vite docs instead
- Vitest standalone usage without Vite+ wrapping
Setup & authentication
Installation
# macOS / Linux
curl -fsSL https://vite.plus | bash
# Windows (PowerShell)
irm https://vite.plus/ps1 | iex
Basic project setup
# Interactive project creation
vp create
# Create from a specific template
vp create vite -- --template react-ts
# Monorepo
vp create vite:monorepo
# Migrate existing Vite project
vp migrate
Configuration
All tool configuration lives in a single vite.config.ts:
import { defineConfig } from 'vite-plus';
export default defineConfig({
// Standard Vite options
server: {},
build: {},
preview: {},
// Vite+ extensions
test: {}, // Vitest
lint: {}, // Oxlint
fmt: {}, // Oxfmt
run: {}, // Vite Task
pack: {}, // tsdown
staged: {}, // Pre-commit checks
});
What ships with it
6 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.
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.
- 4d ago First seen · 323 lines · 125 tokens per session scan D 976be8524ea3
vite-plus is a skill published in the GitHub repository bskimball/tanstack-hono (119 stars, last pushed 23d ago), licensed MIT. It adds 125 tokens to every session and 2,775 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it D with 3 findings (downloads and executes remote code, enumerates other installed skills, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
spiceflow
Spiceflow is a super simple, fast, and type-safe API and React Server Components framework for TypeScript. Works on Node.js, Bun, and Cloudflare Workers. ALWAYS load this skill BEFORE writing or editing ANY spiceflow code, including one-line changes: routes, pages, layouts, loaders, server actions, forms…
add-a-service
Scaffold a new service under services/ in the builders-stack monorepo. Use when something needs its own URL, port, or independent deploy. Covers the package, entrypoint, config, Tilt, deployment registry, and shared small-image build path.
design-a-schema
Model a new table (or reshape an existing one) in libs/db with Drizzle — normalize by default, add the right constraints, and index deliberately. Use when adding a table/column, deciding on keys and foreign keys, or when a query is slow because the schema or its indexes are wrong. Enforces the stack's "Drizzle is the…
wire-a-new-payment-provider
Add or swap a payment provider behind the @stack/payment adapter in the builders-stack monorepo. Use when integrating Stripe, Paddle, Lemon Squeezy, or any provider alongside or in place of the default Creem adapter. The whole point is that apps and the API never change — only the adapter implementation does. Covers…
add-a-lib
Scaffold a new shared library under libs/ in the builders-stack monorepo. Use when code is needed in two or more places (apps or services) and should become a single source of truth consumed by package name. Covers the package.json, tsconfig, the one-public-door src/index.ts barrel, and wiring it into a consumer…
optimize-a-query
Diagnose and fix a slow Postgres query in the builders-stack — read its EXPLAIN plan, find the missing index or the ORM N+1, and confirm the fix. Use when a page or endpoint is slow, a query times out, or pgstatstatements shows a hot query. Pairs with design-a-schema for the index itself.