What problem does it solve? Working on Kimi Delta Attention (KDA) kernels in the flash-linear-attention repository requires deep knowledge of gate modes, safe_gate numerics, intra/inter chunk kernels, and backend contracts. This Skill encodes that domain knowledge so changes to fla/ops/kda/** stay correct and consistent. ## Core Features & Use Cases - Public code map: Locates the exact functions for chunk forward, intra/inter kernels, WY recompute, backward passes, gate helpers, and FlashKDA/TileLang backends. - Gate mode contracts: Documents the pre-gated vs in-kernel gate modes, safe_gate constraints (-5 <= lower_bound < 0), and the midpoint-offset exponentiation invariant that keeps exp2 numerically safe. - Correctness checklist: Enumerates the test axes to cover (varlen, forward/backward, gate modes, MHA/GVA, CP paths, numerical extremes) before finishing a KDA behavior change. - Use Case: When modifying chunk_kda_fwd_kernel_intra_sub_chunk to change decay handling, use this Skill to verify the safe and non-safe intra paths stay consistent and to select the right tests. ## Quick Start Use the fla-kda skill to review my changes to the KDA safe-gate intra kernel and tell me which correctness axes I need to test.