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_09200
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: 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
[]
{ "target_language": "Go", "developer_needs": [ "reproducibility", "auditability", "security_gates", "tooling" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c2505951791972a711415e22f95407951e9d76d0
train_09201
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: 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", "documentation", "ci_integration", "tests_are_truth" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
96da1556bdc4f2a234c4a1c2d0beb5595c71112c
train_09202
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
patch_diff
advanced
Task: patch_diff Topic: Agentic coding systems (plan→edit→test→reflect) 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": [ "evaluation_metrics", "repo_scale_reasoning", "ci_integration", "security_gates" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c717552fa3ed87ffacf442237c904afb5e40ba75
train_09203
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
review
intermediate
Task: review Topic: SWE-bench style real-repo evaluation 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Go", "developer_needs": [ "ci_integration", "auditability", "documentation", "tests_are_truth" ], "moe_experts": [ "governance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
97b3b25ae9e981c12f21e9c37cf2af9a15c52788
train_09204
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: 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": [ "cost_latency_tradeoffs", "documentation", "auditability", "evaluation_metrics" ], "moe_experts": [ "performance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7bc9209a8a922f7ee86145d85670b73f1d070100
train_09205
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: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Java", "developer_needs": [ "reproducibility", "evaluation_metrics", "cost_latency_tradeoffs", "documentation" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
21247bf6ec5b436158de9047059e8f59fb2c5d80
train_09206
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
review
advanced
Task: review Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced Target language: C# Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[]
{ "target_language": "C#", "developer_needs": [ "tests_are_truth", "security_gates", "evaluation_metrics", "ci_integration" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
34941ab4efdb8b5fe48d42dfc74e0402457f6ae3
train_09207
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
failure_analysis
expert
Task: failure_analysis Topic: Code-specialized model families and sizing tradeoffs 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": [ "tooling", "security_gates", "reproducibility", "auditability" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dc002777883df6f63bd1d1efe50aa0348c651427
train_09208
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
eval
expert
Task: eval Topic: Code-specialized model families and sizing tradeoffs Difficulty: expert Target language: Go Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Go", "developer_needs": [ "auditability", "governance", "cost_latency_tradeoffs", "repo_scale_reasoning" ], "moe_experts": [ "governance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cf18553c651da942990115602e6149fde521136e
train_09209
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
design
expert
Task: design Topic: Agentic coding systems (plan→edit→test→reflect) 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. 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": [ "reproducibility", "governance", "auditability", "evaluation_metrics" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
24c9afba8f17a374ad9364758189b6fd7ec7ae9e
train_09210
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: 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": [ "evaluation_metrics", "tests_are_truth", "cost_latency_tradeoffs", "documentation" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4e1a10dabd06958be9ee99bf1d92fd5a1d8eaa9d
train_09211
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
agent_loop
expert
Task: agent_loop Topic: Tool calling, sandboxes, and CI integration 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. 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": "Python", "developer_needs": [ "repo_scale_reasoning", "governance", "ci_integration", "auditability" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0004acf31fb01a12ecd583dd4b4c7343c895d495
train_09212
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
data_pipeline
advanced
Task: data_pipeline 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Bash", "developer_needs": [ "reproducibility", "security_gates", "auditability", "tests_are_truth" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
37996667133047679dd6f8df43bd45ce1e6f8e8e
train_09213
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
explain
intermediate
Task: explain Topic: Model merging, distillation, and continued pretraining Difficulty: intermediate Target language: Java Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "documentation", "ci_integration", "reproducibility", "cost_latency_tradeoffs" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
52bd0ba10ae7b4bc179b42b6c8359d141dab2b4a
train_09214
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: 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": "JavaScript", "developer_needs": [ "documentation", "governance", "cost_latency_tradeoffs", "reproducibility" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
056553ed340e91da03ae1a68ac37e1532ff46ec4
train_09215
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
explain
advanced
Task: explain Topic: Reasoning-first coding models and tunable deliberation Difficulty: advanced 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "reproducibility", "repo_scale_reasoning", "ci_integration", "evaluation_metrics" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
98839e2634cada7c50404f3ef0206fdb128acc01
train_09216
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
review
advanced
Task: review Topic: Reasoning-first coding models and tunable deliberation Difficulty: advanced Target language: 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. Review: correctness, security, performance, governance
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Go", "developer_needs": [ "documentation", "tests_are_truth", "governance", "tooling" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2657afa036d5ed5ce553194a90582e24c8f5c81f
train_09217
2026-01-01T00:00:00
Latency, cost, and reliability optimization
data_pipeline
advanced
Task: data_pipeline Topic: Latency, cost, and reliability optimization Difficulty: advanced Target language: 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "SQL", "developer_needs": [ "cost_latency_tradeoffs", "evaluation_metrics", "reproducibility", "tests_are_truth" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8ebdcfee8b44cb0af97aefe46cd172e6e1b3ee85
train_09218
2026-01-01T00:00:00
Self-improving agents and feedback loops
failure_analysis
intermediate
Task: failure_analysis Topic: Self-improving agents and feedback loops Difficulty: intermediate Target language: 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "JavaScript", "developer_needs": [ "governance", "repo_scale_reasoning", "cost_latency_tradeoffs", "documentation" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e666cc1dafe2d9fea82d0b0c799109ee12d67c15
train_09219
2026-01-01T00:00:00
Secure code generation and policy gates
design
expert
Task: design Topic: Secure code generation and policy gates Difficulty: expert Target language: 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": [ "cost_latency_tradeoffs", "documentation", "evaluation_metrics", "auditability" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7c5d4457b5a5e0f71b2b8b494936bb420381e1eb
train_09220
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: JavaScript Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "evaluation_metrics", "tooling", "repo_scale_reasoning", "cost_latency_tradeoffs" ], "moe_experts": [ "governance_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dc7551574aca8172ae21a23e2cfee1fb8976bce4
train_09221
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: 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. 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": [ "tests_are_truth", "evaluation_metrics", "reproducibility", "security_gates" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fc871a73baab89eac9a468d87f671832351f1b6a
train_09222
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
eval
advanced
Task: eval Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: advanced Target language: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Java", "developer_needs": [ "cost_latency_tradeoffs", "governance", "documentation", "repo_scale_reasoning" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
be618f2e6bc8327cd4ee13a3ddc5bc91cae46333
train_09223
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: 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": "Go", "developer_needs": [ "repo_scale_reasoning", "documentation", "governance", "tooling" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cc682a53d95dc32aee5ce70b017aad3fe88a7203
train_09224
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: 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "evaluation_metrics", "auditability", "ci_integration", "tests_are_truth" ], "moe_experts": [ "coding_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c63cba48739fbac651ba47f59dad4536680b3f55
train_09225
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: 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "TypeScript", "developer_needs": [ "ci_integration", "evaluation_metrics", "documentation", "cost_latency_tradeoffs" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f4672362ba7d670926184ea16ac10587a624c20e
train_09226
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
design
intermediate
Task: design Topic: Model merging, distillation, and continued pretraining Difficulty: intermediate 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. 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": [ "tests_are_truth", "cost_latency_tradeoffs", "auditability", "ci_integration" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
aef985048ee27a820a8a2856c0e9db98b9ded104
train_09227
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
code
intermediate
Task: code Topic: Mixture-of-Experts (MoE) for code Difficulty: intermediate Target language: Bash Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "governance", "ci_integration", "documentation", "tests_are_truth" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
87e7642838774dfd635cb91ebdb3fabd23c550a7
train_09228
2026-01-01T00:00:00
Secure code generation and policy gates
code
intermediate
Task: code Topic: Secure code generation and policy gates Difficulty: intermediate Target language: SQL Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "SQL", "developer_needs": [ "documentation", "ci_integration", "tooling", "auditability" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4ac14f013f59755f329996b10f1159a6782d35ce
train_09229
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: 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Python", "developer_needs": [ "auditability", "tests_are_truth", "tooling", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b2fff2356287a1d9dae7f8e8df91bdfe60d37322
train_09230
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
explain
advanced
Task: explain Topic: Model merging, distillation, and continued pretraining Difficulty: advanced Target language: Python Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Python", "developer_needs": [ "documentation", "tooling", "auditability", "tests_are_truth" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3f3d75f90942c7195f3af59b28c8213eb65a52af
train_09231
2026-01-01T00:00:00
Self-improving agents and feedback loops
failure_analysis
intermediate
Task: failure_analysis Topic: Self-improving agents and feedback loops Difficulty: intermediate Target language: 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": [ "repo_scale_reasoning", "tooling", "auditability", "cost_latency_tradeoffs" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a073edf14a66667549956294ff4b3f5dee72c18b
train_09232
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
compare
intermediate
Task: compare Topic: Tool calling, sandboxes, and CI integration 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Python", "developer_needs": [ "evaluation_metrics", "repo_scale_reasoning", "documentation", "governance" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8be7d3b3a37f81c3784025f192a753631920a79f
train_09233
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: Rust Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "tooling", "security_gates", "cost_latency_tradeoffs", "ci_integration" ], "moe_experts": [ "evaluation_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
364bbbba4e829f4917859b21b1c408fcb37fe7e6
train_09234
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
code
advanced
Task: code Topic: Multimodal dev workflows (docs, diagrams, traces) 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. 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": [ "repo_scale_reasoning", "evaluation_metrics", "tooling", "reproducibility" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7389093a43570315b1b73f63c5dcadb1803579c3
train_09235
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: 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Rust", "developer_needs": [ "ci_integration", "tooling", "repo_scale_reasoning", "cost_latency_tradeoffs" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6f520e364f5d68ac498fabe6552df1954381faeb
train_09236
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
failure_analysis
expert
Task: failure_analysis 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. 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": [ "governance", "auditability", "evaluation_metrics", "reproducibility" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cb97228f9e12b2b7a31e9e918141b7ad3828288e
train_09237
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
compare
advanced
Task: compare Topic: Model merging, distillation, and continued pretraining Difficulty: advanced Target language: 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. 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", "documentation", "reproducibility", "ci_integration" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
45d6e0b3ee4641465c2b95a7645f3aa239447aca
train_09238
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
patch_diff
expert
Task: patch_diff Topic: Agentic coding systems (plan→edit→test→reflect) 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. 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": [ "evaluation_metrics", "auditability", "tests_are_truth", "governance" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2e312535c26f2780917f94d6420b435e2e06eba7
train_09239
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
explain
advanced
Task: explain Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: advanced Target language: Rust Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Rust", "developer_needs": [ "reproducibility", "repo_scale_reasoning", "governance", "tooling" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
adaacdb406c7b90253e4d477ebdd7eceac219de3
train_09240
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: 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. 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": [ "documentation", "evaluation_metrics", "cost_latency_tradeoffs", "repo_scale_reasoning" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7823b34a9d3b49f2120ba4ee7ad570b23f85f0cc
train_09241
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
code
advanced
Task: code Topic: Tool calling, sandboxes, and CI integration Difficulty: advanced Target language: Java Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Java", "developer_needs": [ "auditability", "reproducibility", "tests_are_truth", "evaluation_metrics" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
07b71f88ea4ca89d74fbbd7389703b323f7847be
train_09242
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: 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": [ "governance", "auditability", "tests_are_truth", "cost_latency_tradeoffs" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a8d2bcf123a78e1ca7737c61e3b18d43003c68ce
train_09243
2026-01-01T00:00:00
Latency, cost, and reliability optimization
code
intermediate
Task: code Topic: Latency, cost, and reliability optimization 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "C#", "developer_needs": [ "repo_scale_reasoning", "tests_are_truth", "documentation", "ci_integration" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b6c8036cc389404d23adfa7dbd8edda1b81f6884
train_09244
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: 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": "TypeScript", "developer_needs": [ "security_gates", "repo_scale_reasoning", "documentation", "ci_integration" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0d895ee385a3c6c1ec673a75632c00891b99ef79
train_09245
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
design
advanced
Task: design Topic: Code-specialized model families and sizing tradeoffs Difficulty: advanced Target language: SQL Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "SQL", "developer_needs": [ "reproducibility", "repo_scale_reasoning", "tooling", "ci_integration" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
94124218079618e89bcf13b545a0c6568cb8fed5
train_09246
2026-01-01T00:00:00
Latency, cost, and reliability optimization
code
expert
Task: code Topic: Latency, cost, and reliability optimization 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "security_gates", "tests_are_truth", "evaluation_metrics", "reproducibility" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fc00f574c5d10aab2be2bd4461d8bf0d144b73c1
train_09247
2026-01-01T00:00:00
Self-improving agents and feedback loops
failure_analysis
expert
Task: failure_analysis Topic: Self-improving agents and feedback loops Difficulty: expert Target language: Python Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. 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", "auditability", "documentation", "ci_integration" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6bb3586a2d8efab3ab6dc1c452696d440240a980
train_09248
2026-01-01T00:00:00
Secure code generation and policy gates
code
expert
Task: code Topic: Secure code generation and policy gates Difficulty: expert Target language: Go Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Go", "developer_needs": [ "auditability", "security_gates", "ci_integration", "governance" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6552e60735050a2db9005e4337220a5fc05cd814
train_09249
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: 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Python", "developer_needs": [ "documentation", "cost_latency_tradeoffs", "repo_scale_reasoning", "auditability" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0c5483d89b61021f96bc0a67cb8a9f16babef0d4
train_09250
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
data_pipeline
expert
Task: data_pipeline Topic: Code-specialized model families and sizing tradeoffs 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. 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": [ "reproducibility", "tests_are_truth", "documentation", "tooling" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7cb12ccfcec64edc2deae4ac26fd7bada0728751
train_09251
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: Bash Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "repo_scale_reasoning", "governance", "ci_integration", "evaluation_metrics" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f8da69c0a4048771139e1ed9de582af0d623ff43
train_09252
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: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Rust", "developer_needs": [ "tests_are_truth", "security_gates", "tooling", "repo_scale_reasoning" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2f35d5e99fa3e6dee811487a7c3949f43e961516
train_09253
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
agent_loop
advanced
Task: agent_loop Topic: SWE-bench style real-repo evaluation 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. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "cost_latency_tradeoffs", "documentation", "security_gates", "evaluation_metrics" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
964251bcb2ec9dd3d931752262d0cb0264abd797
train_09254
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
data_pipeline
intermediate
Task: data_pipeline 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "C#", "developer_needs": [ "reproducibility", "cost_latency_tradeoffs", "tooling", "tests_are_truth" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9c86a6c2e19bbc86e9711fb63593394cf29eb27c
train_09255
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: 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. 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": [ "evaluation_metrics", "tests_are_truth", "governance", "auditability" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
50aac3723e8088e5a0d5265eb0489ff0084aac20
train_09256
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
data_pipeline
expert
Task: data_pipeline Topic: Code-specialized model families and sizing tradeoffs 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Rust", "developer_needs": [ "security_gates", "auditability", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5eb51cf9aaa361d23cb3561c89fe449713e05d8a
train_09257
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
agent_loop
expert
Task: agent_loop Topic: Tool calling, sandboxes, and CI integration Difficulty: expert Target language: Java Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Java", "developer_needs": [ "tooling", "documentation", "auditability", "ci_integration" ], "moe_experts": [ "evaluation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
244994289d18e2ffafbf8b07e15da9884ea85d4e
train_09258
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: TypeScript Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "TypeScript", "developer_needs": [ "tooling", "documentation", "security_gates", "evaluation_metrics" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4fe84af7ea9439cddb6bbb89ce5ceca49c84ee84
train_09259
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
failure_analysis
expert
Task: failure_analysis Topic: Model merging, distillation, and continued pretraining Difficulty: expert Target language: Python Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Python", "developer_needs": [ "cost_latency_tradeoffs", "repo_scale_reasoning", "governance", "security_gates" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
022ab8a5f14dccbeb2685bd6cbb03e6503b33566
train_09260
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
explain
expert
Task: explain Topic: Tool calling, sandboxes, and CI integration 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Rust", "developer_needs": [ "documentation", "ci_integration", "tooling", "auditability" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2d01672dd74c62b90ebd1fff46fe25059f615c72
train_09261
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
data_pipeline
advanced
Task: data_pipeline Topic: Model merging, distillation, and continued pretraining Difficulty: advanced Target language: Java Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Java", "developer_needs": [ "documentation", "evaluation_metrics", "reproducibility", "governance" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2d022aa125557194f8b9d7f4a378903a87f1d4ef
train_09262
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: C# Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "C#", "developer_needs": [ "ci_integration", "repo_scale_reasoning", "cost_latency_tradeoffs", "governance" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
1137d3adce98b56bee53c9205d61849703415b1e
train_09263
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: Rust Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Rust", "developer_needs": [ "documentation", "auditability", "tooling", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
320b5b0455526ae493e9419f3b637e8b290385db
train_09264
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
failure_analysis
advanced
Task: failure_analysis Topic: Governance, provenance, and licensing for code data 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "C#", "developer_needs": [ "tooling", "cost_latency_tradeoffs", "documentation", "auditability" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
77c6ea74bc50027909d9b91664f6e67d500c54f2
train_09265
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
compare
advanced
Task: compare Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: advanced Target language: 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": [ "repo_scale_reasoning", "documentation", "reproducibility", "cost_latency_tradeoffs" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
06133f698008984cbb193df66256a0e434ec014d
train_09266
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
code
expert
Task: code 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. 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": [ "documentation", "cost_latency_tradeoffs", "auditability", "governance" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
1dc1ebc017da68efe6342af346b7b52d2bf23fca
train_09267
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
patch_diff
expert
Task: patch_diff Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: expert Target language: 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": [ "tests_are_truth", "cost_latency_tradeoffs", "governance", "ci_integration" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
95e277a13790952585f626297d6e2d054a131d2a
train_09268
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: Bash Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "tooling", "evaluation_metrics", "tests_are_truth", "repo_scale_reasoning" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ea76e05f7089ebe9db4227b73a0c04b001ad0792
train_09269
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
review
intermediate
Task: review 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Bash", "developer_needs": [ "documentation", "auditability", "reproducibility", "evaluation_metrics" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6f897d48f7780574545bef0eba759604564b9386
train_09270
2026-01-01T00:00:00
Latency, cost, and reliability optimization
review
advanced
Task: review Topic: Latency, cost, and reliability optimization 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": [ "cost_latency_tradeoffs", "repo_scale_reasoning", "evaluation_metrics", "security_gates" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
eee0353682455c824cab04b8e420414c84113b13
train_09271
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
patch_diff
expert
Task: patch_diff Topic: Reasoning-first coding models and tunable deliberation Difficulty: expert Target language: 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. 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", "tooling", "governance", "cost_latency_tradeoffs" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c4bc0dc9470346a4e52b2f0ae4498e9cfc1f6b8f
train_09272
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
compare
expert
Task: compare Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: expert Target language: 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. 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": [ "cost_latency_tradeoffs", "evaluation_metrics", "reproducibility", "security_gates" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bd3e93ab2f48024c67631d4876de6e654c6b2e42
train_09273
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: 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "SQL", "developer_needs": [ "tooling", "auditability", "tests_are_truth", "evaluation_metrics" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6bf82ed6b38a2cbca1d4e506f48f9ce6bc21b8a7
train_09274
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: 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": [ "evaluation_metrics", "documentation", "cost_latency_tradeoffs", "security_gates" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
20e7f57364324a0cf3e50c7b55b4a4881271d050
train_09275
2026-01-01T00:00:00
Self-improving agents and feedback loops
design
intermediate
Task: design Topic: Self-improving agents and feedback loops Difficulty: intermediate 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": [ "reproducibility", "cost_latency_tradeoffs", "evaluation_metrics", "security_gates" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ffb5af248f6d71fdc182b1995cd227b257e4599b
train_09276
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
data_pipeline
advanced
Task: data_pipeline Topic: Code-specialized model families and sizing tradeoffs Difficulty: advanced Target language: Rust Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Rust", "developer_needs": [ "reproducibility", "auditability", "cost_latency_tradeoffs", "governance" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7b2a6142660ea4660fe89681e61bc77c070b0993
train_09277
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
compare
expert
Task: compare Topic: Code-specialized model families and sizing tradeoffs 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "tests_are_truth", "repo_scale_reasoning", "evaluation_metrics", "tooling" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bf64c120fef56e278e0e816703be07b4e9f54d6b
train_09278
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
compare
intermediate
Task: compare 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Java", "developer_needs": [ "documentation", "ci_integration", "tests_are_truth", "cost_latency_tradeoffs" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b50574c26689ca0e02bc26cf2b5f94af3cdd3c60
train_09279
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
failure_analysis
advanced
Task: failure_analysis Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: advanced Target language: 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": [ "repo_scale_reasoning", "tests_are_truth", "governance", "auditability" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dc0841be00889c403e656eab4a5d78ba6639b0a4
train_09280
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
code
expert
Task: code Topic: Reasoning-first coding models and tunable deliberation Difficulty: expert Target language: 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. 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": [ "cost_latency_tradeoffs", "tooling", "evaluation_metrics", "governance" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4fa0494d304ea6aebdecdd188b2bae3ad6d31b94
train_09281
2026-01-01T00:00:00
Secure code generation and policy gates
design
expert
Task: design Topic: Secure code generation and policy gates Difficulty: expert Target language: 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. 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", "governance", "reproducibility", "documentation" ], "moe_experts": [ "governance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
aaf223a5192fec848b33ecb2e04c26d1bc10eba9
train_09282
2026-01-01T00:00:00
Extended context and repo-scale understanding
compare
advanced
Task: compare Topic: Extended context and repo-scale understanding Difficulty: advanced Target language: Python Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Python", "developer_needs": [ "repo_scale_reasoning", "tests_are_truth", "governance", "auditability" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
34416546579f1149b724e5879670c2363ee988d7
train_09283
2026-01-01T00:00:00
Extended context and repo-scale understanding
compare
advanced
Task: compare Topic: Extended context and repo-scale understanding Difficulty: advanced Target language: 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. Compare: capability, cost, latency, reliability
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "cost_latency_tradeoffs", "repo_scale_reasoning", "governance", "tests_are_truth" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c98f225ebe003cc7700d8c0680980ebcc141e0d8
train_09284
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
agent_loop
expert
Task: agent_loop Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: expert Target language: 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "auditability", "ci_integration", "governance", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8bf33ff08016870f481522867666ebdd3d5cfd2c
train_09285
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
compare
intermediate
Task: compare Topic: Governance, provenance, and licensing for code data Difficulty: intermediate Target language: C# Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. 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": [ "tooling", "evaluation_metrics", "auditability", "security_gates" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
16c68b0f72e634ab7fe3fb5a78da68d365befd3a
train_09286
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
code
intermediate
Task: code Topic: Reasoning-first coding models and tunable deliberation Difficulty: intermediate Target language: Java Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. 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": [ "governance", "cost_latency_tradeoffs", "security_gates", "reproducibility" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8f408a23d49edd20fe46dfd3db1294c7cb9ef2b5
train_09287
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: 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Go", "developer_needs": [ "tooling", "governance", "security_gates", "reproducibility" ], "moe_experts": [ "coding_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3c5ccba11f2696a1d1b7b96eb9832bb7045c7bf0
train_09288
2026-01-01T00:00:00
Self-improving agents and feedback loops
design
advanced
Task: design Topic: Self-improving agents and feedback loops Difficulty: advanced Target language: Rust Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "security_gates", "tests_are_truth", "evaluation_metrics", "ci_integration" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
863344129d739dab97e78a8fc2615c7cd8f5149d
train_09289
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
patch_diff
advanced
Task: patch_diff Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced 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. 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": [ "governance", "documentation", "repo_scale_reasoning", "evaluation_metrics" ], "moe_experts": [ "coding_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
8f26f66928460ea15d250577189cf8cbb5d9258d
train_09290
2026-01-01T00:00:00
Latency, cost, and reliability optimization
failure_analysis
expert
Task: failure_analysis 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "JavaScript", "developer_needs": [ "reproducibility", "evaluation_metrics", "security_gates", "tooling" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d18408230c07b78df116c197869959e443906578
train_09291
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
patch_diff
advanced
Task: patch_diff Topic: Tool calling, sandboxes, and CI integration 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. 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", "repo_scale_reasoning", "ci_integration", "cost_latency_tradeoffs" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c13f4c42da8a0993d08466908d1889f2e1730104
train_09292
2026-01-01T00:00:00
Latency, cost, and reliability optimization
explain
advanced
Task: explain Topic: Latency, cost, and reliability optimization 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": [ "repo_scale_reasoning", "reproducibility", "ci_integration", "tooling" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f36961a322e49abfa9c35d3a85168fcb0cf2eaea
train_09293
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: 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
[]
{ "target_language": "Go", "developer_needs": [ "documentation", "ci_integration", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fdc91c16369ad1af94b28adcd23e36dd3f625fde
train_09294
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
failure_analysis
expert
Task: failure_analysis Topic: Mixture-of-Experts (MoE) for code 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. 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": [ "evaluation_metrics", "documentation", "auditability", "tooling" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
da49f2ef73a859a84b182d697d2a32d185786253
train_09295
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
design
intermediate
Task: design Topic: Governance, provenance, and licensing for code data Difficulty: intermediate Target language: 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. 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": [ "evaluation_metrics", "repo_scale_reasoning", "governance", "cost_latency_tradeoffs" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2cc92dedf1f08512af6d4d27f027921f071a52f2
train_09296
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
code
advanced
Task: code Topic: Multimodal dev workflows (docs, diagrams, traces) 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "reproducibility", "security_gates", "auditability", "tooling" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3cb663132613624453fb5c5ac57199b9f9ddb292
train_09297
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: Rust Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Rust", "developer_needs": [ "evaluation_metrics", "ci_integration", "governance", "documentation" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
56cb4d94358de1733c2373661157fb2a0cd3896b
train_09298
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
code
advanced
Task: code Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced Target language: Bash Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "tests_are_truth", "reproducibility", "auditability", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ca94b50467dcc31e257bbf61764b7ec3e6a9e916
train_09299
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: Rust Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Rust", "developer_needs": [ "auditability", "documentation", "repo_scale_reasoning", "tooling" ], "moe_experts": [ "security_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
320b5b0455526ae493e9419f3b637e8b290385db