postfx-router
23
总安装量
16
周安装量
#16272
全站排名
安装命令
npx skills add https://github.com/bbeierle12/skill-mcp-claude --skill postfx-router
Agent 安装分布
antigravity
12
claude-code
12
opencode
11
windsurf
9
codex
9
Skill 文档
Post-Processing Router
Routes to 3 specialized skills based on post-processing requirements.
Routing Protocol
- Classify â Identify effect type from user request
- Match â Apply signal matching rules below
- Combine â Most production scenes need 2-3 skills together
- Load â Read matched SKILL.md files before implementation
Quick Route
Tier 1: Core (Start Here)
| Need | Skill | Signals |
|---|---|---|
| Pipeline setup, effect ordering | postfx-composer |
EffectComposer, setup, pipeline, render target, custom pass, multi-pass |
| Glow, luminance effects | postfx-bloom |
bloom, glow, neon, emissive, luminance, UnrealBloom, selective bloom |
| Cinematic polish, color | postfx-effects |
vignette, chromatic, DOF, grain, color grade, LUT, aberration |
Signal Matching
Primary Signals
postfx-composer (always start here for new projects):
- “set up post-processing”
- “configure effect pipeline”
- “create custom effect/pass”
- “render targets”, “effect ordering”
postfx-bloom:
- “bloom”, “glow”, “luminance”, “neon”, “emissive”
- “selective bloom”, “object glow”, “UnrealBloomPass”
postfx-effects:
- “chromatic aberration”, “vignette”, “depth of field”, “DOF”
- “film grain”, “noise”, “color grading”, “LUT”, “tone mapping”
- “scanlines”, “CRT”, “god rays”
Confidence Scoring
- High (3+ signals) â Route directly to matched skill
- Medium (1-2 signals) â Route with composer as foundation
- Low (0 signals) â Start with
postfx-composerfor setup
Common Combinations
Basic Post-Processing Setup (2 skills)
postfx-composer â Pipeline architecture, effect ordering
postfx-bloom â Basic glow effects
Cinematic Scene (3 skills)
postfx-composer â Pipeline setup, tone mapping
postfx-bloom â Subtle glow on lights
postfx-effects â Vignette, grain, color grading
Neon/Cyberpunk Aesthetic (2 skills)
postfx-bloom â High-intensity selective bloom
postfx-effects â Chromatic aberration, vignette
Custom Effect Development (1-2 skills)
postfx-composer â Custom Effect class, shader writing
postfx-effects â Reference existing effects
Decision Table
| Effect Type | Complexity | Primary Skill | Supporting Skill |
|---|---|---|---|
| Glow/bloom only | Simple | bloom | composer |
| Cinematic look | Medium | effects | composer + bloom |
| Custom effect | Complex | composer | – |
| Selective bloom | Medium | bloom | composer |
| Color grading | Simple | effects | composer |
| Full production | Complex | All three | – |
Effect Categories
Lighting Effects â postfx-bloom
- Bloom/glow, selective bloom, emissive enhancement, HDR luminance
Camera Effects â postfx-effects
- Chromatic aberration, vignette, depth of field, lens distortion
Color Effects â postfx-effects
- Tone mapping, color grading, LUT, hue/saturation
Texture Effects â postfx-effects
- Film grain, noise, scanlines, CRT
Architecture â postfx-composer
- EffectComposer setup, effect ordering, custom effects, render targets
Integration with Other Domains
With R3F (r3f-*)
r3f-fundamentals â Scene setup
postfx-composer â Effect pipeline
postfx-bloom â Object glow
With Shaders (shaders-*)
shaders-glsl â Custom effect shader code
postfx-composer â Wrap in Effect class
With Particles (particles-*)
particles-systems â Particle emitters
postfx-bloom â Particle glow
postfx-effects â Atmosphere
With Audio (audio-*)
audio-analysis â Frequency data
postfx-bloom â Audio-reactive bloom
postfx-effects â Audio-reactive aberration
Quick Reference
| Effect | Skill |
|---|---|
| Bloom | postfx-bloom |
| Selective Bloom | postfx-bloom |
| Vignette | postfx-effects |
| Chromatic Aberration | postfx-effects |
| Depth of Field | postfx-effects |
| Film Grain/Noise | postfx-effects |
| Color Grading | postfx-effects |
| LUT | postfx-effects |
| Tone Mapping | postfx-effects |
| Custom Effects | postfx-composer |
| Render Targets | postfx-composer |
Temporal Collapse Stack
postfx-composer â HDR pipeline, tone mapping, adaptive quality
postfx-bloom â Cosmic glow on digits, particles, UI
postfx-effects â Vignette (void edge), subtle chromatic, grain
Fallback Behavior
- No framework context â Assume @react-three/postprocessing
- Unclear effect type â Start with
postfx-composer+postfx-bloom - Performance concerns â Prioritize
postfx-composeroptimization patterns