What problem does it solve? Working on HOT-Step's adapter subsystem without this knowledge causes silent failures: adapters that load but produce base-model audio, cache-key collisions that serve the wrong merged weights, CUDA crashes during per-section alignment, and UI knobs that appear dead after LM round trips. This Skill captures the failure modes, cache-key discipline, and reverted research directions so changes to adapter code do not reintroduce shipped bugs. ## Core Features & Use Cases - Adapter pipeline reference: Traces how LoRA/LoKr/DoRA adapters flow from UI parameters through the Node server sideband into merge-mode or runtime-mode loading in the C++/GGML engine, with exact file and line references. - Failure signature table: Maps symptoms (silent adapters, CUDA errors, wrong strength, stalled quantization) to root causes and the commits that fixed them. - Per-section and timestep gating internals: Explains regional adapter masking via lyric directives, mask re-upload requirements, alignment-based timing, and gain-curve gating over the diffusion trajectory. - Use Case: When a user reports that the Adapter VRAM knob does nothing, use this Skill to trace the parameter through translateParams.ts, the LM-echo rebuild in generate.ts, and the ServerFields sideband to find where the field was dropped. ## Quick Start Ask the AI to explain why a stacked adapter sounds wrong in runtime mode and have it consult this skill's golden rules and failure signature table before editing any engine adapter code.