skills/skillxiv-v0.0.2-claude-opus-4.6/deepseek-v3.2-frontier/SKILL.md
Combines DeepSeek Sparse Attention (DSA) achieving O(Lk) complexity, scalable RL framework allocating 10%+ compute to post-training, and large-scale agentic task synthesis with 1,800+ environments. Matches proprietary models in reasoning; DeepSeek-V3.2-Speciale achieves olympiad gold.
npx skillsauth add ADu2021/skillXiv deepseek-v3.2-frontierInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
DeepSeek-V3.2 presents three major technical breakthroughs: DeepSeek Sparse Attention (DSA) reducing complexity from O(L²) to O(Lk), a scalable RL framework allocating over 10% of pre-training compute to post-training, and a large-scale agentic task synthesis pipeline generating 85,000+ synthetic prompts across 1,800 environments. Together these innovations enable competitive reasoning performance on olympiad-level problems.
DeepSeek Sparse Attention (DSA): Uses a "lightning indexer" to select only top-k most relevant tokens per query. This reduces full-attention complexity dramatically while maintaining long-context quality.
Scalable RL Framework: Implements a robust post-training protocol using refined GRPO with: unbiased KL estimation preventing divergence and off-policy sequence masking for stability when training on diverse data.
Agentic Task Synthesis: Generates realistic multi-turn tool-use scenarios by creating 1,800 domains and 85,000 prompts requiring reasoning across tool interactions. Cold-start initialization seeds diverse reasoning patterns.
DSA mechanism: For each query position:
# Compute all token similarities
scores = query @ keys.T # O(Lk) if using efficient indexing
top_k_indices = topk(scores, k)
attended_values = gather(values, top_k_indices)
output = softmax(scores[top_k_indices]) @ attended_values
RL post-training: Allocate compute budget:
total_training_steps = N
pretrain_steps = 0.9 * N
rl_steps = 0.1 * N
Agentic environment synthesis: Generate diverse tool-use scenarios:
for domain in 1800_domains:
for scenario in [reasoning, planning, execution]:
synthetic_prompt = generate(domain, scenario)
add_to_training_data(synthetic_prompt)
testing
Uses flow maps as look-ahead operators to enable principled reward-guided diffusion by predicting trajectory endpoints at any denoising step. Deploy when applying rewards or preferences to diffusion trajectories with meaningful gradients throughout generation.
testing
Train language models where each expert learns independently on closed datasets, enabling flexible inference with selective data inclusion or exclusion. 41% performance improvement while allowing users to opt out of specific data sources without retraining.
data-ai
Understand how token generation flexibility in diffusion LMs paradoxically constrains reasoning, as models exploit ordering flexibility to avoid uncertain tokens, and apply simplified approaches that preserve parallel decoding benefits. Use when optimizing diffusion-based language models for reasoning tasks.
devops
Enable LLM agents to improve continuously during deployment by constructing structured experience libraries through self-reflection on successes and failures—achieving 23% improvement on reasoning without gradient-based parameter updates or external training.