Agent skill
dsp-runtime
Use when working on the DSP engine, biquad cascade, kernel math, interpolation, minifloat codec, coefficient ramping, AGC, DF2T render, control blocks, or any code in trench-core/ or the audio path of trench-plugin/
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/dsp-runtime
SKILL.md
Before writing any code, read these files:
docs/context/runtime-pipeline.md— proven CPhantomRTFilter pipeline, memory layout, bilinear interpolation, minifloat codecdocs/context/q-law.md— Q architecture, SINC table correction
Key constraints:
- Plugin runtime is 44100 Hz. Never 39062.5 in audio path.
- Interpolate kernel-form [c0..c4] only. Never raw biquad [b0,b1,b2,a1,a2].
- Interpolation order: Q first, then morph.
- 32-sample control blocks, per-sample ramping.
- No allocations on audio thread. The commit-guard hook will catch this but don't rely on it.
- Read
trench-core/CLAUDE.mdfor kernel form, AGC table, stability rules
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?