Agent Skills: HLSL Skill

HLSL shader programming skill for DirectX, compute shaders, and optimization.

UncategorizedID: a5c-ai/babysitter/hlsl

Install this agent skill to your local

pnpm dlx add-skill https://github.com/a5c-ai/babysitter/tree/HEAD/library/specializations/game-development/skills/hlsl

Skill Files

Browse the full folder contents for hlsl.

Download Skill

Loading file tree…

library/specializations/game-development/skills/hlsl/SKILL.md

Skill Metadata

Name
hlsl
Description
HLSL shader programming skill for DirectX, compute shaders, and optimization.

HLSL Skill

HLSL shader programming for DirectX.

Overview

This skill provides capabilities for writing HLSL shaders for DirectX-based engines.

Capabilities

  • Vertex and pixel shaders
  • Compute shaders
  • Constant buffer management
  • Shader optimization

Usage Patterns

cbuffer ConstantBuffer : register(b0)
{
    float4x4 WorldViewProj;
}

float4 PSMain(PSInput input) : SV_TARGET
{
    return input.Color;
}

References