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_36800
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
design
intermediate
Task: design Topic: SWE-bench style real-repo evaluation Difficulty: intermediate Target language: SQL Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "security_gates", "governance", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d9ed7923b0b85011101e00a376d029e220f19d2d
train_36801
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: 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": "Python", "developer_needs": [ "tooling", "ci_integration", "reproducibility", "tests_are_truth" ], "moe_experts": [ "governance_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c6cba121912fc42df2b1d2f9402899f93ebbbc3b
train_36802
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
data_pipeline
expert
Task: data_pipeline Topic: Agentic coding systems (plan→edit→test→reflect) 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. 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": [ "reproducibility", "evaluation_metrics", "governance", "documentation" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ac662b2a22ffcf110d0cf60ff413b83965c51900
train_36803
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
failure_analysis
expert
Task: failure_analysis Topic: Tool calling, sandboxes, and CI integration 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "TypeScript", "developer_needs": [ "security_gates", "governance", "reproducibility", "tooling" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2fe1dce00cb36c8fea47fbec75b3a7f0b4be656d
train_36804
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: 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. 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": [ "reproducibility", "security_gates", "cost_latency_tradeoffs", "tooling" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c5617038521ece39eddaf6e8de0946b782a11f7d
train_36805
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: 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
[]
{ "target_language": "JavaScript", "developer_needs": [ "governance", "repo_scale_reasoning", "tests_are_truth", "documentation" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
385a24df1d6093cd4c2b0ff75f60b5ee12b578e0
train_36806
2026-01-01T00:00:00
Extended context and repo-scale understanding
patch_diff
advanced
Task: patch_diff Topic: Extended context and repo-scale understanding Difficulty: advanced Target language: 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. 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": "TypeScript", "developer_needs": [ "repo_scale_reasoning", "tooling", "documentation", "tests_are_truth" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
80fd48176c0460401da5aeb58c431b32fd9045d0
train_36807
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
design
expert
Task: design Topic: SWE-bench style real-repo evaluation Difficulty: expert Target language: 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": [ "repo_scale_reasoning", "tooling", "evaluation_metrics", "tests_are_truth" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7ac96022d3f2c105cc1f9911547b40b8f2c0a326
train_36808
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: 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. 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": [ "documentation", "tooling", "cost_latency_tradeoffs", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
10b4c9c5daaafc5c1ea07dc01958ebf54a90429a
train_36809
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: 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": [ "documentation", "tests_are_truth", "ci_integration", "security_gates" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8dfe8c25bc059b337007834242106243eee63e7b
train_36810
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: JavaScript Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "security_gates", "reproducibility", "governance", "repo_scale_reasoning" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
77be0753357ff2dbff9081fb7fcce13f9363f7a3
train_36811
2026-01-01T00:00:00
Extended context and repo-scale understanding
patch_diff
advanced
Task: patch_diff Topic: Extended context and repo-scale understanding Difficulty: advanced Target language: 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. 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": [ "reproducibility", "tooling", "evaluation_metrics", "documentation" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dfc13c69d7e58154df725384a7b1d4f3c22b415d
train_36812
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: 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": [ "documentation", "cost_latency_tradeoffs", "tooling", "security_gates" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
535112be0ea617efe14df40fb22115783b7be1c1
train_36813
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: 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": "Java", "developer_needs": [ "evaluation_metrics", "auditability", "ci_integration", "reproducibility" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d8687e2711b21eae64fa3a4f6c6f155f24080555
train_36814
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
data_pipeline
advanced
Task: data_pipeline Topic: Governance, provenance, and licensing for code data Difficulty: advanced Target language: Go Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Go", "developer_needs": [ "documentation", "auditability", "tooling", "ci_integration" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
81e8209d3f675627b82345941a7d06c4755190f9
train_36815
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
agent_loop
expert
Task: agent_loop Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: expert 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "JavaScript", "developer_needs": [ "repo_scale_reasoning", "evaluation_metrics", "auditability", "documentation" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ff55061f675af1e10107884e57982cc4169a9ceb
train_36816
2026-01-01T00:00:00
Extended context and repo-scale understanding
compare
expert
Task: compare Topic: Extended context and repo-scale understanding Difficulty: expert 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. 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": [ "repo_scale_reasoning", "documentation", "security_gates", "tests_are_truth" ], "moe_experts": [ "coding_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
50006415737046ffdbefdead7f3cc0991ebbffb6
train_36817
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: 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
[]
{ "target_language": "Java", "developer_needs": [ "tooling", "security_gates", "evaluation_metrics", "cost_latency_tradeoffs" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9edc197a5c484c10e75cc190f95afee2868d12bd
train_36818
2026-01-01T00:00:00
Extended context and repo-scale understanding
explain
expert
Task: explain Topic: Extended context and repo-scale understanding 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. 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": [ "tooling", "cost_latency_tradeoffs", "security_gates", "auditability" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6ef41f2ce9da4a95da6f24ea02c94ac6f3178df2
train_36819
2026-01-01T00:00:00
Secure code generation and policy gates
data_pipeline
advanced
Task: data_pipeline Topic: Secure code generation and policy gates Difficulty: advanced Target language: 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
[ "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", "auditability", "evaluation_metrics", "repo_scale_reasoning" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4fee3a74dddd208ed45b35e72fdb01b21689d34f
train_36820
2026-01-01T00:00:00
Self-improving agents and feedback loops
agent_loop
intermediate
Task: agent_loop Topic: Self-improving agents and feedback loops 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", "ci_integration", "tests_are_truth" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a350f78821fb775d4994038d511af086f26dabc6
train_36821
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: 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": [ "tests_are_truth", "governance", "ci_integration", "auditability" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
01c681b1a5de98d750e2e4c82232df6113595ef2
train_36822
2026-01-01T00:00:00
Secure code generation and policy gates
data_pipeline
advanced
Task: data_pipeline Topic: Secure code generation and policy gates Difficulty: advanced Target language: 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. 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": "TypeScript", "developer_needs": [ "security_gates", "cost_latency_tradeoffs", "ci_integration", "documentation" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8b3e1700d5be0a051e429aff4481edd9c3d707a0
train_36823
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: 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. 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": [ "reproducibility", "ci_integration", "tests_are_truth", "cost_latency_tradeoffs" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f5834119c8677d0f933dc5386bc31bf84885aba8
train_36824
2026-01-01T00:00:00
Latency, cost, and reliability optimization
agent_loop
expert
Task: agent_loop Topic: Latency, cost, and reliability optimization Difficulty: expert Target language: Bash Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Bash", "developer_needs": [ "tooling", "repo_scale_reasoning", "ci_integration", "documentation" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0a1337ac8dc0f5b1fd2e129251c49b001f5166d7
train_36825
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: 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Bash", "developer_needs": [ "auditability", "reproducibility", "cost_latency_tradeoffs", "governance" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
1b36446f99cf3d32204aa77d0153c79338cec596
train_36826
2026-01-01T00:00:00
Secure code generation and policy gates
compare
intermediate
Task: compare Topic: Secure code generation and policy gates 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. 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": [ "auditability", "evaluation_metrics", "tooling", "security_gates" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
eb4163661b4ff4a8ae307f6e7179dab34305a33b
train_36827
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
failure_analysis
intermediate
Task: failure_analysis Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: intermediate Target language: 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": [ "cost_latency_tradeoffs", "reproducibility", "auditability", "repo_scale_reasoning" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7f6cfec8dbe3be2350a25e6c6c58d4996236b677
train_36828
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: 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Python", "developer_needs": [ "cost_latency_tradeoffs", "documentation", "auditability", "reproducibility" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
275f31c327aed26b9309d77f54e61644d7f53b6b
train_36829
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: 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": [ "documentation", "governance", "tests_are_truth", "auditability" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dc768fbfa0ec2878e2c7e1d30bc74a22312fd6ee
train_36830
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
eval
advanced
Task: eval Topic: Code-specialized model families and sizing tradeoffs Difficulty: advanced Target language: C# Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "reproducibility", "repo_scale_reasoning", "security_gates", "documentation" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b0e765921e0c93ec640768cca6bb9697163f84df
train_36831
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
code
intermediate
Task: code Topic: Multimodal dev workflows (docs, diagrams, traces) 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "tests_are_truth", "security_gates", "documentation", "cost_latency_tradeoffs" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
79c79ed750db572fe9036bfef4bd8741ab4e68ca
train_36832
2026-01-01T00:00:00
Extended context and repo-scale understanding
failure_analysis
advanced
Task: failure_analysis Topic: Extended context and repo-scale understanding 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Go", "developer_needs": [ "documentation", "reproducibility", "tooling", "tests_are_truth" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8d5c9dfd83dd398057f6dc7af027bf4e72a77524
train_36833
2026-01-01T00:00:00
Secure code generation and policy gates
agent_loop
advanced
Task: agent_loop Topic: Secure code generation and policy gates 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. 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": "Go", "developer_needs": [ "cost_latency_tradeoffs", "security_gates", "reproducibility", "governance" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
08e4e9e36347f88c3b956ab6cd18440ef4b4d5f0
train_36834
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
eval
intermediate
Task: eval Topic: Dataset curation pipelines (filter, dedupe, quality) 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Rust", "developer_needs": [ "ci_integration", "cost_latency_tradeoffs", "reproducibility", "tooling" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
201b074e69b10ba4fde3f627e91a3dedf1b7b576
train_36835
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
agent_loop
expert
Task: agent_loop Topic: SWE-bench style real-repo evaluation 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. 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": [ "repo_scale_reasoning", "tooling", "auditability", "documentation" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
30007f7efbbbeb72ced8fbc0f7384bbebe7c94c4
train_36836
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: 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. 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": [ "documentation", "reproducibility", "auditability", "evaluation_metrics" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
66e9159273d84812dab7a35ccc32daa83812730e
train_36837
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
code
intermediate
Task: code Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: intermediate Target language: Rust Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "security_gates", "evaluation_metrics", "governance", "tooling" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7dcd11194239811c92896469931eef0ce503c501
train_36838
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
eval
expert
Task: eval Topic: Multimodal dev workflows (docs, diagrams, traces) 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": [ "ci_integration", "repo_scale_reasoning", "security_gates", "cost_latency_tradeoffs" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3dab606273c2a77f25d31a0f7836c55e52be7392
train_36839
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
review
intermediate
Task: review Topic: Mixture-of-Experts (MoE) for code Difficulty: intermediate Target language: Bash Context: 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": [ "ci_integration", "tooling", "cost_latency_tradeoffs", "reproducibility" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2ac43057c2e2da09bd5c79a07de653aa480952f3
train_36840
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: 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. 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": [ "reproducibility", "evaluation_metrics", "tests_are_truth", "tooling" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c8d2c3aa8ff0253f1ffa119b38dc8913694344fa
train_36841
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: 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": [ "auditability", "cost_latency_tradeoffs", "reproducibility", "tooling" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
45eecb07185ed15a2e5e2ee4dda71c7ee4d1356a
train_36842
2026-01-01T00:00:00
Self-improving agents and feedback loops
eval
expert
Task: eval Topic: Self-improving agents and feedback loops Difficulty: expert 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
[]
{ "target_language": "Bash", "developer_needs": [ "ci_integration", "cost_latency_tradeoffs", "security_gates", "tooling" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6577ac2b2fb6e979befc579b5b9b7159b7f3da61
train_36843
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: 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. 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": [ "security_gates", "cost_latency_tradeoffs", "repo_scale_reasoning", "tests_are_truth" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
45c16333a981f67f0518c90df44c0f6a0f0d9cde
train_36844
2026-01-01T00:00:00
Secure code generation and policy gates
failure_analysis
intermediate
Task: failure_analysis Topic: Secure code generation and policy gates 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. 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": "Rust", "developer_needs": [ "repo_scale_reasoning", "reproducibility", "tests_are_truth", "evaluation_metrics" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
945229df81d9803976ccd7ee88a1b0cd865d38f9
train_36845
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: 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
[]
{ "target_language": "C#", "developer_needs": [ "reproducibility", "governance", "cost_latency_tradeoffs", "tooling" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
066dc0aac2ad11300fa9a321b9561a53c0a09400
train_36846
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: 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": "Bash", "developer_needs": [ "repo_scale_reasoning", "tooling", "documentation", "auditability" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bce759503cff0c3ccff9062962ad24fcff9908f4
train_36847
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
explain
intermediate
Task: explain Topic: Dataset curation pipelines (filter, dedupe, quality) 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. 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": [ "reproducibility", "auditability", "tests_are_truth", "repo_scale_reasoning" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e3953fdb56b5350349322b144701fe2c8c18af65
train_36848
2026-01-01T00:00:00
Self-improving agents and feedback loops
eval
expert
Task: eval Topic: Self-improving agents and feedback loops Difficulty: expert Target language: Bash Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. 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": [ "reproducibility", "auditability", "repo_scale_reasoning", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7402c90635fa18f7bb9d1586dc597f3ec5fa11c3
train_36849
2026-01-01T00:00:00
Extended context and repo-scale understanding
patch_diff
intermediate
Task: patch_diff Topic: Extended context and repo-scale understanding 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. 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": "TypeScript", "developer_needs": [ "evaluation_metrics", "tooling", "ci_integration", "auditability" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0d91bfa4547f8f7caa5db5c52732cd448a622f25
train_36850
2026-01-01T00:00:00
Secure code generation and policy gates
compare
expert
Task: compare Topic: Secure code generation and policy gates Difficulty: expert Target language: Go Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. 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": [ "tooling", "governance", "repo_scale_reasoning", "auditability" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
473ddc210ecad46b6e778f25db852b61227ca347
train_36851
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: 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": [ "evaluation_metrics", "documentation", "ci_integration", "tests_are_truth" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8fe15aae8c00e7055050a921e9b07acdb59c2520
train_36852
2026-01-01T00:00:00
Self-improving agents and feedback loops
eval
expert
Task: eval Topic: Self-improving agents and feedback loops Difficulty: expert Target language: Bash Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Bash", "developer_needs": [ "ci_integration", "tooling", "cost_latency_tradeoffs", "evaluation_metrics" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7402c90635fa18f7bb9d1586dc597f3ec5fa11c3
train_36853
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
patch_diff
advanced
Task: patch_diff Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced Target language: 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. 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": "TypeScript", "developer_needs": [ "ci_integration", "cost_latency_tradeoffs", "security_gates", "evaluation_metrics" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a8ffd31a63f06aa014ce2fb7bd91479fc8bff376
train_36854
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: 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Bash", "developer_needs": [ "tooling", "security_gates", "ci_integration", "reproducibility" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d25babcf3f47f26e78a40edff362fbeee8b2c319
train_36855
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
code
intermediate
Task: code Topic: Tool calling, sandboxes, and CI integration 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "governance", "repo_scale_reasoning", "security_gates", "reproducibility" ], "moe_experts": [ "coding_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e1e0b1fafb9484f5e37327bfc38fdd9cef92a374
train_36856
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: 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. Review: correctness, security, performance, governance
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "governance", "reproducibility", "evaluation_metrics", "auditability" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d8ea2754c64d0e94c5d044120d3222c0b48e2724
train_36857
2026-01-01T00:00:00
Self-improving agents and feedback loops
explain
advanced
Task: explain Topic: Self-improving agents and feedback loops Difficulty: advanced Target language: 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", "tests_are_truth", "documentation", "governance" ], "moe_experts": [ "governance_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9d3d89c956115ebe8b045d3f97d3c29f9a3188a4
train_36858
2026-01-01T00:00:00
Latency, cost, and reliability optimization
eval
expert
Task: eval Topic: Latency, cost, and reliability optimization 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. 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": "TypeScript", "developer_needs": [ "tooling", "repo_scale_reasoning", "auditability", "evaluation_metrics" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a98a4a917cae83fd3280c5e4c35f464b6518b3c8
train_36859
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: 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. 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": "Bash", "developer_needs": [ "repo_scale_reasoning", "governance", "tests_are_truth", "security_gates" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cca13bcf6835e2cbf3d86a32388453c454f7dd16
train_36860
2026-01-01T00:00:00
Latency, cost, and reliability optimization
compare
advanced
Task: compare Topic: Latency, cost, and reliability optimization 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Java", "developer_needs": [ "security_gates", "governance", "ci_integration", "tooling" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6d5530aa2df2f5aed4a3aaaeb3d1d40ecc35406c
train_36861
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
patch_diff
advanced
Task: patch_diff Topic: Reasoning-first coding models and tunable deliberation Difficulty: advanced Target language: SQL Context: 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": "SQL", "developer_needs": [ "cost_latency_tradeoffs", "ci_integration", "reproducibility", "evaluation_metrics" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
517cd278b78b0e8dc12bd08826ba16625f20c64c
train_36862
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
data_pipeline
expert
Task: data_pipeline Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: expert Target language: Bash Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. 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": [ "security_gates", "ci_integration", "tooling", "tests_are_truth" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f46003ac356a092d66fd1d51718d1660974fca2d
train_36863
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: 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "JavaScript", "developer_needs": [ "tests_are_truth", "documentation", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5d09c6bcd813f3fa3bf27dc830da6ff1bacfbc4f
train_36864
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: 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": [ "tests_are_truth", "tooling", "auditability", "governance" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0aea0f1f70f0c8000e4095d0fc3336c1864b2bda
train_36865
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
explain
expert
Task: explain Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: expert Target language: SQL Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "repo_scale_reasoning", "evaluation_metrics", "documentation", "security_gates" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f04b6b0b735bc891f2822cbd54eb8d8770266c5f
train_36866
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
review
advanced
Task: review Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced 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
[]
{ "target_language": "JavaScript", "developer_needs": [ "auditability", "ci_integration", "tests_are_truth", "evaluation_metrics" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bff6903cfff7a53900919eecefd595d20dcead8d
train_36867
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: 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
[]
{ "target_language": "Rust", "developer_needs": [ "tests_are_truth", "repo_scale_reasoning", "reproducibility", "cost_latency_tradeoffs" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4ad02c4fc05ed72fbd52672717cce316db8fc96f
train_36868
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
eval
advanced
Task: eval Topic: Code-specialized model families and sizing tradeoffs 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. 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": [ "reproducibility", "governance", "documentation", "evaluation_metrics" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c24a701afef55c87cb58f264ae79202ec0fd28df
train_36869
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
code
expert
Task: code Topic: Code-specialized model families and sizing tradeoffs Difficulty: expert Target language: 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": [ "auditability", "evaluation_metrics", "repo_scale_reasoning", "documentation" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
27e0c047c15ef782e68b608b4be536461e1ce58c
train_36870
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
failure_analysis
expert
Task: failure_analysis Topic: Tool calling, sandboxes, and CI integration 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "C#", "developer_needs": [ "evaluation_metrics", "ci_integration", "cost_latency_tradeoffs", "repo_scale_reasoning" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dbeb2676718e5675d341836880274c114ec48006
train_36871
2026-01-01T00:00:00
Latency, cost, and reliability optimization
failure_analysis
intermediate
Task: failure_analysis Topic: Latency, cost, and reliability optimization 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. 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": "Go", "developer_needs": [ "tooling", "repo_scale_reasoning", "cost_latency_tradeoffs", "reproducibility" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e70d1e540ba2b6b449e70087020d28188f75e6fd
train_36872
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: 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": [ "documentation", "ci_integration", "tests_are_truth", "evaluation_metrics" ], "moe_experts": [ "governance_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2fd228363772f5f89964f87080cb7bc6fb23f443
train_36873
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: 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": [ "ci_integration", "evaluation_metrics", "documentation", "reproducibility" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f3bd35c4b82ef33f2575d43da40b3d01b2f5c624
train_36874
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
agent_loop
expert
Task: agent_loop Topic: SWE-bench style real-repo evaluation Difficulty: expert 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. 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": [ "tests_are_truth", "reproducibility", "auditability", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
18b61a500304c8fb5ceeedd8d9bc86279f4e9ae3
train_36875
2026-01-01T00:00:00
Latency, cost, and reliability optimization
data_pipeline
expert
Task: data_pipeline Topic: Latency, cost, and reliability optimization Difficulty: expert Target language: 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Bash", "developer_needs": [ "governance", "tooling", "reproducibility", "ci_integration" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3fb136d26a981b19f785c7a231021a49ace3ecee
train_36876
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: 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. Scaffold: ```python def agent_loop(plan, edit, test, issue, max_iters=4): history = [] p = plan(issue) for _ in range(max_iters): patch = edit(issue, p) ok, report = test(patch) history.append({"plan": p, "ok": ok}) if ok: return patch, history p = p + " | refine" return patch, history ```
[]
{ "target_language": "Python", "developer_needs": [ "repo_scale_reasoning", "auditability", "reproducibility", "tests_are_truth" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6ecda87ed2bb168dc4a494406239b6bc7477d48a
train_36877
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
compare
intermediate
Task: compare Topic: SWE-bench style real-repo evaluation Difficulty: intermediate Target language: Python Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Python", "developer_needs": [ "reproducibility", "tests_are_truth", "evaluation_metrics", "tooling" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0b51f4065cdb35c9aaa5ba208f4e2ac9378d601c
train_36878
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
eval
expert
Task: eval Topic: Governance, provenance, and licensing for code data Difficulty: expert Target language: 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Rust", "developer_needs": [ "evaluation_metrics", "governance", "auditability", "cost_latency_tradeoffs" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
baa6603cc897390065079baa6a05b4916ce96818
train_36879
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
eval
advanced
Task: eval Topic: Mixture-of-Experts (MoE) for code Difficulty: advanced Target language: C# Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "ci_integration", "documentation", "auditability", "security_gates" ], "moe_experts": [ "agentic_systems_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8b5f065f45088a243eca9c9ee8a81a002bcedc33
train_36880
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: 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. 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": [ "governance", "auditability", "cost_latency_tradeoffs", "tests_are_truth" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
74632c382fac51a0fdb9c771febb3504b55e2faf
train_36881
2026-01-01T00:00:00
Latency, cost, and reliability optimization
compare
advanced
Task: compare Topic: Latency, cost, and reliability optimization 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": [ "repo_scale_reasoning", "tooling", "security_gates", "reproducibility" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4660cbc424dc85fbecf62a5357e30548c6feee79
train_36882
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
eval
advanced
Task: eval Topic: SWE-bench style real-repo evaluation 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", "documentation", "evaluation_metrics", "security_gates" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e18d4934de62a2ed8a42948597f120493366d6f5
train_36883
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: 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
[]
{ "target_language": "TypeScript", "developer_needs": [ "reproducibility", "evaluation_metrics", "tests_are_truth", "documentation" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fadc3664022d793f1eadeeb576780fdc1c420948
train_36884
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: 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. 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": "Go", "developer_needs": [ "tests_are_truth", "security_gates", "repo_scale_reasoning", "governance" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
00b66deecb488eb8c3df69663740c54d9e0fb2c0
train_36885
2026-01-01T00:00:00
Extended context and repo-scale understanding
code
advanced
Task: code Topic: Extended context and repo-scale understanding 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
[]
{ "target_language": "TypeScript", "developer_needs": [ "reproducibility", "auditability", "evaluation_metrics", "documentation" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2f2cd2ac4a397a68df5cee83e4438ed12bde7072
train_36886
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: 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": "Python", "developer_needs": [ "reproducibility", "cost_latency_tradeoffs", "security_gates", "tests_are_truth" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
221cf6dd3991191602922f1e96c8266ebf9fd4c6
train_36887
2026-01-01T00:00:00
Secure code generation and policy gates
agent_loop
expert
Task: agent_loop Topic: Secure code generation and policy gates Difficulty: expert 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. 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": "Go", "developer_needs": [ "tooling", "tests_are_truth", "auditability", "governance" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a29cdc51376d39f02b6cd5c15c2d1244ea5e4917
train_36888
2026-01-01T00:00:00
Self-improving agents and feedback loops
agent_loop
advanced
Task: agent_loop Topic: Self-improving agents and feedback loops Difficulty: advanced Target language: Java Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Java", "developer_needs": [ "auditability", "evaluation_metrics", "reproducibility", "tooling" ], "moe_experts": [ "agentic_systems_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d46d43f4d697dcee82f2be1dee78524e15a7c46a
train_36889
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
design
expert
Task: design Topic: Governance, provenance, and licensing for code data Difficulty: expert 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "reproducibility", "repo_scale_reasoning", "auditability", "documentation" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
77dd87bdeaf98175e4e580a815adf86733ed4eae
train_36890
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
data_pipeline
intermediate
Task: data_pipeline Topic: Mixture-of-Experts (MoE) for code Difficulty: intermediate Target language: 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "C#", "developer_needs": [ "repo_scale_reasoning", "cost_latency_tradeoffs", "auditability", "governance" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
75e55b16a47c8a3eb9734e65904d3f8ccc6646a3
train_36891
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
compare
expert
Task: compare Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: expert Target language: 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", "evaluation_metrics", "reproducibility", "repo_scale_reasoning" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bb08ec9fbc2e660b779b219ccdef22b1e03d83ff
train_36892
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
agent_loop
expert
Task: agent_loop Topic: Governance, provenance, and licensing for code data Difficulty: expert 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Bash", "developer_needs": [ "repo_scale_reasoning", "tests_are_truth", "governance", "auditability" ], "moe_experts": [ "agentic_systems_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
50ad995ae6acaf0657dc41118267226dddaa4cfa
train_36893
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
explain
expert
Task: explain Topic: SWE-bench style real-repo evaluation 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": [ "tooling", "ci_integration", "repo_scale_reasoning", "governance" ], "moe_experts": [ "evaluation_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7252c24b947bef0f3af186f7846e9c1c39e0c834
train_36894
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
data_pipeline
expert
Task: data_pipeline Topic: Reasoning-first coding models and tunable deliberation 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. 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": [ "cost_latency_tradeoffs", "documentation", "tooling", "security_gates" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ccef1d1f626a6fe26eb5bc298aba1fec40084957
train_36895
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: 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. 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": "Python", "developer_needs": [ "evaluation_metrics", "reproducibility", "repo_scale_reasoning", "governance" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4ed0f2c3c68ef84f2a6df5044dc6f2683be482f4
train_36896
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
agent_loop
expert
Task: agent_loop Topic: Dataset curation pipelines (filter, dedupe, quality) 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. 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": [ "auditability", "repo_scale_reasoning", "cost_latency_tradeoffs", "security_gates" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3ac3db5c5b462e4e3e93cbbc6f29fa9255203d66
train_36897
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
explain
expert
Task: explain Topic: SWE-bench style real-repo evaluation Difficulty: expert Target language: SQL Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "SQL", "developer_needs": [ "tests_are_truth", "documentation", "evaluation_metrics", "reproducibility" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
67de7e2d5b5f67cd24acc668e9ce188c17c78d15
train_36898
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: 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
[]
{ "target_language": "C#", "developer_needs": [ "evaluation_metrics", "governance", "cost_latency_tradeoffs", "ci_integration" ], "moe_experts": [ "governance_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
43a19ca5bdba388b1961b4796070648e90f10b7a
train_36899
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
failure_analysis
advanced
Task: failure_analysis Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced Target language: 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": [ "governance", "security_gates", "ci_integration", "tooling" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4b2c6717d4d346141265daee7aad125371e636ca