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_12600
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
code
advanced
Task: code Topic: Model merging, distillation, and continued pretraining 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. 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": [ "tests_are_truth", "cost_latency_tradeoffs", "tooling", "repo_scale_reasoning" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7804df1da499a7194d8abc14c6534e13452e4415
train_12601
2026-01-01T00:00:00
Latency, cost, and reliability optimization
data_pipeline
intermediate
Task: data_pipeline Topic: Latency, cost, and reliability optimization Difficulty: intermediate 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "JavaScript", "developer_needs": [ "evaluation_metrics", "tests_are_truth", "security_gates", "documentation" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9c12cdfb2f91f81e9881ebab902e7f5ebb37835d
train_12602
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: 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", "auditability", "cost_latency_tradeoffs", "governance" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a90c68956a153c7b15089ef1e5bd03735e19ba13
train_12603
2026-01-01T00:00:00
Secure code generation and policy gates
review
intermediate
Task: review Topic: Secure code generation and policy gates 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Rust", "developer_needs": [ "cost_latency_tradeoffs", "ci_integration", "tooling", "security_gates" ], "moe_experts": [ "agentic_systems_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
70438cee26a353aa8d8db3262c0e7012d8e81198
train_12604
2026-01-01T00:00:00
Latency, cost, and reliability optimization
data_pipeline
intermediate
Task: data_pipeline Topic: Latency, cost, and reliability optimization 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": [ "tooling", "governance", "repo_scale_reasoning", "evaluation_metrics" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
913da6160c66f5263f7571b53817a0412c37b71f
train_12605
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: 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": "TypeScript", "developer_needs": [ "tests_are_truth", "evaluation_metrics", "security_gates", "tooling" ], "moe_experts": [ "evaluation_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
70ee8ae32c9a6bda9aff3c103020ff2166e82ea9
train_12606
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
compare
advanced
Task: compare Topic: Dataset curation pipelines (filter, dedupe, quality) 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": [ "documentation", "tooling", "reproducibility", "cost_latency_tradeoffs" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
efec2bc38ed2825ab033b00e306e5e60abb76315
train_12607
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
patch_diff
advanced
Task: patch_diff Topic: Mixture-of-Experts (MoE) for code 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. 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": [ "reproducibility", "evaluation_metrics", "tests_are_truth", "documentation" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b7f930fdee283fd57890f75bd13384438ae81f2c
train_12608
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: 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": "Python", "developer_needs": [ "reproducibility", "cost_latency_tradeoffs", "security_gates", "auditability" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4ec70dea035429c151a50c5379d0c329a0db8cfc
train_12609
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
design
expert
Task: design Topic: Tool calling, sandboxes, and CI integration 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "repo_scale_reasoning", "ci_integration", "tests_are_truth", "auditability" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f83e466f624fd04ba57f76df2875004ec58c3b54
train_12610
2026-01-01T00:00:00
Extended context and repo-scale understanding
explain
intermediate
Task: explain Topic: Extended context and repo-scale understanding 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Python", "developer_needs": [ "documentation", "ci_integration", "repo_scale_reasoning", "security_gates" ], "moe_experts": [ "agentic_systems_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5b304abf5822694d96f454fd48d7fc490e64ec98
train_12611
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
code
intermediate
Task: code Topic: Model merging, distillation, and continued pretraining 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. 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": [ "governance", "repo_scale_reasoning", "auditability", "tooling" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
482e1c978a898ecad89b70adfe5a74b1028979fd
train_12612
2026-01-01T00:00:00
Secure code generation and policy gates
review
intermediate
Task: review Topic: Secure code generation and policy gates 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. 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": [ "cost_latency_tradeoffs", "security_gates", "reproducibility", "tooling" ], "moe_experts": [ "governance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3a6b83fac7e9ad52a4d97a6f53f082ec7301c9c8
train_12613
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: 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Python", "developer_needs": [ "governance", "reproducibility", "cost_latency_tradeoffs", "documentation" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
94ef400c8a5f20aac11c9aadda70a297ecff3cdd
train_12614
2026-01-01T00:00:00
Secure code generation and policy gates
eval
expert
Task: eval Topic: Secure code generation and policy gates 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "C#", "developer_needs": [ "auditability", "evaluation_metrics", "ci_integration", "tooling" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b4ec470f6afe3a37c02126303209f19d19f96dff
train_12615
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
patch_diff
intermediate
Task: patch_diff 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. 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": [ "cost_latency_tradeoffs", "governance", "reproducibility", "tooling" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
709e124b9668e18d572118938efb6c852abe28c8
train_12616
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
review
advanced
Task: review Topic: Model merging, distillation, and continued pretraining Difficulty: advanced 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": [ "tooling", "security_gates", "ci_integration", "documentation" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e2e608dac3ce1b5289b795662b529301ca3b9f42
train_12617
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: 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": [ "security_gates", "tests_are_truth", "auditability", "governance" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
421d79bae2c94d4926e0b9c135453818a3c7cf95
train_12618
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: 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": [ "evaluation_metrics", "documentation", "repo_scale_reasoning", "tests_are_truth" ], "moe_experts": [ "agentic_systems_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
76bf4e87480e2c81d14c2c85b31ac4d74d2e1620
train_12619
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: 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": "C#", "developer_needs": [ "security_gates", "tooling", "ci_integration", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c9860fc735b07c5b55490d063e4abeb89a4a90f8
train_12620
2026-01-01T00:00:00
Self-improving agents and feedback loops
design
expert
Task: design Topic: Self-improving agents and feedback loops 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
[ "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", "reproducibility", "tooling" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
97205390dc1b44cac0ac1261cb5cb5a377c41ade
train_12621
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
agent_loop
intermediate
Task: agent_loop Topic: Governance, provenance, and licensing for code data 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "JavaScript", "developer_needs": [ "cost_latency_tradeoffs", "governance", "tests_are_truth", "reproducibility" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
eadf96ae058750d41ab65481aa15cacc0a86cc4a
train_12622
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
data_pipeline
intermediate
Task: data_pipeline Topic: Agentic coding systems (plan→edit→test→reflect) 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. 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", "ci_integration", "cost_latency_tradeoffs", "reproducibility" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0a6fde3b6849411e4ce1365233d2aa4cc6006421
train_12623
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
eval
expert
Task: eval Topic: Tool calling, sandboxes, and CI integration 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "C#", "developer_needs": [ "documentation", "tooling", "repo_scale_reasoning", "governance" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4a2869e58b0edb9816f204ec6d130382a69fdd1c
train_12624
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
code
advanced
Task: code Topic: Reasoning-first coding models and tunable deliberation Difficulty: advanced 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": [ "tooling", "ci_integration", "evaluation_metrics", "auditability" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0eb4ee6da9967b4342037578f3a365838e630306
train_12625
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
agent_loop
intermediate
Task: agent_loop 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "SQL", "developer_needs": [ "repo_scale_reasoning", "security_gates", "documentation", "reproducibility" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
790eb4374d2d7a234184d63d05af0a4a9d139600
train_12626
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: 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. 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", "auditability", "cost_latency_tradeoffs", "ci_integration" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
74289afa6b536a4cdacdd9884dd66f4b2773d0c7
train_12627
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: 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": [ "repo_scale_reasoning", "documentation", "auditability", "evaluation_metrics" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4100eff78b6d041c33919fdc0aa26ca84a9366b8
train_12628
2026-01-01T00:00:00
Extended context and repo-scale understanding
failure_analysis
intermediate
Task: failure_analysis Topic: Extended context and repo-scale understanding 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. 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", "auditability", "documentation", "tooling" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
416ee131a96f5a54be9fcc10ef06ffb8eeb8b8b7
train_12629
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
compare
expert
Task: compare Topic: Reasoning-first coding models and tunable deliberation 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. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "security_gates", "cost_latency_tradeoffs", "tooling", "repo_scale_reasoning" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b5b4ede8b08424002a7aad29eaf31295d9cbb16b
train_12630
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: 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. 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": [ "tests_are_truth", "reproducibility", "cost_latency_tradeoffs", "documentation" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f25eb2e6a984defd0eda1368759dac3bd5bf2bff
train_12631
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: 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. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "TypeScript", "developer_needs": [ "repo_scale_reasoning", "tests_are_truth", "tooling", "ci_integration" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
37ccc1cf4debd1761b8f8d298373982a0b3bea69
train_12632
2026-01-01T00:00:00
Self-improving agents and feedback loops
agent_loop
expert
Task: agent_loop Topic: Self-improving agents and feedback loops 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. 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": [ "governance", "cost_latency_tradeoffs", "repo_scale_reasoning", "ci_integration" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fad6e1caf392386fcaeddf1531e121b427046937
train_12633
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: 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. 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": "JavaScript", "developer_needs": [ "repo_scale_reasoning", "cost_latency_tradeoffs", "documentation", "security_gates" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e5a0a7be38ad9ec711b5c0789f8319b49a67f85d
train_12634
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: 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Go", "developer_needs": [ "tests_are_truth", "documentation", "reproducibility", "auditability" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ed82238e8995ac7b175fe9df395e7b5a9d9fb25d
train_12635
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
agent_loop
intermediate
Task: agent_loop Topic: Code-specialized model families and sizing tradeoffs 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "SQL", "developer_needs": [ "ci_integration", "tooling", "security_gates", "documentation" ], "moe_experts": [ "agentic_systems_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
46bd3eafbf8adf6d0e5ba6e39cd6f0e7e0d79311
train_12636
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: 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "TypeScript", "developer_needs": [ "tooling", "reproducibility", "tests_are_truth", "documentation" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5f123ab618917bd1acd247493b07257afd64ee81
train_12637
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: 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
[]
{ "target_language": "Java", "developer_needs": [ "evaluation_metrics", "tests_are_truth", "reproducibility", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9aae13ff59ba03383250a8059c9edf7478799eae
train_12638
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: 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": [ "documentation", "tests_are_truth", "repo_scale_reasoning", "cost_latency_tradeoffs" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
380f5199fcc76525d375370df85e8b3bca219ff4
train_12639
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
patch_diff
intermediate
Task: patch_diff Topic: Agentic coding systems (plan→edit→test→reflect) 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": [ "documentation", "evaluation_metrics", "auditability", "tests_are_truth" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fc3fda9a4cd0471ae0acb849e9c75f5e4cf396ea
train_12640
2026-01-01T00:00:00
Extended context and repo-scale understanding
agent_loop
intermediate
Task: agent_loop Topic: Extended context and repo-scale understanding 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Rust", "developer_needs": [ "repo_scale_reasoning", "tooling", "cost_latency_tradeoffs", "security_gates" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d46ba87ae0676491a760bf9d2dab0b04bd3389d9
train_12641
2026-01-01T00:00:00
Self-improving agents and feedback loops
compare
expert
Task: compare Topic: Self-improving agents and feedback loops Difficulty: expert 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Rust", "developer_needs": [ "repo_scale_reasoning", "governance", "ci_integration", "evaluation_metrics" ], "moe_experts": [ "coding_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2449a666a5fb87f56002dd9363870ae32e43b46c
train_12642
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
design
advanced
Task: design Topic: Reasoning-first coding models and tunable deliberation 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
[]
{ "target_language": "Python", "developer_needs": [ "repo_scale_reasoning", "tooling", "reproducibility", "documentation" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
aeac424e5ac2082821f1b88cce26585903dcf9bb
train_12643
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
agent_loop
intermediate
Task: agent_loop Topic: Code-specialized model families and sizing tradeoffs 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Go", "developer_needs": [ "governance", "tests_are_truth", "tooling", "security_gates" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5cf4e04e5f18fd953e69d380ddf8a75c140fa0b7
train_12644
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: 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. 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": [ "ci_integration", "governance", "evaluation_metrics", "auditability" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bf06b8439c2234b6c9dd4d7167b12050e4e65632
train_12645
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: 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
[]
{ "target_language": "C#", "developer_needs": [ "ci_integration", "reproducibility", "cost_latency_tradeoffs", "auditability" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
43f8736406b2352a7d507f9ed14af5d7dd34bc01
train_12646
2026-01-01T00:00:00
Extended context and repo-scale understanding
design
expert
Task: design Topic: Extended context and repo-scale understanding 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
[]
{ "target_language": "C#", "developer_needs": [ "evaluation_metrics", "governance", "security_gates", "cost_latency_tradeoffs" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7bbb9f54329a0d9eda29395a850ee6d052b13edb
train_12647
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
failure_analysis
intermediate
Task: failure_analysis Topic: Model merging, distillation, and continued pretraining 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. 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": [ "security_gates", "cost_latency_tradeoffs", "documentation", "auditability" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c26426a8d2c2dada26dea9f92325cd89f7aa86cf
train_12648
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: 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. 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": "Bash", "developer_needs": [ "tooling", "auditability", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ceaea7dca75451790b9d650109ed26ddce17c153
train_12649
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: 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. 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", "evaluation_metrics", "ci_integration", "auditability" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
eee218652125b65e79bb38194285ee5ee1b3ea67
train_12650
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
agent_loop
expert
Task: agent_loop Topic: Model merging, distillation, and continued pretraining 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "TypeScript", "developer_needs": [ "tests_are_truth", "reproducibility", "governance", "cost_latency_tradeoffs" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ac69f63f53cf51c7958d9806c26bbf25f2c6f70a
train_12651
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
design
intermediate
Task: design Topic: Reasoning-first coding models and tunable deliberation 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": [ "cost_latency_tradeoffs", "ci_integration", "reproducibility", "repo_scale_reasoning" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
aac2ac08171e5392c7f006dca3cffc87e92512df
train_12652
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
review
expert
Task: review Topic: Dataset curation pipelines (filter, dedupe, quality) 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. 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": [ "evaluation_metrics", "cost_latency_tradeoffs", "tooling", "ci_integration" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
47bd91644d9e19bb33037a3fa9da40e8a2748502
train_12653
2026-01-01T00:00:00
Latency, cost, and reliability optimization
explain
intermediate
Task: explain Topic: Latency, cost, and reliability optimization 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
[]
{ "target_language": "C#", "developer_needs": [ "repo_scale_reasoning", "security_gates", "cost_latency_tradeoffs", "ci_integration" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
53668dc6d6545164b0f3626bb1d453a003c135f4
train_12654
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: 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
[]
{ "target_language": "C#", "developer_needs": [ "ci_integration", "evaluation_metrics", "documentation", "cost_latency_tradeoffs" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
288f29b1bd60e76339565134f7bd1c98f03ed2b2
train_12655
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
code
advanced
Task: code Topic: SWE-bench style real-repo evaluation 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. 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": [ "evaluation_metrics", "security_gates", "tooling", "auditability" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bf04ff62fec1ee2fb55e45feccafaf4999513fee
train_12656
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
compare
intermediate
Task: compare Topic: Agentic coding systems (plan→edit→test→reflect) 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. 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": [ "reproducibility", "tooling", "security_gates", "tests_are_truth" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
13cc149d0e266e24dca97bed32bfbed17a9bbdf1
train_12657
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
compare
expert
Task: compare Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: expert 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": [ "repo_scale_reasoning", "tooling", "reproducibility", "cost_latency_tradeoffs" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cf92ba018b2bcd34968942dfc21cae3e63448adf
train_12658
2026-01-01T00:00:00
Extended context and repo-scale understanding
review
advanced
Task: review Topic: Extended context and repo-scale understanding 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. Review: correctness, security, performance, governance
[]
{ "target_language": "SQL", "developer_needs": [ "reproducibility", "repo_scale_reasoning", "evaluation_metrics", "tests_are_truth" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
1d7aaded6603d2c70f076be080169b6bd0fba714
train_12659
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
patch_diff
advanced
Task: patch_diff Topic: Model merging, distillation, and continued pretraining 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. 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": [ "auditability", "cost_latency_tradeoffs", "reproducibility", "tooling" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
982e166ca53a5adaf2d9cd63a667a1f1cc954cff
train_12660
2026-01-01T00:00:00
Secure code generation and policy gates
review
expert
Task: review 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Python", "developer_needs": [ "governance", "auditability", "ci_integration", "repo_scale_reasoning" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a32d77c89b5b2e532434c3a734672399ade09b6b
train_12661
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
patch_diff
intermediate
Task: patch_diff Topic: Agentic coding systems (plan→edit→test→reflect) 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. 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": "Bash", "developer_needs": [ "tests_are_truth", "security_gates", "documentation", "reproducibility" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
737202591df53df5639e576dc482571993e0b72a
train_12662
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: 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "JavaScript", "developer_needs": [ "ci_integration", "tests_are_truth", "auditability", "tooling" ], "moe_experts": [ "governance_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a739c090043caf58c70510490bb99984927a699c
train_12663
2026-01-01T00:00:00
Self-improving agents and feedback loops
review
expert
Task: review Topic: Self-improving agents and feedback loops Difficulty: expert 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
[]
{ "target_language": "TypeScript", "developer_needs": [ "documentation", "governance", "security_gates", "tooling" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
12f14dbb7c5d5646e20e6c2e98095fe19c287ef3
train_12664
2026-01-01T00:00:00
Secure code generation and policy gates
failure_analysis
advanced
Task: failure_analysis Topic: Secure code generation and policy gates 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Go", "developer_needs": [ "ci_integration", "tooling", "auditability", "evaluation_metrics" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8d2b3e4b4ffa9c07f7af81ee9bd82730b08cd978
train_12665
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: 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. 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": [ "tooling", "ci_integration", "auditability", "tests_are_truth" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
abd0a32d7caafd522a83af9af9d263b131181d45
train_12666
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: 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. Review: correctness, security, performance, governance
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "evaluation_metrics", "documentation", "cost_latency_tradeoffs", "security_gates" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
77ed8ff11481e12ae6128fce11433eb867917a64
train_12667
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
review
advanced
Task: review Topic: Model merging, distillation, and continued pretraining 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. Review: correctness, security, performance, governance
[]
{ "target_language": "SQL", "developer_needs": [ "cost_latency_tradeoffs", "repo_scale_reasoning", "auditability", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
faf65a89a44b7aa3a74f29817cb3841cbf19f157
train_12668
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: 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": [ "auditability", "cost_latency_tradeoffs", "security_gates", "reproducibility" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
25a05b52d09100cefb35ecd57120901702dc866a
train_12669
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: 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": [ "governance", "cost_latency_tradeoffs", "repo_scale_reasoning", "documentation" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
70e5f16b33ba86cd52a0a06ad2b5e1bf3f6604d9
train_12670
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
design
advanced
Task: design Topic: Tool calling, sandboxes, and CI integration 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "governance", "documentation", "auditability", "ci_integration" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5b1d3931fac44ff332de33b53f5dacd8509f738c
train_12671
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
compare
intermediate
Task: compare Topic: Dataset curation pipelines (filter, dedupe, quality) 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. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Go", "developer_needs": [ "evaluation_metrics", "tooling", "repo_scale_reasoning", "tests_are_truth" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7e20276d6a5b3d395f3ada81af8f1ac9a31223f6
train_12672
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
failure_analysis
intermediate
Task: failure_analysis Topic: Agentic coding systems (plan→edit→test→reflect) 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "C#", "developer_needs": [ "reproducibility", "tests_are_truth", "cost_latency_tradeoffs", "security_gates" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
075463ebe7e3768c7bc861795b3adbef6227a52f
train_12673
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: 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": [ "auditability", "evaluation_metrics", "governance", "repo_scale_reasoning" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4628b463ca6a385509cc99acd87649f9401b3063
train_12674
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
failure_analysis
advanced
Task: failure_analysis Topic: Dataset curation pipelines (filter, dedupe, quality) 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. 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": [ "governance", "cost_latency_tradeoffs", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9d9938db535c0f9db711f5046514a96ff2ca3141
train_12675
2026-01-01T00:00:00
Latency, cost, and reliability optimization
review
expert
Task: review Topic: Latency, cost, and reliability optimization 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. Review: correctness, security, performance, governance
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "governance", "tests_are_truth", "security_gates", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ea3ac5b3194d782f4dd229889537b9a50771175f
train_12676
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
code
advanced
Task: code 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "C#", "developer_needs": [ "evaluation_metrics", "auditability", "cost_latency_tradeoffs", "tests_are_truth" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9e27eafebd2a465f4c0db0059091a0520be8b7ef
train_12677
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
code
advanced
Task: code Topic: Mixture-of-Experts (MoE) for code 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. 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": [ "cost_latency_tradeoffs", "auditability", "ci_integration", "evaluation_metrics" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
675bb14e778c398f1724bbcd76b8ddf5890ab495
train_12678
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
failure_analysis
advanced
Task: failure_analysis Topic: Tool calling, sandboxes, and CI integration 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
[]
{ "target_language": "JavaScript", "developer_needs": [ "tests_are_truth", "tooling", "ci_integration", "security_gates" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8d1b3ba63d41f8753105c8e44644919cb0d0c5b8
train_12679
2026-01-01T00:00:00
Extended context and repo-scale understanding
eval
expert
Task: eval Topic: Extended context and repo-scale understanding 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "JavaScript", "developer_needs": [ "governance", "cost_latency_tradeoffs", "tests_are_truth", "reproducibility" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a38710fccda7ff23b7c68c0783ee0b6b39aef5ee
train_12680
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: 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. 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": [ "ci_integration", "tests_are_truth", "tooling", "documentation" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d20188b4c72cb9b900967fe84b5c2cbd11fa83da
train_12681
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: 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Rust", "developer_needs": [ "ci_integration", "cost_latency_tradeoffs", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
900ce1500c06587a5753223f28e6ce11c0c55265
train_12682
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
failure_analysis
expert
Task: failure_analysis Topic: Agentic coding systems (plan→edit→test→reflect) 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. 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": [ "documentation", "evaluation_metrics", "ci_integration", "tests_are_truth" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dddb3a267e072b6187b7225257831433c3454953
train_12683
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
review
expert
Task: review Topic: Tool calling, sandboxes, and CI integration 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Bash", "developer_needs": [ "tests_are_truth", "documentation", "reproducibility", "repo_scale_reasoning" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
64d51daedd84faec68ba3ad512967d3daef2bcee
train_12684
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: 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. 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": [ "tooling", "reproducibility", "tests_are_truth", "repo_scale_reasoning" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bfd316db86afbc4fa9c2a1ba86451526324b5fef
train_12685
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
eval
intermediate
Task: eval Topic: SWE-bench style real-repo evaluation 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": [ "reproducibility", "governance", "cost_latency_tradeoffs", "ci_integration" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8e21da65bf175ab076a3cf2e57bd39cda945b5b6
train_12686
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
agent_loop
advanced
Task: agent_loop Topic: Reasoning-first coding models and tunable deliberation 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Python", "developer_needs": [ "governance", "tests_are_truth", "auditability", "security_gates" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f24610c95e79c6df4024f49446e1ed1c188d97ea
train_12687
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: 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
[]
{ "target_language": "Python", "developer_needs": [ "repo_scale_reasoning", "cost_latency_tradeoffs", "documentation", "governance" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
54d3f7e391a4de46fe83c45d3fa8f9f91edeb921
train_12688
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: 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "tests_are_truth", "cost_latency_tradeoffs", "auditability", "ci_integration" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6455540160b4759b2f59e78c982538aad8463fbe
train_12689
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: 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": "Bash", "developer_needs": [ "reproducibility", "repo_scale_reasoning", "ci_integration", "security_gates" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bbc76fe80a4581fcd339016f8142c50ac880eadb
train_12690
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: 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "documentation", "tooling", "repo_scale_reasoning", "security_gates" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6a0a3e1201000ce679e37c31ba59630a57bec090
train_12691
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
agent_loop
expert
Task: agent_loop Topic: Reasoning-first coding models and tunable deliberation 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "SQL", "developer_needs": [ "tooling", "evaluation_metrics", "cost_latency_tradeoffs", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a1acf084cffc6f02e45768e819b9a04640188336
train_12692
2026-01-01T00:00:00
Latency, cost, and reliability optimization
agent_loop
intermediate
Task: agent_loop Topic: Latency, cost, and reliability optimization 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Bash", "developer_needs": [ "security_gates", "governance", "cost_latency_tradeoffs", "ci_integration" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5bbd9757c3becda474812f237c5623d8fd742a7f
train_12693
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: 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "TypeScript", "developer_needs": [ "cost_latency_tradeoffs", "tooling", "documentation", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8c371846c82b4f222ed9252a29b254cd3e2f98dc
train_12694
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
explain
expert
Task: explain Topic: Governance, provenance, and licensing for code data Difficulty: expert 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", "documentation", "tooling", "cost_latency_tradeoffs" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a9635e598182370cc87840065a4a289773177e48
train_12695
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
agent_loop
expert
Task: agent_loop 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. 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": "C#", "developer_needs": [ "tests_are_truth", "ci_integration", "reproducibility", "evaluation_metrics" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f4ba27494e2d6b53be2ac5c9bd0b7d532091ca2a
train_12696
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
explain
expert
Task: explain Topic: Model merging, distillation, and continued pretraining Difficulty: expert 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
[]
{ "target_language": "Python", "developer_needs": [ "cost_latency_tradeoffs", "reproducibility", "evaluation_metrics", "governance" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c6cbcb1a60806d0d3d4ca7a9829e38ad04b3c41e
train_12697
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: 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "C#", "developer_needs": [ "security_gates", "evaluation_metrics", "governance", "reproducibility" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
476cab57c000bf9f3cf9c438c2655fc01fa035cb
train_12698
2026-01-01T00:00:00
Latency, cost, and reliability optimization
eval
expert
Task: eval Topic: Latency, cost, and reliability optimization Difficulty: expert 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Python", "developer_needs": [ "evaluation_metrics", "tooling", "ci_integration", "security_gates" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3a6ad992eb577161debab6d9fd74c92177fdd41f
train_12699
2026-01-01T00:00:00
Latency, cost, and reliability optimization
eval
expert
Task: eval Topic: Latency, cost, and reliability optimization 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Rust", "developer_needs": [ "reproducibility", "ci_integration", "tooling", "documentation" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dc18116889b69656cd9abfe4f2acca8f6d454601