id
stringlengths
11
11
created
timestamp[s]date
2026-01-01 00:00:00
2026-01-01 00:00:00
topic
stringclasses
14 values
task_type
stringclasses
10 values
difficulty
stringclasses
3 values
instruction
stringlengths
189
248
input
stringclasses
1 value
output
stringclasses
9 values
reasoning_steps
listlengths
0
5
metadata
dict
hash
stringlengths
40
40
train_12700
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
patch_diff
expert
Task: patch_diff Topic: Code-specialized model families and sizing tradeoffs Difficulty: expert Target language: SQL Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "SQL", "developer_needs": [ "evaluation_metrics", "auditability", "tests_are_truth", "tooling" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
48e50893e1ec66574ffc6ee475b14cf1933561cc
train_12701
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
patch_diff
expert
Task: patch_diff Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: expert Target language: Python Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "Python", "developer_needs": [ "cost_latency_tradeoffs", "ci_integration", "security_gates", "reproducibility" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
49fef118e5ca2ec579743bf54f10c699ed9d7b7a
train_12702
2026-01-01T00:00:00
Secure code generation and policy gates
data_pipeline
advanced
Task: data_pipeline Topic: Secure code generation and policy gates Difficulty: advanced Target language: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "security_gates", "tooling", "governance", "ci_integration" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d3a151c6667c98413d7f67f45b2d0088391e9e45
train_12703
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
data_pipeline
intermediate
Task: data_pipeline Topic: Reasoning-first coding models and tunable deliberation Difficulty: intermediate Target language: C# Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "documentation", "security_gates", "cost_latency_tradeoffs", "evaluation_metrics" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f5940c61c9b9bf4d92ac13c7db9e0386a1777ec0
train_12704
2026-01-01T00:00:00
Extended context and repo-scale understanding
compare
intermediate
Task: compare Topic: Extended context and repo-scale understanding Difficulty: intermediate Target language: Rust Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Rust", "developer_needs": [ "security_gates", "documentation", "cost_latency_tradeoffs", "tests_are_truth" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f92b714d9f570f9ee46b664f0d4c5baccd88ab52
train_12705
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
code
expert
Task: code Topic: Reasoning-first coding models and tunable deliberation Difficulty: expert Target language: Java Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Java", "developer_needs": [ "repo_scale_reasoning", "security_gates", "reproducibility", "documentation" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
05adc8e9d82f99f981fb7886f20f969313dd3c98
train_12706
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
agent_loop
expert
Task: agent_loop Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: expert Target language: Bash Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Bash", "developer_needs": [ "governance", "repo_scale_reasoning", "auditability", "ci_integration" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cb1dd7ae820a58f74c9e99f0182a2af850a01f74
train_12707
2026-01-01T00:00:00
Extended context and repo-scale understanding
patch_diff
advanced
Task: patch_diff Topic: Extended context and repo-scale understanding Difficulty: advanced Target language: Rust Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "Rust", "developer_needs": [ "security_gates", "documentation", "cost_latency_tradeoffs", "auditability" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
692a2f379fbd810d22d5093d55fc18c012c01815
train_12708
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
failure_analysis
advanced
Task: failure_analysis Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced Target language: Python Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Python", "developer_needs": [ "security_gates", "cost_latency_tradeoffs", "repo_scale_reasoning", "auditability" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
1441c144537dfd5a24a4a8deafea443fd4c61360
train_12709
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
review
intermediate
Task: review Topic: Mixture-of-Experts (MoE) for code Difficulty: intermediate Target language: Bash Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "Bash", "developer_needs": [ "auditability", "tests_are_truth", "governance", "security_gates" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c251369b437342703e6b90750982edef64e88a09
train_12710
2026-01-01T00:00:00
Extended context and repo-scale understanding
compare
advanced
Task: compare Topic: Extended context and repo-scale understanding Difficulty: advanced Target language: SQL Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "SQL", "developer_needs": [ "evaluation_metrics", "ci_integration", "tests_are_truth", "cost_latency_tradeoffs" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3ee3306d68d1b46a20b62d9b9b791b6a25c1f832
train_12711
2026-01-01T00:00:00
Latency, cost, and reliability optimization
review
advanced
Task: review Topic: Latency, cost, and reliability optimization Difficulty: advanced Target language: TypeScript Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "TypeScript", "developer_needs": [ "governance", "cost_latency_tradeoffs", "tooling", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5a4d7f25f0cc46af75086dad1e7bc9e6255cf4d3
train_12712
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
explain
expert
Task: explain Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: expert Target language: C# Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "C#", "developer_needs": [ "reproducibility", "tests_are_truth", "security_gates", "governance" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
42fe14bb145bbde31a33af4b3cbbed84c26a05db
train_12713
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
patch_diff
intermediate
Task: patch_diff Topic: Governance, provenance, and licensing for code data Difficulty: intermediate Target language: C# Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "C#", "developer_needs": [ "cost_latency_tradeoffs", "documentation", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3992c05159b4143e942dc2a6b08a03a6a7fa58cc
train_12714
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
design
expert
Task: design Topic: SWE-bench style real-repo evaluation Difficulty: expert Target language: Go Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Go", "developer_needs": [ "documentation", "ci_integration", "tooling", "cost_latency_tradeoffs" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8ec460f8128461acde45bca1ff9bc81997c3b53d
train_12715
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
review
advanced
Task: review Topic: Mixture-of-Experts (MoE) for code Difficulty: advanced Target language: Go Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "Go", "developer_needs": [ "reproducibility", "cost_latency_tradeoffs", "security_gates", "tests_are_truth" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
617d91b037191add1855ce9f42b1a746f1cdb2e1
train_12716
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
eval
intermediate
Task: eval Topic: Code-specialized model families and sizing tradeoffs Difficulty: intermediate Target language: Bash Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Bash", "developer_needs": [ "cost_latency_tradeoffs", "repo_scale_reasoning", "governance", "documentation" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
82ed5e2ad9ec30e148088d7876c3b09bc3a21237
train_12717
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
patch_diff
advanced
Task: patch_diff Topic: Reasoning-first coding models and tunable deliberation Difficulty: advanced Target language: SQL Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "SQL", "developer_needs": [ "cost_latency_tradeoffs", "ci_integration", "repo_scale_reasoning", "security_gates" ], "moe_experts": [ "performance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
83a67c6720eb103c2637020132a7990385082d5c
train_12718
2026-01-01T00:00:00
Latency, cost, and reliability optimization
review
expert
Task: review Topic: Latency, cost, and reliability optimization Difficulty: expert Target language: C# Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "C#", "developer_needs": [ "ci_integration", "tooling", "auditability", "documentation" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5860918d116d86dd0acc121c9a16973feee9baee
train_12719
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
explain
advanced
Task: explain Topic: Model merging, distillation, and continued pretraining Difficulty: advanced Target language: JavaScript Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "security_gates", "repo_scale_reasoning", "cost_latency_tradeoffs", "tooling" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4f300847821fedb7359be8dc3ec563e23df4dd72
train_12720
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
agent_loop
intermediate
Task: agent_loop Topic: SWE-bench style real-repo evaluation Difficulty: intermediate Target language: JavaScript Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "JavaScript", "developer_needs": [ "repo_scale_reasoning", "reproducibility", "tooling", "documentation" ], "moe_experts": [ "governance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f07da893fbdf656c8f4d662f2288d853f46acdbe
train_12721
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
review
expert
Task: review Topic: Reasoning-first coding models and tunable deliberation Difficulty: expert Target language: Java Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "evaluation_metrics", "governance", "cost_latency_tradeoffs", "tests_are_truth" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f8ee780588a5c922213cbfcba72a70eaf0cb1516
train_12722
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
review
expert
Task: review Topic: Mixture-of-Experts (MoE) for code Difficulty: expert Target language: Rust Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "Rust", "developer_needs": [ "auditability", "documentation", "cost_latency_tradeoffs", "governance" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f4348e2ace761aaa5df8acf931d24fd2639d928b
train_12723
2026-01-01T00:00:00
Extended context and repo-scale understanding
patch_diff
expert
Task: patch_diff Topic: Extended context and repo-scale understanding Difficulty: expert Target language: Rust Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "Rust", "developer_needs": [ "auditability", "documentation", "evaluation_metrics", "tests_are_truth" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8f7fe2d3e650bc3c51dfbe087d627e649b5f3b05
train_12724
2026-01-01T00:00:00
Secure code generation and policy gates
patch_diff
expert
Task: patch_diff Topic: Secure code generation and policy gates Difficulty: expert Target language: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Python", "developer_needs": [ "governance", "repo_scale_reasoning", "reproducibility", "auditability" ], "moe_experts": [ "governance_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4c6079fdb7cb469b855c2c79125e03b684165c08
train_12725
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
design
expert
Task: design Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: expert Target language: TypeScript Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "TypeScript", "developer_needs": [ "evaluation_metrics", "repo_scale_reasoning", "auditability", "tests_are_truth" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cb201427cbeb6237ef6c2a688c951e5e9e35a54a
train_12726
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
design
intermediate
Task: design Topic: Governance, provenance, and licensing for code data Difficulty: intermediate Target language: SQL Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "SQL", "developer_needs": [ "documentation", "governance", "reproducibility", "evaluation_metrics" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0eed7df232b1e461316c94530635a0ed6986dde5
train_12727
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
compare
expert
Task: compare Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: expert Target language: Bash Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "reproducibility", "security_gates", "tooling", "ci_integration" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b60fc2e6ad024f9d15473a8cc1e4e96b60a167ec
train_12728
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
explain
intermediate
Task: explain Topic: Tool calling, sandboxes, and CI integration Difficulty: intermediate Target language: Go Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Go", "developer_needs": [ "governance", "evaluation_metrics", "repo_scale_reasoning", "security_gates" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5810b4baf86072dd48807c7c97d87b3c451bc5fa
train_12729
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
compare
advanced
Task: compare Topic: Model merging, distillation, and continued pretraining Difficulty: advanced Target language: SQL Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "SQL", "developer_needs": [ "auditability", "cost_latency_tradeoffs", "tests_are_truth", "tooling" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3b928ff425fe573f467167856be93300dced5cc1
train_12730
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
data_pipeline
expert
Task: data_pipeline Topic: Tool calling, sandboxes, and CI integration Difficulty: expert Target language: SQL Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "evaluation_metrics", "cost_latency_tradeoffs", "documentation", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0b05b11b4f37f8c67e2f3b85343029a2ecf490a6
train_12731
2026-01-01T00:00:00
Extended context and repo-scale understanding
eval
advanced
Task: eval Topic: Extended context and repo-scale understanding Difficulty: advanced Target language: Rust Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Rust", "developer_needs": [ "auditability", "governance", "evaluation_metrics", "repo_scale_reasoning" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cdc3032216d4a5ba022260ecd5075a3621586ec7
train_12732
2026-01-01T00:00:00
Latency, cost, and reliability optimization
failure_analysis
advanced
Task: failure_analysis Topic: Latency, cost, and reliability optimization Difficulty: advanced Target language: Rust Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Rust", "developer_needs": [ "security_gates", "reproducibility", "governance", "cost_latency_tradeoffs" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ae0b5e7aae69df13fc73fb819052eb2cfbadeb58
train_12733
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
design
expert
Task: design Topic: Model merging, distillation, and continued pretraining Difficulty: expert Target language: SQL Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "repo_scale_reasoning", "reproducibility", "ci_integration", "auditability" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
10b6dbed52a726cd7402bde72e8f5158b7d3b62b
train_12734
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
agent_loop
intermediate
Task: agent_loop Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: intermediate Target language: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Java", "developer_needs": [ "evaluation_metrics", "documentation", "cost_latency_tradeoffs", "security_gates" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a09caa2f37b800df3c1fc740c001bac9fbbae498
train_12735
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
data_pipeline
intermediate
Task: data_pipeline Topic: SWE-bench style real-repo evaluation Difficulty: intermediate Target language: JavaScript Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "JavaScript", "developer_needs": [ "security_gates", "tests_are_truth", "repo_scale_reasoning", "auditability" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8630a0c573ab846066c7580e596303f947ca64c4
train_12736
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
code
intermediate
Task: code Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: intermediate Target language: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Java", "developer_needs": [ "auditability", "cost_latency_tradeoffs", "documentation", "reproducibility" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e35e0c4b28c3d4c75e683684591f1d71ed31e5b8
train_12737
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
eval
intermediate
Task: eval Topic: Reasoning-first coding models and tunable deliberation Difficulty: intermediate Target language: Go Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Go", "developer_needs": [ "tests_are_truth", "evaluation_metrics", "auditability", "reproducibility" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
56a798059c23d7a4d300fc26020330bd549711e8
train_12738
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
eval
expert
Task: eval Topic: Reasoning-first coding models and tunable deliberation Difficulty: expert Target language: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Python", "developer_needs": [ "security_gates", "tooling", "tests_are_truth", "documentation" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2daddfb16c571bb8505e1e554629bbdcc8fa7e6c
train_12739
2026-01-01T00:00:00
Latency, cost, and reliability optimization
data_pipeline
expert
Task: data_pipeline Topic: Latency, cost, and reliability optimization Difficulty: expert Target language: Java Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Java", "developer_needs": [ "ci_integration", "tooling", "evaluation_metrics", "documentation" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
db61d128ef676834251c34431185ba142a619c9c
train_12740
2026-01-01T00:00:00
Secure code generation and policy gates
eval
advanced
Task: eval Topic: Secure code generation and policy gates Difficulty: advanced Target language: C# Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "C#", "developer_needs": [ "evaluation_metrics", "repo_scale_reasoning", "reproducibility", "security_gates" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
65a90dbc3d71b89d8bb82c34e2508cc2b48e4552
train_12741
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
explain
advanced
Task: explain Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced Target language: C# Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "C#", "developer_needs": [ "ci_integration", "tooling", "documentation", "cost_latency_tradeoffs" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8fc16790ca6f57b4afa2a9f55863a60842da893e
train_12742
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
explain
intermediate
Task: explain Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: intermediate Target language: SQL Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "documentation", "repo_scale_reasoning", "auditability", "ci_integration" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
41c64226b67773a3f580ee296ecbc141688127cc
train_12743
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
code
expert
Task: code Topic: Mixture-of-Experts (MoE) for code Difficulty: expert Target language: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Scaffold: ```python def agent_loop(plan, edit, test, issue, max_iters=4): history = [] p = plan(issue) for _ in range(max_iters): patch = edit(issue, p) ok, report = test(patch) history.append({"plan": p, "ok": ok}) if ok: return patch, history p = p + " | refine" return patch, history ```
[]
{ "target_language": "Python", "developer_needs": [ "repo_scale_reasoning", "cost_latency_tradeoffs", "tooling", "governance" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2ec6d6bbf0d50914366b9f41b921341dddeb4ec7
train_12744
2026-01-01T00:00:00
Latency, cost, and reliability optimization
data_pipeline
expert
Task: data_pipeline Topic: Latency, cost, and reliability optimization Difficulty: expert Target language: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "auditability", "tooling", "governance", "tests_are_truth" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b809c6764e62c66561a798a37f053c992d42ce71
train_12745
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
review
intermediate
Task: review Topic: Code-specialized model families and sizing tradeoffs Difficulty: intermediate Target language: Bash Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "Bash", "developer_needs": [ "evaluation_metrics", "tooling", "cost_latency_tradeoffs", "tests_are_truth" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
20c3eb62e0a69b71a059c23953ccec564c0b76a6
train_12746
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
eval
expert
Task: eval Topic: Governance, provenance, and licensing for code data Difficulty: expert Target language: JavaScript Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "JavaScript", "developer_needs": [ "documentation", "auditability", "evaluation_metrics", "ci_integration" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9c941c72736a295f13cc542095bfa4ee0dd71176
train_12747
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
failure_analysis
intermediate
Task: failure_analysis Topic: Reasoning-first coding models and tunable deliberation Difficulty: intermediate Target language: SQL Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "documentation", "tests_are_truth", "governance", "reproducibility" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0d55e57563a7f2b8e9a13df9aba20ce75cc80e27
train_12748
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
patch_diff
intermediate
Task: patch_diff Topic: SWE-bench style real-repo evaluation Difficulty: intermediate Target language: Python Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Python", "developer_needs": [ "tests_are_truth", "documentation", "ci_integration", "auditability" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cd89096d2f0ea12f2962c862c8027347606d8f5a
train_12749
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
code
expert
Task: code Topic: Code-specialized model families and sizing tradeoffs Difficulty: expert Target language: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Java", "developer_needs": [ "security_gates", "tests_are_truth", "evaluation_metrics", "auditability" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
500ebc9e6f05abab3c870640b6b09f9f761c2e36
train_12750
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
code
intermediate
Task: code Topic: Governance, provenance, and licensing for code data Difficulty: intermediate Target language: TypeScript Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "TypeScript", "developer_needs": [ "documentation", "auditability", "reproducibility", "security_gates" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
72aa1c499c543c9e51f533f97d2d93a3677c5946
train_12751
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
compare
advanced
Task: compare Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: advanced Target language: Go Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Go", "developer_needs": [ "tooling", "tests_are_truth", "cost_latency_tradeoffs", "ci_integration" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
1dd8a2ad1442328ee862c63cf0698eddb396c05a
train_12752
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
patch_diff
intermediate
Task: patch_diff Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: intermediate Target language: Go Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "Go", "developer_needs": [ "auditability", "governance", "security_gates", "ci_integration" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e5d64e0e0485f93b1de3882c078ba8c90996ba0b
train_12753
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
data_pipeline
expert
Task: data_pipeline Topic: Mixture-of-Experts (MoE) for code Difficulty: expert Target language: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Python", "developer_needs": [ "repo_scale_reasoning", "auditability", "tooling", "documentation" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fa33adc78d0b9f20d34336d7fde7fdabfac6a5c2
train_12754
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
patch_diff
advanced
Task: patch_diff Topic: Reasoning-first coding models and tunable deliberation Difficulty: advanced Target language: SQL Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "SQL", "developer_needs": [ "tests_are_truth", "security_gates", "evaluation_metrics", "tooling" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
75a7ed94cc1e1785cfe53d261aefe078bbfaa1d5
train_12755
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
explain
intermediate
Task: explain Topic: Tool calling, sandboxes, and CI integration Difficulty: intermediate Target language: Rust Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Rust", "developer_needs": [ "cost_latency_tradeoffs", "auditability", "repo_scale_reasoning", "governance" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b9c7250e9d722595c505f57eee1555f582da600d
train_12756
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
eval
advanced
Task: eval Topic: Governance, provenance, and licensing for code data Difficulty: advanced Target language: TypeScript Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "TypeScript", "developer_needs": [ "tooling", "evaluation_metrics", "reproducibility", "auditability" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6e31b8c76327a8cdfc0abf58be44fd2111b32055
train_12757
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
code
intermediate
Task: code Topic: SWE-bench style real-repo evaluation Difficulty: intermediate Target language: C# Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "repo_scale_reasoning", "evaluation_metrics", "tooling", "documentation" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6d3ef1ead2deab2046a9912a83575fd63191f785
train_12758
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
patch_diff
intermediate
Task: patch_diff Topic: Code-specialized model families and sizing tradeoffs Difficulty: intermediate Target language: SQL Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "reproducibility", "ci_integration", "governance", "evaluation_metrics" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c9440b678c57def1c15506f2c9ed361c59fbf5b5
train_12759
2026-01-01T00:00:00
Latency, cost, and reliability optimization
compare
intermediate
Task: compare Topic: Latency, cost, and reliability optimization Difficulty: intermediate Target language: SQL Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "governance", "repo_scale_reasoning", "documentation", "auditability" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e176f4614c3e4ea8d3a3cba98f880b4a94aa23c4
train_12760
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
failure_analysis
intermediate
Task: failure_analysis Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: intermediate Target language: Python Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Python", "developer_needs": [ "tests_are_truth", "cost_latency_tradeoffs", "documentation", "repo_scale_reasoning" ], "moe_experts": [ "performance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
722c2d6a88f933f47fa5bd9834d684015d654e9c
train_12761
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
eval
intermediate
Task: eval Topic: Governance, provenance, and licensing for code data Difficulty: intermediate Target language: TypeScript Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "TypeScript", "developer_needs": [ "governance", "tests_are_truth", "auditability", "repo_scale_reasoning" ], "moe_experts": [ "performance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9bc93c7ffb9eb2eec10a08a35e688e25931a9b14
train_12762
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
patch_diff
intermediate
Task: patch_diff Topic: Governance, provenance, and licensing for code data Difficulty: intermediate Target language: Bash Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "Bash", "developer_needs": [ "tooling", "ci_integration", "reproducibility", "tests_are_truth" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7bd26117151e31e6183df27415d5b9d9a1418faa
train_12763
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
compare
intermediate
Task: compare Topic: Code-specialized model families and sizing tradeoffs Difficulty: intermediate Target language: JavaScript Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "JavaScript", "developer_needs": [ "evaluation_metrics", "security_gates", "reproducibility", "auditability" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a8daeb0b0dc212ddff55e86db3360c77869af723
train_12764
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
review
expert
Task: review Topic: Code-specialized model families and sizing tradeoffs Difficulty: expert Target language: Go Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "Go", "developer_needs": [ "governance", "ci_integration", "reproducibility", "repo_scale_reasoning" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3f2988581604572abbb63e9c23cfc597e96dde88
train_12765
2026-01-01T00:00:00
Latency, cost, and reliability optimization
review
expert
Task: review Topic: Latency, cost, and reliability optimization Difficulty: expert Target language: Go Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Go", "developer_needs": [ "reproducibility", "evaluation_metrics", "governance", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3d363f35331700701dd423653455503e7ecb1a30
train_12766
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
data_pipeline
intermediate
Task: data_pipeline Topic: Mixture-of-Experts (MoE) for code Difficulty: intermediate Target language: Go Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Go", "developer_needs": [ "ci_integration", "security_gates", "governance", "reproducibility" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
243893d38ffcee49347a8e012b134f3e63b388b5
train_12767
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
eval
advanced
Task: eval Topic: Reasoning-first coding models and tunable deliberation Difficulty: advanced Target language: Java Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "tests_are_truth", "documentation", "tooling", "ci_integration" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
47f4168c6b1d2e4d5244d6237b391db3d9e49ca5
train_12768
2026-01-01T00:00:00
Self-improving agents and feedback loops
data_pipeline
intermediate
Task: data_pipeline Topic: Self-improving agents and feedback loops Difficulty: intermediate Target language: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Python", "developer_needs": [ "reproducibility", "tooling", "security_gates", "auditability" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5cb6a59dd3fbdd6f7d46b0b578ad0a37dcdf66da
train_12769
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
code
intermediate
Task: code Topic: Mixture-of-Experts (MoE) for code Difficulty: intermediate Target language: Java Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Java", "developer_needs": [ "governance", "tooling", "repo_scale_reasoning", "evaluation_metrics" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d507561f93a1cec220fb3d8e7dd13af596de42b9
train_12770
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
code
expert
Task: code Topic: Model merging, distillation, and continued pretraining Difficulty: expert Target language: SQL Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "governance", "auditability", "tooling", "cost_latency_tradeoffs" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b26fa25dc42dc4ae05398d245c4df84f7de2ba8c
train_12771
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
compare
intermediate
Task: compare Topic: Model merging, distillation, and continued pretraining Difficulty: intermediate Target language: Python Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Python", "developer_needs": [ "governance", "security_gates", "tests_are_truth", "cost_latency_tradeoffs" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
771ead1205228cf62751dd026de7638e8ec328b4
train_12772
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
data_pipeline
expert
Task: data_pipeline Topic: Governance, provenance, and licensing for code data Difficulty: expert Target language: Java Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Java", "developer_needs": [ "auditability", "governance", "reproducibility", "cost_latency_tradeoffs" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
de193034c496b353a0cfd94f3489092378dea55b
train_12773
2026-01-01T00:00:00
Self-improving agents and feedback loops
explain
advanced
Task: explain Topic: Self-improving agents and feedback loops Difficulty: advanced Target language: SQL Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "SQL", "developer_needs": [ "cost_latency_tradeoffs", "ci_integration", "security_gates", "governance" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
00ae3374b69c8340abbe958a5cdb215dc9635a08
train_12774
2026-01-01T00:00:00
Latency, cost, and reliability optimization
code
intermediate
Task: code Topic: Latency, cost, and reliability optimization Difficulty: intermediate Target language: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Scaffold: ```python def agent_loop(plan, edit, test, issue, max_iters=4): history = [] p = plan(issue) for _ in range(max_iters): patch = edit(issue, p) ok, report = test(patch) history.append({"plan": p, "ok": ok}) if ok: return patch, history p = p + " | refine" return patch, history ```
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Python", "developer_needs": [ "auditability", "reproducibility", "security_gates", "tests_are_truth" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
24dbc1edb129136045a290f6ccd480e97f03eb18
train_12775
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
explain
advanced
Task: explain Topic: SWE-bench style real-repo evaluation Difficulty: advanced Target language: SQL Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "SQL", "developer_needs": [ "tooling", "tests_are_truth", "reproducibility", "ci_integration" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7df81114d198fab3151a3ce988045b579b09df01
train_12776
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
failure_analysis
advanced
Task: failure_analysis Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: advanced Target language: JavaScript Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "security_gates", "tooling", "auditability", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
43c4b0ad397f8445bfad9d733c0ef8d948d9acf0
train_12777
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
compare
advanced
Task: compare Topic: Governance, provenance, and licensing for code data Difficulty: advanced Target language: C# Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "C#", "developer_needs": [ "tests_are_truth", "tooling", "evaluation_metrics", "security_gates" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bc85574eb04b36b7f4cc75b72d64cd088bd5ecf1
train_12778
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
design
advanced
Task: design Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced Target language: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "evaluation_metrics", "cost_latency_tradeoffs", "ci_integration", "tests_are_truth" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b3722c5051a599ebe17d3f17551d262649acc321
train_12779
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
compare
expert
Task: compare Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: expert Target language: Go Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Go", "developer_needs": [ "security_gates", "tests_are_truth", "auditability", "documentation" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ab673013637effcb6e96cdfccc793d457ba680e1
train_12780
2026-01-01T00:00:00
Self-improving agents and feedback loops
failure_analysis
intermediate
Task: failure_analysis Topic: Self-improving agents and feedback loops Difficulty: intermediate Target language: C# Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "C#", "developer_needs": [ "tests_are_truth", "security_gates", "evaluation_metrics", "ci_integration" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
77dd33830800edf6138b0fee69b5592c3d03701a
train_12781
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
compare
advanced
Task: compare Topic: Model merging, distillation, and continued pretraining Difficulty: advanced Target language: Python Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Python", "developer_needs": [ "documentation", "ci_integration", "tooling", "reproducibility" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
309da38ec78a8075c52d3931493430d8f9e789fe
train_12782
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
eval
intermediate
Task: eval Topic: Model merging, distillation, and continued pretraining Difficulty: intermediate Target language: JavaScript Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "JavaScript", "developer_needs": [ "documentation", "tooling", "security_gates", "cost_latency_tradeoffs" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a8e9ff942b26b9dde770c8d0f8f298e76468183f
train_12783
2026-01-01T00:00:00
Extended context and repo-scale understanding
code
expert
Task: code Topic: Extended context and repo-scale understanding Difficulty: expert Target language: Go Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Go", "developer_needs": [ "documentation", "governance", "repo_scale_reasoning", "auditability" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7069487b6ae48630f03f919a0b1ac1905a21d12c
train_12784
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
eval
advanced
Task: eval Topic: Mixture-of-Experts (MoE) for code Difficulty: advanced Target language: C# Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "C#", "developer_needs": [ "cost_latency_tradeoffs", "documentation", "security_gates", "governance" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8b5f065f45088a243eca9c9ee8a81a002bcedc33
train_12785
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
failure_analysis
advanced
Task: failure_analysis Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced Target language: Java Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Java", "developer_needs": [ "documentation", "tests_are_truth", "reproducibility", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a9dd35f83fce02248975208414f371f388243030
train_12786
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
patch_diff
intermediate
Task: patch_diff Topic: Model merging, distillation, and continued pretraining Difficulty: intermediate Target language: JavaScript Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "JavaScript", "developer_needs": [ "evaluation_metrics", "auditability", "governance", "security_gates" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
89fcf5eb31055ac6d121e59ee0c4309d500ed399
train_12787
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
review
intermediate
Task: review Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: intermediate Target language: Python Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "Python", "developer_needs": [ "ci_integration", "evaluation_metrics", "auditability", "governance" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
900571afa3aa82792bb6e458e1305e942936df79
train_12788
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
patch_diff
advanced
Task: patch_diff Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced Target language: SQL Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "SQL", "developer_needs": [ "repo_scale_reasoning", "tests_are_truth", "documentation", "auditability" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fc9932597b0cdfda9a74234231a93d842045b5cf
train_12789
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
review
expert
Task: review Topic: Code-specialized model families and sizing tradeoffs Difficulty: expert Target language: Bash Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "Bash", "developer_needs": [ "documentation", "auditability", "governance", "repo_scale_reasoning" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a773d616c637f0531fef45825ddeead0032f2a65
train_12790
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
review
intermediate
Task: review Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: intermediate Target language: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "Java", "developer_needs": [ "auditability", "ci_integration", "repo_scale_reasoning", "evaluation_metrics" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f77c1293d6be316bcbdb2ea4a12cced406928065
train_12791
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
agent_loop
expert
Task: agent_loop Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: expert Target language: SQL Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "SQL", "developer_needs": [ "auditability", "security_gates", "repo_scale_reasoning", "evaluation_metrics" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8967998cb9e18c58626bda50f9826ee6deb7a87b
train_12792
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
code
expert
Task: code Topic: Tool calling, sandboxes, and CI integration Difficulty: expert Target language: Go Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Go", "developer_needs": [ "cost_latency_tradeoffs", "repo_scale_reasoning", "auditability", "reproducibility" ], "moe_experts": [ "governance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bd2a7d54895639a8782da3f59c094d1aac9077de
train_12793
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
code
expert
Task: code Topic: Tool calling, sandboxes, and CI integration Difficulty: expert Target language: Bash Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "governance", "reproducibility", "tooling", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
62d2617056c2b717d1866d6fbfd5a769210fda89
train_12794
2026-01-01T00:00:00
Self-improving agents and feedback loops
compare
intermediate
Task: compare Topic: Self-improving agents and feedback loops Difficulty: intermediate Target language: Java Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Java", "developer_needs": [ "documentation", "tooling", "repo_scale_reasoning", "security_gates" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e0ff4795f0223e2da8fc18daf5cf84a9f122e26d
train_12795
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
design
expert
Task: design Topic: SWE-bench style real-repo evaluation Difficulty: expert Target language: Java Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Java", "developer_needs": [ "repo_scale_reasoning", "cost_latency_tradeoffs", "security_gates", "governance" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
891b9fabed542f69842f68c3951fd1ba5786507f
train_12796
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
patch_diff
intermediate
Task: patch_diff Topic: Code-specialized model families and sizing tradeoffs Difficulty: intermediate Target language: C# Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "C#", "developer_needs": [ "repo_scale_reasoning", "governance", "documentation", "auditability" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b2d8b8da0fb779b98befc862bd0e1093438bedbf
train_12797
2026-01-01T00:00:00
Latency, cost, and reliability optimization
explain
intermediate
Task: explain Topic: Latency, cost, and reliability optimization Difficulty: intermediate Target language: TypeScript Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "TypeScript", "developer_needs": [ "governance", "tooling", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e506a08a0c7ccfe55ab320de9c75d2fb2c25f333
train_12798
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
compare
advanced
Task: compare Topic: Code-specialized model families and sizing tradeoffs Difficulty: advanced Target language: Java Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "tooling", "governance", "evaluation_metrics", "auditability" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3be63cd75795b58027bcda8c49c6f36779b9cbda
train_12799
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
eval
intermediate
Task: eval Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: intermediate Target language: SQL Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "documentation", "tests_are_truth", "ci_integration", "repo_scale_reasoning" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5cd75448bc9feda928a48a644b7b7ebb9ecc8621