# V8 Ciderg Paths

> Adjusts instructions for V8 commands when running in a CiderG Chrome workspace environment. Trigger this when invoking any V8 binaries or running tests in a CiderG checkout.

- Skill: `v8/v8-ciderg-paths` (Agent Skill)
- Install (CLI): `npx skillmds@latest add v8/v8-ciderg-paths`
- Raw SKILL.md: https://api.skillmd.com/api/skills/v8/v8-ciderg-paths/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: v8 (https://skillmd.com/u/v8)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/v8/v8-ciderg-paths

---


# V8 CiderG Path Adjustments

Because CiderG nests the V8 repository as a component of a larger Chromium
checkout, the build output (`out/` directory) is generated at the root of the
Chromium checkout rather than the V8 directory.

## Path Rules

- When executing from `chromium/v8`, the build directory is located one level up
  at `../out/`.
- Adjust any relative binary or test runner paths accordingly.
  - **Incorrect:** `out/x64.debug/d8`
  - **Correct:** `../out/x64.debug/d8`

