Agent Skills
› google/filament
› verification-protocols
verification-protocols
GitHub针对C++源码或头文件修改的标准化验证流程,包括格式化包含、编译引擎、运行测试及检查语言绑定。
Trigger Scenarios
用户请求修改C++源文件或头文件后
需要确保代码编译通过并运行测试时
Install
npx skills add google/filament --skill verification-protocols -g -y
SKILL.md
Frontmatter
{
"name": "verification-protocols",
"description": "Standard verification pipeline to execute after modifying C++ source or header files. Use this skill to format includes, build the engine, and run core tests."
}
Verification Protocols
Before completing any task that modifies C++ source or header files, AI agents must execute the following verification pipeline:
- Format Includes: Run
./tools/reorganize_headers/run.py <target>. - Compile Core Engine: Run
./build.sh -ip desktop debugto ensure the entire desktop target compiles cleanly with no warnings or errors. - Run Tests: Run the test suite binary located in the build output directory:
./out/cmake-debug/libs/utils/test_utils - Language Bindings Check: If any public APIs under
filament/include/filament/were modified, verify that matching Java and JavaScript/TypeScript bindings are implemented and up-to-date according to bindings-synchronization.
Version History
- d8b4a37 Current 2026-08-20 07:30


