postfx-router

Route post-processing requests to specialized SKILL.md pipeline definitions.

27|2|Updated Apr 18, 2025
One-click install
npx skills add https://github.com/tanepiper/teskooano --skill postfx-router
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: postfx-router
Source: https://github.com/tanepiper/teskooano/tree/main/.cursor/skills/postfx-router
Command: npx skills add https://github.com/tanepiper/teskooano --skill postfx-router

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill coordinates the orchestration of post-processing pipelines, helping teams manage complex visual effects without hard-coded sequences.

Core Features & Use Cases

  • Routing protocol to classify user requests into core post-processing skills (composer, bloom, and effects).
  • Dynamic composition to combine EffectComposer pipelines, glow, color grading, and depth of field as needed.
  • On-demand loading of matched SKILL.md definitions to enable flexible, modular pipelines.
  • Real-world use case: a cinematic scene applies a staged pipeline where the router delegates to bloom for glow, to effects for color grading, and to the composer for render target management.

Quick Start

Route a simple post-processing task by presenting a request such as 'apply bloom and color grading to the main scene' to trigger the router.

Frequently Asked Questions about postfx-router

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate multiple Three.js post-processing effects without hard-coded sequences?

A post-processing pipeline router solves this by classifying user requests and loading specialized definitions for bloom, color grading, and depth of field on demand. It dynamically orders and combines effects without hard-coded sequences.

How does routing work for a Three.js EffectComposer pipeline?

Routing works by delegating signals to specialized entries based on the request, such as routing glow to bloom and render target management to the composer. It loads these definitions dynamically before execution to enable modular pipelines.

Can I dynamically combine bloom and color grading in a single Three.js scene?

Yes, you can dynamically combine bloom and color grading by presenting a request to trigger the router. The router delegates the glow effect to the bloom skill and color adjustment to the effects skill for a unified cinematic output.

What is the best way to manage complex visual effect pipelines in Three.js?

The best way to manage complex visual effect pipelines is using a routing protocol that orchestrates multiple effects dynamically. This prevents hard-coded sequences by loading definitions for specialized skills like the composer and bloom on demand.

When do I need a dedicated router for post-processing effects?

You need a dedicated router for post-processing effects when multiple visual effects like glow, color grading, and depth of field must be ordered and combined dynamically. It prevents hard-coded sequences by loading definitions before execution.