header-self-containment

star 20.2k

Enforce strict header self-containment so that every header file compiles independently. Use this skill when creating or modifying C++ header files.

google By google schedule Updated 5/26/2026

name: header-self-containment description: > Enforce strict header self-containment so that every header file compiles independently. Use this skill when creating or modifying C++ header files.

Strict Header Self-Containment

Every header file (.h) in Filament must be fully self-contained and compile independently.

  • Rule: Never assume a header's type dependencies (like FrameGraphHandle) are pre-declared by preceding includes in a .cpp file.
  • Action: Always explicitly #include the declaring header (e.g., fg/FrameGraphId.h) inside the header itself.
Install via CLI
npx skills add https://github.com/google/filament --skill header-self-containment
Repository Details
star Stars 20,159
call_split Forks 2,192
navigation Branch main
article Path SKILL.md
More from Creator