From rtl-agent-team
Routes domain-specific queries to expert agents for video codec standards including syntax/entropy coding, intra prediction, motion estimation/compensation, transform/quantization, video processing, fixed-point math, and signal processing.
npx claudepluginhub babyworm/rtl-agent-team --plugin rtl-agent-teamThis skill uses the workspace's default tool permissions.
<Purpose>
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
<Use_When>
<Do_Not_Use_When>
<Why_This_Exists> The project has multiple domain experts (6 codec sub-domain specialists, a codec chief, video processing, and protocol experts). Routing to the wrong expert wastes tokens and produces shallow answers. This skill reads the query and selects the best match before delegating. </Why_This_Exists>
<Execution_Policy>
<Routing_Table>
| Domain Keywords | Expert Agent | Notes |
|---|---|---|
| NAL, slice header, CABAC, CAVLC, entropy coding, DPB, bitstream, binarization, context model, Exp-Golomb | vcodec-syntax-entropy-expert | HLS parsing, entropy engine, DPB management |
| intra prediction, angular mode, planar mode, DC mode, intra reference sample, intra mode decision, neighboring sample, intra smoothing | vcodec-intra-pred-expert | Intra prediction modes, reference sample construction, mode-dependent filtering |
| motion estimation, ME, search algorithm, IME, FME, TZ search, diamond search, MV prediction, AMVP, merge mode, search range, reference frame selection | vcodec-me-expert | ME search algorithms, MV prediction (AMVP/merge), reference frame management |
| motion compensation, MC, sub-pel interpolation, half-pel, quarter-pel, bi-prediction, weighted prediction, reference block fetch, interpolation filter | vcodec-mc-expert | Sub-pixel interpolation filters, bi-prediction weighting, weighted prediction |
| DCT, DST, quantization, RDOQ, fixed-point, scaling matrix, QP, transform, inverse transform, butterfly, dequantization, coefficient, scaling list | vcodec-transform-quant-expert | Transform, quantization, fixed-point arithmetic |
| deblocking, SAO, in-loop filter, boundary strength, reconstruction, filter decision, edge offset, band offset, sample adaptive offset | vcodec-filter-recon-expert | Deblocking filter, SAO, reconstruction path |
| cross-block, cross-block dependency, pipeline dependency, architecture-ready, architecture-ready assessment, codec domain coordination, codec overview, block interaction, data flow between blocks | vcodec-chief-standard-expert | Cross-block coordination, multi-block dependency analysis |
| codec pipeline, encoder/decoder architecture, datapath, throughput, latency, SRAM organization | vcodec-architecture-expert | Architecture-level codec design decisions |
| throughput, memory bandwidth, cycles per block, macroblock rate, CTU rate, DPB sizing, line buffer sizing, pipeline depth, parallelism degree, performance budget, frames per second, resolution target | video-processing-expert | Codec HW performance analysis (throughput, bandwidth, pipeline) |
| color space conversion, RGB to YUV, YUV to RGB, BT.601, BT.709, BT.2020, chroma subsampling, chroma upsampling, 4:2:0, 4:2:2, 4:4:4, bit depth conversion, 8-bit to 10-bit, Bayer demosaic, color format, limited range, full range, V4L2, fourcc, pixelformat, bytesperline, sizeimage, single-planar, multi-planar, NV12M, tiled format, storage layout | vproc-color-format-expert | Color format conversion + V4L2 storage semantics (FOURCC/plane/stride/sizeimage) |
| denoise, noise reduction, bilateral filter, NLM, temporal noise reduction, 3DNR, motion adaptive, spatial filter, Gaussian filter, noise model, AWGN, shot noise | vproc-denoise-expert | Spatial/temporal noise reduction for video HW |
| HDR, tone mapping, PQ curve, HLG, gamma correction, OETF, EOTF, sRGB, image scaling, resampling, bilinear, bicubic, Lanczos, edge enhancement, sharpening, unsharp mask, ISP pipeline, image signal processing | vproc-image-processing-expert | HDR, gamma, scaling, sharpening, ISP pipeline |
| AXI, AHB, APB, PCIe, USB, Ethernet, bus protocol, handshake, transaction | protocol-checker | Bus protocol rules and timing |
| </Routing_Table> |
<Tool_Usage>
# Syntax/entropy question (NAL, CABAC, DPB)
Task(subagent_type="rtl-agent-team:vcodec-syntax-entropy-expert",
prompt="Explain the CABAC context initialization process for H.264 Main profile slice_type=P. Cite spec section numbers.")
# Intra prediction question
Task(subagent_type="rtl-agent-team:vcodec-intra-pred-expert",
prompt="Describe H.265 angular intra prediction mode 10 for a 16x16 block. Specify reference sample geometry and filtering conditions.")
# Motion estimation / MV prediction question
Task(subagent_type="rtl-agent-team:vcodec-me-expert",
prompt="Describe H.265 AMVP candidate derivation for a 16x16 PU. Specify the spatial neighbor scan order and pruning rules.")
# Motion compensation question
Task(subagent_type="rtl-agent-team:vcodec-mc-expert",
prompt="Describe H.264 half-pel luma interpolation filter. Specify exact coefficients, precision chain, and diagonal position handling.")
# Transform/quantization question
Task(subagent_type="rtl-agent-team:vcodec-transform-quant-expert",
prompt="What is the required accumulator width for H.265 32x32 IDCT at 10-bit input? Show overflow analysis per butterfly stage.")
# Filter/reconstruction question
Task(subagent_type="rtl-agent-team:vcodec-filter-recon-expert",
prompt="Describe H.265 SAO edge offset category derivation for class 1 (vertical). Specify the sign comparison logic.")
# Cross-domain codec question
Task(subagent_type="rtl-agent-team:vcodec-chief-standard-expert",
prompt="What are the data dependencies between the CABAC entropy engine and the inverse transform block? Specify the interface data format and timing constraints.")
# Codec architecture question (design-level)
Task(subagent_type="rtl-agent-team:vcodec-architecture-expert",
prompt="What is the optimal pipeline depth for a CABAC encoder targeting 4K@60fps with a 500MHz sys_clk? Consider throughput vs latency tradeoffs.")
# Codec performance question
Task(subagent_type="rtl-agent-team:video-processing-expert",
prompt="What are the throughput requirements for a 4K@60fps H.265 decoder at 500 MHz? Include cycles-per-CTU budget and memory bandwidth breakdown.")
# Color format conversion question
Task(subagent_type="rtl-agent-team:vproc-color-format-expert",
prompt="What are the exact BT.709 YCbCr-to-RGB conversion coefficients for 10-bit limited range? Include fixed-point Q-format suitable for RTL implementation.")
# Denoise question
Task(subagent_type="rtl-agent-team:vproc-denoise-expert",
prompt="What are the line buffer requirements and DRAM bandwidth for a motion-adaptive 3DNR engine targeting 4K@60fps 10-bit 4:2:0?")
# Image processing / HDR question
Task(subagent_type="rtl-agent-team:vproc-image-processing-expert",
prompt="Design a PQ EOTF LUT for 12-bit input to 16-bit output. Specify entry count, interpolation method, and maximum error vs floating-point reference.")
# Protocol question
Task(subagent_type="rtl-agent-team:protocol-checker",
prompt="What is the correct AXI4 handshake behavior when ARVALID is asserted but ARREADY is low? Should the master hold ARVALID stable?")
</Tool_Usage>
User asks about CABAC bin string encoding → routes to vcodec-syntax-entropy-expert(Opus) → returns precise answer citing H.264 spec section 9.3.2. User asks about H.265 intra prediction angular modes → routes to vcodec-intra-pred-expert(Opus) → returns complete mode table with reference sample dependencies and boundary handling. User asks about interaction between RDOQ and CABAC bit estimation → routes to vcodec-chief-standard-expert because it spans transform-quant and syntax-entropy domains → returns cross-block analysis. Routing a deblocking filter question to vcodec-transform-quant-expert because it mentions "filter" and "coefficient" — deblocking is vcodec-filter-recon-expert's domain. Always match the primary domain (in-loop filtering → vcodec-filter-recon-expert), not incidental keywords. Routing a cross-block pipeline dependency question to a single sub-domain expert — this should go to vcodec-chief-standard-expert who understands all block interfaces.<Escalation_And_Stop_Conditions>
<Final_Checklist>