Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

forge-gpu

forge-gpu에는 Nebulavenus에서 수집한 skills 83개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
83
Stars
32
업데이트
2026-03-29
Forks
5
직업 범위
직업 카테고리 7개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

forge-pbr-textures
소프트웨어 개발자

Add PBR texture loading with separate roughness/metallic support to an SDL GPU project using forge_scene.h

2026-03-29
forge-pbr-shading
소프트웨어 개발자

Add Cook-Torrance PBR shading with GGX, Schlick-GGX, and Schlick Fresnel to an SDL GPU project alongside forge_scene.h

2026-03-29
forge-grass-rendering
소프트웨어 개발자

Add instanced grass rendering with segmented blades, wind animation, LOD density rings, and terrain LOD with geomorphing to an SDL GPU project

2026-03-29
dev-noise-texture
소프트웨어 개발자

Add procedural noise texture generation to the asset pipeline — C tool, Python plugin, web UI with live preview

2026-03-28
dev-asset-lesson
고등교육 컴퓨터공학 교원

Add an asset pipeline lesson — hybrid Python + C track for asset processing, procedural geometry, and web frontend

2026-03-27
dev-audio-lesson
소프트웨어 개발자

Add an audio lesson — sound playback, mixing, spatial audio, DSP effects, with SDL GPU scenes and forge UI

2026-03-27
dev-final-pass
교수학습 조정관

Run a quality review pass on a lesson before publishing, catching recurring issues found across project PR history

2026-03-27
dev-gpu-lesson
소프트웨어 개발자

Scaffold a new GPU lesson using forge_scene.h for the rendering baseline

2026-03-27
dev-physics-lesson
소프트웨어 개발자

Add a physics lesson — particle dynamics, rigid bodies, collisions, constraints, rendered with SDL GPU

2026-03-27
dev-physics-review
소프트웨어 품질 보증 분석가·테스터

Code quality, correctness, and documentation review for physics lessons — run before dev-final-pass

2026-03-27
dev-update-working-branch
소프트웨어 개발자

Update the current working branch with the latest main. Fetches origin/main, updates local main, and rebases the current branch onto main.

2026-03-26
dev-engine-lesson
고등교육 컴퓨터공학 교원

Add an engine/toolchain lesson — build systems, C fundamentals, debugging, project structure

2026-03-24
dev-ui-lesson
소프트웨어 개발자

Add a UI lesson — TTF parsing, font rasterization, immediate-mode UI controls, layout

2026-03-24
forge-atlas-rendering
소프트웨어 개발자

Add atlas-based texture rendering to an SDL GPU project. Load atlas metadata from JSON, remap UVs in the fragment shader, and reduce texture bind state changes.

2026-03-22
dev-create-diagram
기술 작가

Create a matplotlib diagram for a forge-gpu lesson using the project's dark theme and visual identity

2026-03-22
dev-create-pr
소프트웨어 개발자

Analyze the working tree, stage relevant changes, create a branch if needed, commit, and open a pull request

2026-03-22
dev-docs-review
소프트웨어 개발자

Review all project documentation for staleness — READMEs, skills, plans, CLAUDE.md, project structure trees

2026-03-22
dev-resolve-feedback
소프트웨어 품질 보증 분석가·테스터

Ask CodeRabbit to verify and resolve each unresolved feedback thread on a PR. Use when CodeRabbit posts "No actionable comments" but old threads remain open, blocking approval.

2026-03-22
dev-review-pr
소프트웨어 품질 보증 분석가·테스터

Handle automated PR review feedback and merge when ready

2026-03-22
forge-cascaded-shadow-maps
소프트웨어 개발자

Add cascaded shadow maps with PCF soft shadows to an SDL GPU project

2026-03-22
forge-decals
소프트웨어 개발자

Add deferred decal projection to an SDL GPU project. Render projected decals onto scene geometry using depth reconstruction, inverse view-projection transforms, local-space bounds checking, soft-edge fading, G-buffer normals, Blinn-Phong lighting, and shadow map sampling.

2026-03-22
forge-gobo-spotlight
소프트웨어 개발자

Add a projected-texture (gobo/cookie) spotlight with cone falloff, shadow map, and pattern projection to an SDL GPU project

2026-03-22
forge-linear-fog
소프트웨어 개발자

Add depth-based distance fog to an SDL GPU project. Supports linear, exponential, and exponential-squared modes. Fog is applied in the fragment shader after lighting, blending the lit color toward a fog color based on camera distance.

2026-03-22
forge-normal-maps
소프트웨어 개발자

Add tangent-space normal mapping to an SDL GPU project. Extends the vertex layout with tangent vectors, constructs a TBN matrix in the vertex shader, and samples/decodes normal maps in the fragment shader for per-texel surface detail.

2026-03-22
forge-pipeline-library
소프트웨어 개발자

Use the forge-gpu asset pipeline library — a Python package installed via uv for scanning, fingerprinting, processing, and bundling game assets with a plugin architecture. Use when working with pipeline code, writing plugins, processing textures/meshes/animations, bundling assets, or extending the pipeline CLI.

2026-03-22
forge-import-settings-editor
소프트웨어 개발자

Add per-asset import settings with TOML sidecar files, three-layer merge (schema → global → per-asset), a settings editor form with type-specific controls, and single-asset re-processing from the web UI. Use when someone needs configurable per-file processing overrides, settings UI, or sidecar-based configuration.

2026-03-21
forge-particle-system
소프트웨어 개발자

Add a GPU-driven particle system with compute shader simulation, billboard rendering, texture atlas animation, and blending modes to an SDL GPU project.

2026-03-20
dev-fyi
고객 서비스 담당자

Acknowledge information from the user without taking action

2026-03-20
dev-ask
소프트웨어 개발자

Answer a question with facts only. No changes, no suggestions, no opinions. Brief and precise. Usage: /dev-ask <question>

2026-03-20
dev-explain
소프트웨어 개발자

Explain something in detail with investigation. No changes, no suggestions, no opinions. Facts and technical depth only. Usage: /dev-explain <topic>

2026-03-20
dev-request
소프트웨어 개발자

Execute exactly what was asked. Nothing more, nothing less. No assumptions, no extras, no personality. Usage: /dev-request <instruction>

2026-03-20
dev-review-diagrams
고등교육 컴퓨터공학 교원

Validate diagram correctness against the lesson README before pushing

2026-03-17
forge-blinn-phong-materials
소프트웨어 개발자

Add per-material Blinn-Phong lighting with ambient, diffuse, specular colors and shininess. Use when someone needs to render multiple objects with distinct material appearances, add material property systems, or extend basic lighting with per-object parameters in SDL3 GPU.

2026-03-17
forge-edge-detection
소프트웨어 개발자

Add Sobel edge detection on G-buffer data (depth + normals via MRT), stencil-based X-ray vision with depth_fail_op, and Fresnel ghost silhouettes with additive blending to an SDL GPU project.

2026-03-17
forge-first-triangle
소프트웨어 개발자

Draw colored geometry with vertex buffers, shaders, and a graphics pipeline using SDL3 GPU API. Use when someone needs to render vertices with per-vertex attributes.

2026-03-17
forge-hdr-tone-mapping
소프트웨어 개발자

Add HDR rendering and tone mapping to an SDL GPU project. Render to a floating-point render target, then tone map to the swapchain with Reinhard or ACES filmic operators. Includes exposure control and fullscreen blit pass.

2026-03-17
forge-indirect-drawing
소프트웨어 개발자

Add GPU-driven indirect drawing with compute-based frustum culling to an SDL GPU project. A compute shader tests bounding spheres against frustum planes and writes indirect draw commands — the CPU never decides what to draw. Uses SDL_DrawGPUIndexedPrimitivesIndirect with per-object storage buffers and the first_instance offset pattern for portable instance identification.

2026-03-17
forge-stencil-testing
소프트웨어 개발자

Add stencil buffer testing to an SDL GPU project. Configure depth-stencil textures with stencil bits, set up stencil state on pipelines, and use stencil operations for portals, outlines, and per-pixel masking.

2026-03-17
dev-local-review
소프트웨어 품질 보증 분석가·테스터

Run a local code review using the CodeRabbit agent before pushing to catch issues early

2026-03-17
forge-pipeline-morph-animations
소프트웨어 개발자

Add morph target (blend shape) animations with pipeline assets to an SDL GPU project using ForgeSceneMorphModel.

2026-03-16
이 저장소에서 수집된 skills 83개 중 상위 40개를 표시합니다.