vitexec
Use vitexec when the truth lives in the running browser: client state, imported app modules, DOM, canvas/WebGL, screenshots, recordings, or browser-only errors.
Do not use it for questions static files, unit tests, or TypeScript can answer directly.
References
- If
vitexec or Playwright is missing, read references/install.md.
- For mouse, keyboard, pointer lock, gamepad, or other input, read references/inputs.md.
- For CPU, network, performance timeline, or heap analysis, read references/performance.md.
- For WebXR, read references/webxr.md.
Workflow
- Identify the page path if it is not
/.
- Write the smallest snippet that performs the user-like action or reads the browser-only state.
- Run
vitexec '<snippet>', adding --path, --gpu, --screenshot, --record, --cpu-profile, --network-trace, --performance-trace, --heap-snapshot, --timeout, or --config only when needed.
- Treat stdout as browser logs. It starts with
logs:.
vitexec 'console.log("ready")'
For structured state, log JSON:
vitexec --path /cart '
import { useCartStore } from "/src/store/cart.ts";
document.querySelector("[data-testid=add-to-cart]")?.click();
await new Promise((resolve) => requestAnimationFrame(resolve));
console.log("cart", JSON.stringify(useCartStore.getState()));
'
Guidance
- Prefer importing exported app state over scraping DOM when state is available.
- Use direct state reads for observation and assertions, not to bypass user interaction.
- Use live progress logs and focused assertions to early-exit on failures and see current progress.
- Keep logs concise; overly verbose logs become unreadable and unnecessarily fill the context.
- Prefer browser-root imports such as
/src/store.ts, not local filesystem paths.
- Use
--gpu for WebGL, canvas, Three.js, and WebXR behavior.
- Use screenshots or recordings only when visual evidence matters.
- Do not leave temporary code in the app when
vitexec can inspect it from outside.
1---2name: vitexec3description: Use this skill when an AI agent needs to inspect, verify, debug, or profile a live Vite app by running temporary snippets inside the browser page and reading browser logs or captured artifacts. Use for client state after interactions, imported app modules, DOM state, human-like input, canvas/WebGL/Three.js state, screenshots, videos, CPU/network/performance/heap analysis, WebXR/Three.js XR with IWER, and runtime-only behavior without editing app files.4---56# vitexec78Use `vitexec` when the truth lives in the running browser: client state, imported app modules, DOM, canvas/WebGL, screenshots, recordings, or browser-only errors.910Do not use it for questions static files, unit tests, or TypeScript can answer directly.1112## References1314- If `vitexec` or Playwright is missing, read [references/install.md](references/install.md).15- For mouse, keyboard, pointer lock, gamepad, or other input, read [references/inputs.md](references/inputs.md).16- For CPU, network, performance timeline, or heap analysis, read [references/performance.md](references/performance.md).17- For WebXR, read [references/webxr.md](references/webxr.md).1819## Workflow20211. Identify the page path if it is not `/`.222. Write the smallest snippet that performs the user-like action or reads the browser-only state.233. Run `vitexec '<snippet>'`, adding `--path`, `--gpu`, `--screenshot`, `--record`, `--cpu-profile`, `--network-trace`, `--performance-trace`, `--heap-snapshot`, `--timeout`, or `--config` only when needed.244. Treat stdout as browser logs. It starts with `logs:`.2526```sh27vitexec 'console.log("ready")'28```2930For structured state, log JSON:3132```sh33vitexec --path /cart '34 import { useCartStore } from "/src/store/cart.ts";35 document.querySelector("[data-testid=add-to-cart]")?.click();36 await new Promise((resolve) => requestAnimationFrame(resolve));37 console.log("cart", JSON.stringify(useCartStore.getState()));38'39```4041## Guidance4243- Prefer importing exported app state over scraping DOM when state is available.44- Use direct state reads for observation and assertions, not to bypass user interaction.45- Use live progress logs and focused assertions to early-exit on failures and see current progress.46- Keep logs concise; overly verbose logs become unreadable and unnecessarily fill the context.47- Prefer browser-root imports such as `/src/store.ts`, not local filesystem paths.48- Use `--gpu` for WebGL, canvas, Three.js, and WebXR behavior.49- Use screenshots or recordings only when visual evidence matters.50- Do not leave temporary code in the app when `vitexec` can inspect it from outside.