agents/skills/v8-setup/SKILL.md
Use this skill to handle missing dependencies or configuration issues in the V8 environment.
Jetski often expects a .agents directory or symlink in the V8 workspace root to find skills and rules.
.agents: If the workspace only has agents (no dot) and .agents is missing:
.agents/skills/ and .agents/rules/ from the shared agents/ directory, rather than symlinking the whole folders. This allows the user to mix shared skills with private ones in the same directory..agents.The V8 environment relies on specialized tools and MCP servers for advanced workflows. If they are missing, follow these guidelines:
Crossbench is the central benchmark runner.
depot_tools or clone it from Chromium sources:
fetch crossbench
# or
git clone https://chromium.googlesource.com/crossbench
cb.py is executable. You can usually run it directly by referencing its full path: /path/to/crossbench/cb.py.crossbench-mcp, add it to mcp_config.json pointing directly to the executable cb.py:
"crossbench-mcp": {
"command": "/path/to/crossbench/cb.py",
"args": [
"mcp"
]
}
vpython3 is available (like depot_tools).These servers provide advanced capabilities like benchmark running, debugging, and issue tracking.
Check: Verify if they are listed in the available MCP servers at the start of the conversation.
Setup/Configuration:
compile_commands.json is generated.jsb_run_bench and v8log_analyze.Missing Dependencies: If a required tool (like poetry for Crossbench) is missing or failing, do NOT try to install it yourself. Follow the fallback advice in the specific workflow skill or ask the user for guidance.