agents/skills/v8-understanding/SKILL.md
Use this skill to explore V8 concepts, components, or optimization logic deeply. This focuses on the methodology of understanding, assuming orchestration is handled globally by the framework.
To understand complex V8 behavior, follow a scientific approach:
d8 flags to test the hypothesis.docs/ directory in the V8 root for
documentation. It contains content from v8.dev, so there is no need to
access the external website or use browser tools. Use local search and file
reading to access it.
docs/ directory (e.g., docs/embed.md, docs/gdb.md,
docs/untrusted-code-mitigations.md). Always scan the root docs/ folder.docs/ (e.g., docs/compiler/,
docs/heap/). Do not assume a strict 1:1 directory mapping between src/
and docs/.grep or find tools) across the entire docs/ directory to find all files
mentioning the key classes, APIs, or optimization concepts you are
investigating (e.g. search for BytecodeGenerator in all .md files).docs/ directory for these concepts/classes to
locate relevant design files, whether they live at the root of docs/ or
in a subsystem subfolder.src/ to fill in details.