rayzee-renderer
rayzee-renderer contient 4 skills collectées depuis atul-mourya, avec une couverture métier par dépôt et des pages de détail sur le site.
Skills dans ce dépôt
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.