rayzee-renderer
rayzee-renderer에는 atul-mourya에서 수집한 skills 4개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.
이 저장소의 skills
Debug the rendering pipeline. Diagnoses why the render output looks wrong by tracing data flow through pipeline stages, checking context textures, event wiring, and Compositor fallback chain. Use when the rendered image is black, flickering, shows ghosting, or has visual artifacts.
Validate TSL shader code against known pitfalls. Run this after writing or modifying any TSL shader file (src/core/TSL/) to catch common bugs before they become runtime issues. Checks for NaN sources, If/Else chains, UV flips, outputNode usage, compute patterns, and redundant .toVar() materializations that inflate register pressure.
Review a pipeline stage for correctness, performance, and architectural compliance. Use when creating a new PipelineStage, modifying an existing one, or debugging stage interactions. Pass the stage filename as an argument (e.g., /review-stage ASVGF).
Advanced React developer mode. Use when building, reviewing, or debugging React components, hooks, performance issues, state management, or architecture decisions. Applies React 19+ best practices, performance optimization, and modern patterns.