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_38100
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
patch_diff
advanced
Task: patch_diff Topic: Code-specialized model families and sizing tradeoffs Difficulty: advanced 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. 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": [ "ci_integration", "security_gates", "repo_scale_reasoning", "documentation" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
39b4c9222f138cceaf12d1e154cf5706611f991f
train_38101
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
patch_diff
expert
Task: patch_diff 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. 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", "reproducibility", "auditability", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
1d3dd395b00dbc696282980bb3b1ccee90daf49e
train_38102
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: 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. 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": [ "documentation", "tooling", "reproducibility", "ci_integration" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ba0070915dbc38fcab39d86f202689e203e4fe7b
train_38103
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: 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "C#", "developer_needs": [ "repo_scale_reasoning", "ci_integration", "auditability", "tooling" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c355739a274402fa08cc2c4fe60446f00c3404d5
train_38104
2026-01-01T00:00:00
Self-improving agents and feedback loops
code
expert
Task: code Topic: Self-improving agents and feedback loops 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. 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": [ "tests_are_truth", "evaluation_metrics", "security_gates", "reproducibility" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
97520ce3e5603f90c1035f039e4f67c0d2808fbe
train_38105
2026-01-01T00:00:00
Extended context and repo-scale understanding
agent_loop
expert
Task: agent_loop Topic: Extended context and repo-scale understanding Difficulty: expert 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. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "reproducibility", "tooling", "evaluation_metrics", "auditability" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4052750e833a358f2137d142f339c76ffaf8f560
train_38106
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
data_pipeline
intermediate
Task: data_pipeline Topic: Governance, provenance, and licensing for code data Difficulty: intermediate 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "C#", "developer_needs": [ "evaluation_metrics", "security_gates", "tests_are_truth", "auditability" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6b3e3a7e979b7a897aba87f8d459fcb0a103a36c
train_38107
2026-01-01T00:00:00
Self-improving agents and feedback loops
code
advanced
Task: code Topic: Self-improving agents and feedback loops Difficulty: advanced 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": [ "ci_integration", "repo_scale_reasoning", "reproducibility", "documentation" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5bf8b25a531877fda8e28c3bac4c4d9e0e26ffa5
train_38108
2026-01-01T00:00:00
Latency, cost, and reliability optimization
review
intermediate
Task: review Topic: Latency, cost, and reliability optimization Difficulty: intermediate 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. Review: correctness, security, performance, governance
[]
{ "target_language": "TypeScript", "developer_needs": [ "repo_scale_reasoning", "auditability", "ci_integration", "documentation" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
699b6db9b12c68dcf75aec7de7044999c70f5062
train_38109
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
agent_loop
intermediate
Task: agent_loop Topic: Mixture-of-Experts (MoE) for code 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. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "governance", "auditability", "security_gates", "ci_integration" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8924dd7cff2bc04471a1a6bb50cf4d4fc49406ef
train_38110
2026-01-01T00:00:00
Latency, cost, and reliability optimization
data_pipeline
advanced
Task: data_pipeline Topic: Latency, cost, and reliability optimization 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. 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": "JavaScript", "developer_needs": [ "tests_are_truth", "ci_integration", "evaluation_metrics", "governance" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3b8f1cffeaf583e7a1225e0c591e3979eb432146
train_38111
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: 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. 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": "Java", "developer_needs": [ "ci_integration", "auditability", "tooling", "security_gates" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
47ad1d09ac1a565fe51d0e91a73f98d4194ff8d9
train_38112
2026-01-01T00:00:00
Latency, cost, and reliability optimization
patch_diff
expert
Task: patch_diff Topic: Latency, cost, and reliability optimization Difficulty: expert 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "auditability", "reproducibility", "security_gates", "tests_are_truth" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0f6a5c6c8044c08a70f0a49ad1ca6fbe351e76b0
train_38113
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
explain
expert
Task: explain Topic: Reasoning-first coding models and tunable deliberation Difficulty: expert 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "TypeScript", "developer_needs": [ "repo_scale_reasoning", "tooling", "ci_integration", "reproducibility" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
29bac71755cf8b488e33ca97eae27e35f804878c
train_38114
2026-01-01T00:00:00
Extended context and repo-scale understanding
code
intermediate
Task: code Topic: Extended context and repo-scale understanding Difficulty: intermediate Target language: Rust 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": "Rust", "developer_needs": [ "governance", "cost_latency_tradeoffs", "ci_integration", "auditability" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e5381d8fa9a364e3a3c097617c5e109dcfc73156
train_38115
2026-01-01T00:00:00
Latency, cost, and reliability optimization
explain
intermediate
Task: explain Topic: Latency, cost, and reliability optimization 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "JavaScript", "developer_needs": [ "documentation", "cost_latency_tradeoffs", "evaluation_metrics", "tests_are_truth" ], "moe_experts": [ "governance_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f8a2a1451339d0503199878d4c0170653d6569bb
train_38116
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: 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "TypeScript", "developer_needs": [ "documentation", "tooling", "cost_latency_tradeoffs", "security_gates" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
1cd2ca3b30521db7bb1bef09e1f105bf2f691571
train_38117
2026-01-01T00:00:00
Extended context and repo-scale understanding
agent_loop
advanced
Task: agent_loop Topic: Extended context and repo-scale understanding Difficulty: advanced 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Python", "developer_needs": [ "reproducibility", "repo_scale_reasoning", "cost_latency_tradeoffs", "governance" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9e6ad4179389366c2421a49e301576292ba5650c
train_38118
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
compare
advanced
Task: compare Topic: Mixture-of-Experts (MoE) for code Difficulty: advanced 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. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Python", "developer_needs": [ "governance", "cost_latency_tradeoffs", "documentation", "ci_integration" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fdfcfdf1a5b21bad54abafeff81b7d2e7ab83edb
train_38119
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: 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": [ "repo_scale_reasoning", "governance", "ci_integration", "cost_latency_tradeoffs" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
72742ce671a3521b25afc1a3b396da93775c2525
train_38120
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
explain
advanced
Task: explain Topic: Code-specialized model families and sizing tradeoffs 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. 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": "TypeScript", "developer_needs": [ "auditability", "tests_are_truth", "tooling", "security_gates" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3e9c29839dfd37aa3678d4a67ab5116f4a53a2e9
train_38121
2026-01-01T00:00:00
Latency, cost, and reliability optimization
patch_diff
intermediate
Task: patch_diff Topic: Latency, cost, and reliability optimization 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. 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": "Rust", "developer_needs": [ "reproducibility", "tooling", "auditability", "repo_scale_reasoning" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
500eaac51a4bda61540061e512dc7b675439df6c
train_38122
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: 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": "TypeScript", "developer_needs": [ "tooling", "documentation", "cost_latency_tradeoffs", "security_gates" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
71dabc92bba7dbf6a3c1d0fc8c32e43385aa5f50
train_38123
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
data_pipeline
intermediate
Task: data_pipeline Topic: Dataset curation pipelines (filter, dedupe, quality) 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. 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": [ "repo_scale_reasoning", "auditability", "security_gates", "evaluation_metrics" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
77e472682229cbb37dd7f7c189d4e2a094d34dea
train_38124
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: 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Bash", "developer_needs": [ "governance", "tooling", "security_gates", "tests_are_truth" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
629ea52fe3f88e076cd410b6b88e2c8254e8ed2e
train_38125
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
review
expert
Task: review 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. Review: correctness, security, performance, governance
[]
{ "target_language": "SQL", "developer_needs": [ "reproducibility", "tooling", "repo_scale_reasoning", "tests_are_truth" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
18ccbb910ece84372ac1c582194428cd6682000b
train_38126
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
review
advanced
Task: review Topic: Code-specialized model families and sizing tradeoffs 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. Review: correctness, security, performance, governance
[]
{ "target_language": "C#", "developer_needs": [ "ci_integration", "repo_scale_reasoning", "governance", "reproducibility" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fb871a716f5b5c43978c48941244f4fa880b2351
train_38127
2026-01-01T00:00:00
Secure code generation and policy gates
agent_loop
intermediate
Task: agent_loop Topic: Secure code generation and policy gates 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. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "tooling", "documentation", "repo_scale_reasoning", "ci_integration" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
faab22d129ac740a853efac689438c21abd44254
train_38128
2026-01-01T00:00:00
Secure code generation and policy gates
data_pipeline
intermediate
Task: data_pipeline Topic: Secure code generation and policy gates Difficulty: intermediate 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. 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": "Rust", "developer_needs": [ "documentation", "evaluation_metrics", "tooling", "tests_are_truth" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b635f408caa4c8da3be8f02cde75e3faa5edc6db
train_38129
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
code
intermediate
Task: code Topic: Code-specialized model families and sizing tradeoffs 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": [ "governance", "tooling", "evaluation_metrics", "auditability" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
64bade8ba4e149371195af87879b1450fe5cf6e1
train_38130
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: 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Bash", "developer_needs": [ "governance", "reproducibility", "tooling", "documentation" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
14317ab0a64f1cea593df5b10d539421cf71826e
train_38131
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
design
advanced
Task: design Topic: SWE-bench style real-repo evaluation Difficulty: advanced 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "ci_integration", "security_gates", "governance", "documentation" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c97c7296f4fb558d402799da5ec4e99acbd85ff1
train_38132
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
compare
advanced
Task: compare Topic: Mixture-of-Experts (MoE) for code 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. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "tooling", "security_gates", "cost_latency_tradeoffs", "documentation" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b95a29768738c549a16f0d6e83db1b77a3a013e9
train_38133
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
compare
advanced
Task: compare 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. 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": [ "tooling", "tests_are_truth", "reproducibility", "security_gates" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2f4a4a65ba8b28c018ed09d36da62fafebf0dd16
train_38134
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
eval
intermediate
Task: eval Topic: Tool calling, sandboxes, and CI integration 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": [ "reproducibility", "tooling", "security_gates", "documentation" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
30d5b412b52e4933b1f2158e5b75479d7e4b729b
train_38135
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: 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "SQL", "developer_needs": [ "tests_are_truth", "reproducibility", "documentation", "auditability" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f6e4b68b1daec963bac5c8c77f69c6e7fa0da41f
train_38136
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
data_pipeline
advanced
Task: data_pipeline 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Java", "developer_needs": [ "tooling", "evaluation_metrics", "auditability", "reproducibility" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e696eff0d09b9028b29e9edb218a3a005b915310
train_38137
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
explain
intermediate
Task: explain Topic: Mixture-of-Experts (MoE) for code 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "cost_latency_tradeoffs", "ci_integration", "repo_scale_reasoning", "auditability" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bcad9d5f7885ecf03961aad75ec0e9a84301bac8
train_38138
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
design
intermediate
Task: design Topic: Multimodal dev workflows (docs, diagrams, traces) 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": [ "evaluation_metrics", "ci_integration", "auditability", "reproducibility" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f3cdfcfc0a3cc8690acf1275e266182d4fd61d96
train_38139
2026-01-01T00:00:00
Self-improving agents and feedback loops
eval
intermediate
Task: eval Topic: Self-improving agents and feedback loops Difficulty: intermediate Target language: Bash 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. 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": "Bash", "developer_needs": [ "cost_latency_tradeoffs", "reproducibility", "tests_are_truth", "tooling" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7ee73b6b9082f08728f45d11ab84993bbb1a2057
train_38140
2026-01-01T00:00:00
Latency, cost, and reliability optimization
compare
expert
Task: compare Topic: Latency, cost, and reliability optimization Difficulty: expert 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. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "reproducibility", "ci_integration", "tooling", "security_gates" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4cb41868de41a4990a125354269d89cd3032edce
train_38141
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
explain
intermediate
Task: explain Topic: Multimodal dev workflows (docs, diagrams, traces) 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "JavaScript", "developer_needs": [ "governance", "evaluation_metrics", "tooling", "repo_scale_reasoning" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
96ccfeb8a9fa1b6e75018d826c63baea8f0b49fb
train_38142
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
agent_loop
advanced
Task: agent_loop Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "SQL", "developer_needs": [ "documentation", "tests_are_truth", "repo_scale_reasoning", "security_gates" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
376916fee74317ad9bbdcb48153fad5df3314f31
train_38143
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
agent_loop
expert
Task: agent_loop 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Rust", "developer_needs": [ "repo_scale_reasoning", "evaluation_metrics", "auditability", "cost_latency_tradeoffs" ], "moe_experts": [ "governance_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
67848c1fe56f084369d97d96331063a43a347404
train_38144
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: 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. 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": "Go", "developer_needs": [ "documentation", "ci_integration", "repo_scale_reasoning", "tooling" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
844b0545793c2aad3d87db563eaff94eaba829c1
train_38145
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
review
advanced
Task: review Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced 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": [ "cost_latency_tradeoffs", "governance", "repo_scale_reasoning", "auditability" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0f2560a2f23b0e7cd7c6c423ad44048366d070cb
train_38146
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
eval
advanced
Task: eval Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: advanced 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. 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": "Go", "developer_needs": [ "reproducibility", "governance", "documentation", "tooling" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
695ac3cfa5c8d7b2aaf6ad107183be0461fa3457
train_38147
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
failure_analysis
advanced
Task: failure_analysis Topic: SWE-bench style real-repo evaluation 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. 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": [ "security_gates", "reproducibility", "evaluation_metrics", "tooling" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7264bfeedf3bef8711ebdb33f57363090d7184e7
train_38148
2026-01-01T00:00:00
Self-improving agents and feedback loops
eval
intermediate
Task: eval Topic: Self-improving agents and feedback loops 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": [ "governance", "repo_scale_reasoning", "tests_are_truth", "ci_integration" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fa6e4f8db9f4ffe078acee91304953f0b598e08d
train_38149
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: 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": "JavaScript", "developer_needs": [ "repo_scale_reasoning", "security_gates", "documentation", "ci_integration" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2f595102971c1722de7c703d1eb167802f212299
train_38150
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
failure_analysis
expert
Task: failure_analysis Topic: SWE-bench style real-repo evaluation 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. 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": "C#", "developer_needs": [ "ci_integration", "tests_are_truth", "reproducibility", "governance" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3ba27224adda7f3dcf70b6be91be72ca950a1b41
train_38151
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
design
advanced
Task: design Topic: Mixture-of-Experts (MoE) for code Difficulty: advanced 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. 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": "Python", "developer_needs": [ "tooling", "repo_scale_reasoning", "auditability", "ci_integration" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7ce0c15f3b3fae3139251a3c20e6de4cfb7fdbaf
train_38152
2026-01-01T00:00:00
Secure code generation and policy gates
design
expert
Task: design Topic: Secure code generation and policy gates Difficulty: expert 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "JavaScript", "developer_needs": [ "reproducibility", "ci_integration", "documentation", "repo_scale_reasoning" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c7334d2cbfc9af84bde4683bb78017fa099d0c80
train_38153
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: 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": [ "tooling", "tests_are_truth", "ci_integration", "evaluation_metrics" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
132df8d39b6a87d9d7d880646db1c6d1ae708ff2
train_38154
2026-01-01T00:00:00
Latency, cost, and reliability optimization
explain
intermediate
Task: explain Topic: Latency, cost, and reliability optimization 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "tests_are_truth", "auditability", "reproducibility", "governance" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f646e3d72cf1c8e891ee2c874c8bc13bb18fbb27
train_38155
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
patch_diff
intermediate
Task: patch_diff Topic: Reasoning-first coding models and tunable deliberation Difficulty: intermediate Target language: Go 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": "Go", "developer_needs": [ "tooling", "governance", "evaluation_metrics", "documentation" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
45c4c8828bee8d193c4090f709166e30b28c1527
train_38156
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
agent_loop
intermediate
Task: agent_loop Topic: Reasoning-first coding models and tunable deliberation Difficulty: intermediate Target language: Java 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
[ "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", "ci_integration", "security_gates", "cost_latency_tradeoffs" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
718b1c62205f12093ba2c840a6293c956454d891
train_38157
2026-01-01T00:00:00
Latency, cost, and reliability optimization
compare
intermediate
Task: compare Topic: Latency, cost, and reliability optimization 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": [ "governance", "ci_integration", "auditability", "reproducibility" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
181e29d9e387c90224fceb55c4a203373528ecef
train_38158
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
code
expert
Task: code Topic: SWE-bench style real-repo evaluation Difficulty: expert 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "TypeScript", "developer_needs": [ "documentation", "auditability", "reproducibility", "tests_are_truth" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f57076602f82bfdaf3fbc20bb922dfe27e7196e5
train_38159
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: 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": [ "reproducibility", "security_gates", "tooling", "repo_scale_reasoning" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0e7acb50314711f23add8b3f990ac5344d3f7ffe
train_38160
2026-01-01T00:00:00
Extended context and repo-scale understanding
explain
advanced
Task: explain Topic: Extended context and repo-scale understanding Difficulty: advanced 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. 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": [ "reproducibility", "documentation", "repo_scale_reasoning", "security_gates" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
eb4b7c4a60f7aa94e79183aa8b3adc15cec12fb8
train_38161
2026-01-01T00:00:00
Latency, cost, and reliability optimization
review
advanced
Task: review Topic: Latency, cost, and reliability optimization Difficulty: advanced 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "tests_are_truth", "governance", "tooling", "documentation" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f5177f29620bb55c44c6d602fb2e0b7672a6e866
train_38162
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
design
expert
Task: design Topic: Multimodal dev workflows (docs, diagrams, traces) 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. 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": "Bash", "developer_needs": [ "auditability", "tooling", "ci_integration", "security_gates" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8b8ee63b81962015e749cb1b8e1ec11adfe987ec
train_38163
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
failure_analysis
intermediate
Task: failure_analysis Topic: Tool calling, sandboxes, and CI integration 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Python", "developer_needs": [ "cost_latency_tradeoffs", "reproducibility", "auditability", "repo_scale_reasoning" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4542d74e5c6e818adfc567822409570277f0dd3c
train_38164
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
data_pipeline
intermediate
Task: data_pipeline Topic: Code-specialized model families and sizing tradeoffs 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. 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": "JavaScript", "developer_needs": [ "tests_are_truth", "documentation", "ci_integration", "security_gates" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e0509ed9c7a40ea181c881adf2cc3bb69ffe20cc
train_38165
2026-01-01T00:00:00
Self-improving agents and feedback loops
data_pipeline
advanced
Task: data_pipeline Topic: Self-improving agents and feedback loops Difficulty: advanced 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", "tests_are_truth", "repo_scale_reasoning", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
36ffdeb41d81f9d6af07ea88bdef7bc6788f613b
train_38166
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
failure_analysis
expert
Task: failure_analysis Topic: Reasoning-first coding models and tunable deliberation 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "C#", "developer_needs": [ "evaluation_metrics", "cost_latency_tradeoffs", "reproducibility", "auditability" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b3e78693f1280e25526350aaa742ba386e258583
train_38167
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
eval
advanced
Task: eval Topic: Model merging, distillation, and continued pretraining Difficulty: advanced 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. 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": "JavaScript", "developer_needs": [ "repo_scale_reasoning", "tooling", "governance", "reproducibility" ], "moe_experts": [ "performance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5a6288970b4dfe00e2657d8cd67792925a6572b6
train_38168
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: 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Go", "developer_needs": [ "tests_are_truth", "reproducibility", "documentation", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
61be3fec5a75db53b7cc4a384cd400f0dd8e97fa
train_38169
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
failure_analysis
expert
Task: failure_analysis Topic: Model merging, distillation, and continued pretraining Difficulty: expert 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
[ "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", "auditability", "cost_latency_tradeoffs", "governance" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
630a594cef9f7a9d03903aadbaaf5cdfd4dc43f6
train_38170
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: 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": [ "ci_integration", "security_gates", "auditability", "tests_are_truth" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
30eda413a1a6ebcd895031c1c8c54081a67ef409
train_38171
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
compare
expert
Task: compare Topic: Mixture-of-Experts (MoE) for code Difficulty: expert 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "JavaScript", "developer_needs": [ "repo_scale_reasoning", "documentation", "reproducibility", "governance" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
350441f8d39b59d5b8262ade3615a95b783ec0c2
train_38172
2026-01-01T00:00:00
Self-improving agents and feedback loops
review
advanced
Task: review Topic: Self-improving agents and feedback loops 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Java", "developer_needs": [ "ci_integration", "tooling", "reproducibility", "tests_are_truth" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
78bc6bafc3bb1ca9313365c176271fba830d3bd3
train_38173
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
review
advanced
Task: review Topic: Reasoning-first coding models and tunable deliberation Difficulty: advanced 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. Review: correctness, security, performance, governance
[]
{ "target_language": "C#", "developer_needs": [ "documentation", "reproducibility", "tooling", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
35ac96c98f7fa7d47bbd7150d1d0106fc1222938
train_38174
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
agent_loop
advanced
Task: agent_loop Topic: Model merging, distillation, and continued pretraining Difficulty: advanced 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. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "TypeScript", "developer_needs": [ "security_gates", "evaluation_metrics", "auditability", "documentation" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
07c3962db9613cfff93732410b85e6771ff5f83c
train_38175
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
agent_loop
advanced
Task: agent_loop Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: advanced 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Java", "developer_needs": [ "ci_integration", "governance", "auditability", "cost_latency_tradeoffs" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
eff39c3e451942da81f0bc0f1923f1ff175a3be8
train_38176
2026-01-01T00:00:00
Latency, cost, and reliability optimization
agent_loop
advanced
Task: agent_loop Topic: Latency, cost, and reliability optimization 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "SQL", "developer_needs": [ "evaluation_metrics", "auditability", "documentation", "security_gates" ], "moe_experts": [ "governance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
20b8095a5c978b6f1ff5e016652c2ada66292729
train_38177
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
agent_loop
advanced
Task: agent_loop Topic: Governance, provenance, and licensing for code data Difficulty: advanced 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "JavaScript", "developer_needs": [ "governance", "documentation", "security_gates", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dbc782db23ef8469d7c803b5e75ec66279ac015e
train_38178
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
explain
expert
Task: explain Topic: Code-specialized model families and sizing tradeoffs 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. 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": "Python", "developer_needs": [ "governance", "reproducibility", "cost_latency_tradeoffs", "evaluation_metrics" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a8dc816b5aa8441ce32b29467f3393a80b981faf
train_38179
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: 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
[]
{ "target_language": "SQL", "developer_needs": [ "security_gates", "evaluation_metrics", "auditability", "ci_integration" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2765f7c863be87c10aebb5aabcf65f245720c341
train_38180
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: 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": "Java", "developer_needs": [ "reproducibility", "tooling", "documentation", "tests_are_truth" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0e8338a247da74c90fb31648746a2f551bccbf25
train_38181
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
data_pipeline
advanced
Task: data_pipeline Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Go", "developer_needs": [ "security_gates", "evaluation_metrics", "reproducibility", "ci_integration" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0a356b4d8e097cadf23acccff8f1330dbcced704
train_38182
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
data_pipeline
advanced
Task: data_pipeline Topic: SWE-bench style real-repo evaluation 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. 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": "Go", "developer_needs": [ "cost_latency_tradeoffs", "reproducibility", "security_gates", "tooling" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f29fd1df44bbf61453c9a64e94b9c18f45cf1b0b
train_38183
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: 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "auditability", "documentation", "evaluation_metrics", "reproducibility" ], "moe_experts": [ "performance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7cb47f40e814d024258c1b01cd7c7b194360875e
train_38184
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
review
advanced
Task: review Topic: Reasoning-first coding models and tunable deliberation 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. Review: correctness, security, performance, governance
[]
{ "target_language": "C#", "developer_needs": [ "documentation", "security_gates", "governance", "reproducibility" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a0afb1b0f7d828aa7708e4ab2939bfcaa5aabc94
train_38185
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
patch_diff
expert
Task: patch_diff Topic: Multimodal dev workflows (docs, diagrams, traces) 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. 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": "Java", "developer_needs": [ "tests_are_truth", "governance", "documentation", "reproducibility" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
becbf1219b7533efe464486c3beb40f21e0054c8
train_38186
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
agent_loop
advanced
Task: agent_loop Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced Target language: Java 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": "Java", "developer_needs": [ "repo_scale_reasoning", "reproducibility", "governance", "security_gates" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3410bdf4813ccd73c3a15fd3fa499faec3640ef4
train_38187
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
review
intermediate
Task: review Topic: Model merging, distillation, and continued pretraining Difficulty: intermediate 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. 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": [ "documentation", "governance", "security_gates", "tests_are_truth" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
319f89746c0ae0be9f83e39aba7ac3664bb3444f
train_38188
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: 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
[]
{ "target_language": "SQL", "developer_needs": [ "repo_scale_reasoning", "tests_are_truth", "reproducibility", "tooling" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
80a341b502dce43351458d77d8398e97b81836c2
train_38189
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
eval
advanced
Task: eval Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced 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. 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": "C#", "developer_needs": [ "tests_are_truth", "evaluation_metrics", "auditability", "repo_scale_reasoning" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bc664b73f7aecd8de472171ff2c2d704518a19a6
train_38190
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: 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. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "auditability", "tests_are_truth", "tooling", "security_gates" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
611c681549d82a0f0fe822c856f32c2bfd599f80
train_38191
2026-01-01T00:00:00
Extended context and repo-scale understanding
design
advanced
Task: design Topic: Extended context and repo-scale understanding 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "C#", "developer_needs": [ "tests_are_truth", "cost_latency_tradeoffs", "auditability", "repo_scale_reasoning" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5caa926cc2ad543ac1693d69e59cda05a28dd83d
train_38192
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
compare
expert
Task: compare Topic: Dataset curation pipelines (filter, dedupe, quality) 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Python", "developer_needs": [ "ci_integration", "security_gates", "reproducibility", "tests_are_truth" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7cd4cb462c653697f7e2724c65caa92f605c5477
train_38193
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: Rust 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": "Rust", "developer_needs": [ "ci_integration", "reproducibility", "governance", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
daa46feb0024e4e8e04c20a5b5ff2d7727c3212e
train_38194
2026-01-01T00:00:00
Self-improving agents and feedback loops
failure_analysis
advanced
Task: failure_analysis Topic: Self-improving agents and feedback loops Difficulty: advanced 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "TypeScript", "developer_needs": [ "documentation", "cost_latency_tradeoffs", "ci_integration", "evaluation_metrics" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
003dd16a3f8419bba77091e8280f1d7ae5951762
train_38195
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: 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. 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": "Rust", "developer_needs": [ "cost_latency_tradeoffs", "evaluation_metrics", "governance", "auditability" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9750e36bb0a1c48ea6b52e72668fcb95a57e38e3
train_38196
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
eval
advanced
Task: eval Topic: Tool calling, sandboxes, and CI integration Difficulty: advanced Target language: Go 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": "Go", "developer_needs": [ "tests_are_truth", "reproducibility", "tooling", "ci_integration" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d240faeb3c72a5f27ff77b30323bfb7ff8c99d21
train_38197
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
review
advanced
Task: review Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced 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. Review: correctness, security, performance, governance
[]
{ "target_language": "JavaScript", "developer_needs": [ "reproducibility", "auditability", "governance", "documentation" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c36ccc361340199c12229ea1de440b87573d0c1f
train_38198
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
eval
advanced
Task: eval Topic: Agentic coding systems (plan→edit→test→reflect) 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. 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": [ "reproducibility", "governance", "tooling", "auditability" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
be618f2e6bc8327cd4ee13a3ddc5bc91cae46333
train_38199
2026-01-01T00:00:00
Secure code generation and policy gates
patch_diff
advanced
Task: patch_diff Topic: Secure code generation and policy gates 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. 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": [ "reproducibility", "tests_are_truth", "documentation", "security_gates" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
69c40552dd2cb1290d7a3bc091aed3c3c90f77a2