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_09800
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: Python Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Scaffold: ```python def agent_loop(plan, edit, test, issue, max_iters=4): history = [] p = plan(issue) for _ in range(max_iters): patch = edit(issue, p) ok, report = test(patch) history.append({"plan": p, "ok": ok}) if ok: return patch, history p = p + " | refine" return patch, history ```
[]
{ "target_language": "Python", "developer_needs": [ "repo_scale_reasoning", "documentation", "security_gates", "reproducibility" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d722b93bbfe7c2d8cb5914a96508b5cbd11c1a47
train_09801
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: 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. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Python", "developer_needs": [ "evaluation_metrics", "tooling", "reproducibility", "cost_latency_tradeoffs" ], "moe_experts": [ "evaluation_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ead3831d6643d2c1fcaa1f84e57da28f7c7e50d8
train_09802
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: 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": [ "evaluation_metrics", "repo_scale_reasoning", "ci_integration", "cost_latency_tradeoffs" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4d226c60180865770d7f54be20d3cca8a053b10e
train_09803
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: 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": [ "ci_integration", "documentation", "security_gates", "reproducibility" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e174230e1bfdfc8e4f0fa465ea21e8b77460d5fe
train_09804
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: 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": [ "auditability", "tooling", "documentation", "cost_latency_tradeoffs" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f1c1d1a564401eee99768665e8b3a55ae3250d56
train_09805
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: Java Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Java", "developer_needs": [ "security_gates", "reproducibility", "tests_are_truth", "governance" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ca69145d719ffceeccac3115fdde19eb2bae28d5
train_09806
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
explain
expert
Task: explain Topic: Code-specialized model families and sizing tradeoffs Difficulty: expert Target language: 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": [ "evaluation_metrics", "governance", "ci_integration", "security_gates" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0a6a931fffd7071107bf73e33b92e4e73d9df778
train_09807
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
patch_diff
intermediate
Task: patch_diff Topic: Mixture-of-Experts (MoE) for code Difficulty: intermediate Target language: Bash Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "tests_are_truth", "ci_integration", "governance", "security_gates" ], "moe_experts": [ "performance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9478758d2f704cdd46224563f4d1b821aac87de0
train_09808
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
agent_loop
advanced
Task: agent_loop Topic: Code-specialized model families and sizing tradeoffs Difficulty: advanced 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": [ "security_gates", "auditability", "documentation", "ci_integration" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5e7b5f0ba223b699c45ceca831e311e0803a5de1
train_09809
2026-01-01T00:00:00
Latency, cost, and reliability optimization
compare
intermediate
Task: compare Topic: Latency, cost, and reliability optimization Difficulty: intermediate Target language: TypeScript Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "TypeScript", "developer_needs": [ "governance", "ci_integration", "documentation", "repo_scale_reasoning" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5c09017d346d9b7c5eeac9844919ad1beb476453
train_09810
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: 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": [ "repo_scale_reasoning", "governance", "security_gates", "reproducibility" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
725f49e764b57aa32dd513fda0b59225d5c20533
train_09811
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
review
intermediate
Task: review Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: intermediate Target language: TypeScript Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "TypeScript", "developer_needs": [ "tooling", "repo_scale_reasoning", "governance", "tests_are_truth" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
63e379baef6e624bf6454fe1f425e378a7ab7be2
train_09812
2026-01-01T00:00:00
Latency, cost, and reliability optimization
explain
expert
Task: explain Topic: Latency, cost, and reliability optimization 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
[]
{ "target_language": "JavaScript", "developer_needs": [ "documentation", "auditability", "governance", "security_gates" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
59f3d322de8f7b9deb1a468c750ce1494729f510
train_09813
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: 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. 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": [ "ci_integration", "reproducibility", "security_gates", "tests_are_truth" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
746bba967e00116397eb195318d009b69dc979e3
train_09814
2026-01-01T00:00:00
Extended context and repo-scale understanding
data_pipeline
intermediate
Task: data_pipeline Topic: Extended context and repo-scale understanding 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Go", "developer_needs": [ "evaluation_metrics", "tests_are_truth", "repo_scale_reasoning", "security_gates" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5aa77c02c033bdad1ecf3d1a788c2d693e79bf8c
train_09815
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
eval
intermediate
Task: eval Topic: Agentic coding systems (plan→edit→test→reflect) 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. 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": [ "evaluation_metrics", "documentation", "ci_integration", "tests_are_truth" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
596f0698d908f052a917ef77a22216f9078ecb15
train_09816
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: 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
[]
{ "target_language": "C#", "developer_needs": [ "evaluation_metrics", "governance", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
509acf19c89aa304ca560ba8f44ff4663848223d
train_09817
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: 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "TypeScript", "developer_needs": [ "security_gates", "reproducibility", "ci_integration", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9b702ac911ad605c1078f4d7d90f54be9e4a6a0a
train_09818
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
data_pipeline
expert
Task: data_pipeline Topic: Mixture-of-Experts (MoE) for code Difficulty: expert Target language: TypeScript Context: 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": "TypeScript", "developer_needs": [ "repo_scale_reasoning", "tooling", "evaluation_metrics", "auditability" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fc2485ae7eaf55b2bcef59c724b90ba059085711
train_09819
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
design
advanced
Task: design 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "reproducibility", "auditability", "repo_scale_reasoning", "tooling" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a0ba3d34319b5a674e964f0fed48a697e98d200d
train_09820
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: Java Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Java", "developer_needs": [ "tests_are_truth", "cost_latency_tradeoffs", "repo_scale_reasoning", "documentation" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b68dd0f37c27fcc29356f00ab9206b84ebce4e28
train_09821
2026-01-01T00:00:00
Extended context and repo-scale understanding
patch_diff
expert
Task: patch_diff Topic: Extended context and repo-scale understanding Difficulty: expert Target language: Java Context: 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": "Java", "developer_needs": [ "governance", "evaluation_metrics", "tooling", "documentation" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6ede2f21e135c847c3718a1120440138d7b9c9fd
train_09822
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
failure_analysis
advanced
Task: failure_analysis Topic: Model merging, distillation, and continued pretraining Difficulty: advanced Target language: Python Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Python", "developer_needs": [ "repo_scale_reasoning", "tooling", "auditability", "tests_are_truth" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bb19004c47e5027b7bd2b6e3573a6df5108f664f
train_09823
2026-01-01T00:00:00
Extended context and repo-scale understanding
data_pipeline
expert
Task: data_pipeline Topic: Extended context and repo-scale understanding Difficulty: expert Target language: TypeScript Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "TypeScript", "developer_needs": [ "evaluation_metrics", "tooling", "governance", "auditability" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
964d7c9f360dde82d78ca2a2868ca3847cbd65cb
train_09824
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: 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Bash", "developer_needs": [ "reproducibility", "tooling", "security_gates", "evaluation_metrics" ], "moe_experts": [ "data_curation_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
d44a6604c82c258b09fddf2940a4ad5209a2f680
train_09825
2026-01-01T00:00:00
Secure code generation and policy gates
explain
expert
Task: explain 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. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Go", "developer_needs": [ "tests_are_truth", "repo_scale_reasoning", "documentation", "ci_integration" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c846bc5b10ffaa843ffd7a6feeda79c4a15544f3
train_09826
2026-01-01T00:00:00
Latency, cost, and reliability optimization
agent_loop
advanced
Task: agent_loop Topic: Latency, cost, and reliability optimization Difficulty: advanced Target language: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Python", "developer_needs": [ "cost_latency_tradeoffs", "reproducibility", "security_gates", "repo_scale_reasoning" ], "moe_experts": [ "security_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fad51c712826ecc3aaba0510caf5374bd882ce21
train_09827
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
design
expert
Task: design Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: expert Target language: C# Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "C#", "developer_needs": [ "ci_integration", "repo_scale_reasoning", "security_gates", "evaluation_metrics" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f91a09497b621d12dbf2e24ba35ba39305a5e8bc
train_09828
2026-01-01T00:00:00
Extended context and repo-scale understanding
eval
expert
Task: eval Topic: Extended context and repo-scale understanding Difficulty: expert Target language: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Python", "developer_needs": [ "cost_latency_tradeoffs", "tooling", "repo_scale_reasoning", "ci_integration" ], "moe_experts": [ "coding_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4ae0fc400f2e8eda15c2b3a0475f58b0caa95b81
train_09829
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
agent_loop
intermediate
Task: agent_loop Topic: Model merging, distillation, and continued pretraining Difficulty: intermediate Target language: Bash Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "Bash", "developer_needs": [ "documentation", "tests_are_truth", "repo_scale_reasoning", "ci_integration" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e8a8f907e55b5b935fb47a21bc8b65a6daed9f9d
train_09830
2026-01-01T00:00:00
Latency, cost, and reliability optimization
explain
intermediate
Task: explain Topic: Latency, cost, and reliability optimization 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "security_gates", "evaluation_metrics", "tests_are_truth", "cost_latency_tradeoffs" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
fd46084b51062e2b72925369c42111dd742e972b
train_09831
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
agent_loop
intermediate
Task: agent_loop Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: intermediate Target language: Rust Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "cost_latency_tradeoffs", "reproducibility", "auditability", "documentation" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4d016895a29bddd974c985bb100abed2ba3e75e0
train_09832
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
data_pipeline
expert
Task: data_pipeline Topic: Mixture-of-Experts (MoE) for code Difficulty: expert Target language: 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. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[]
{ "target_language": "Go", "developer_needs": [ "reproducibility", "cost_latency_tradeoffs", "ci_integration", "tooling" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f7f9adee30364074f2631100f36d757930959c37
train_09833
2026-01-01T00:00:00
Secure code generation and policy gates
review
advanced
Task: review Topic: Secure code generation and policy gates Difficulty: advanced Target language: JavaScript Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. 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": [ "documentation", "evaluation_metrics", "repo_scale_reasoning", "governance" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
09a6e4b90797ace3bff878d7c180aeb62f750369
train_09834
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
code
expert
Task: code Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: expert Target language: JavaScript Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "JavaScript", "developer_needs": [ "evaluation_metrics", "auditability", "ci_integration", "tests_are_truth" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4e6317c0dd0edd95e23cc51fe226632da848f332
train_09835
2026-01-01T00:00:00
Secure code generation and policy gates
data_pipeline
intermediate
Task: data_pipeline Topic: Secure code generation and policy gates Difficulty: intermediate Target language: C# Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "tests_are_truth", "security_gates", "tooling", "governance" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b2240c130e692cc7c383e0e7f98dcbcff4da4744
train_09836
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: Go Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Go", "developer_needs": [ "auditability", "ci_integration", "evaluation_metrics", "governance" ], "moe_experts": [ "data_curation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7b01d2f4cc79e2133c3007bc5fc8277fcea48750
train_09837
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
failure_analysis
expert
Task: failure_analysis Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: expert Target language: Java Context: 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": "Java", "developer_needs": [ "documentation", "tooling", "tests_are_truth", "governance" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2c69feca5743540df01f0c8321fbf6f69960ba61
train_09838
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: Go Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Go", "developer_needs": [ "tests_are_truth", "tooling", "governance", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
64e8d22feb3a1901500cd00f5ee7acdb10c1b4ae
train_09839
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
explain
intermediate
Task: explain Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: intermediate Target language: 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
[ "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", "cost_latency_tradeoffs", "auditability", "documentation" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bb411324b0d265e5780e540c79c8ff41f0cc6ec9
train_09840
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: 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "JavaScript", "developer_needs": [ "governance", "evaluation_metrics", "tooling", "reproducibility" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5ac8f8fed6703f01dc6b8c24a8bcc16ed39668c5
train_09841
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: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Pipeline: Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
[ "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", "ci_integration", "auditability" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7c87afe199cc6c76ea4af09af2ced1e9dc595af0
train_09842
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
eval
intermediate
Task: eval Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: intermediate Target language: 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. 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": [ "repo_scale_reasoning", "ci_integration", "auditability", "cost_latency_tradeoffs" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
db39747f167e8ddf78e927ac28d8b00c494ffde2
train_09843
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
code
expert
Task: code Topic: Governance, provenance, and licensing for code data Difficulty: expert Target language: C# Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "repo_scale_reasoning", "evaluation_metrics", "documentation", "tooling" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
47a3095756bdeb6a011802700ca47d4258d78ff0
train_09844
2026-01-01T00:00:00
Self-improving agents and feedback loops
agent_loop
expert
Task: agent_loop Topic: Self-improving agents and feedback loops Difficulty: expert Target language: 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. 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": [ "ci_integration", "auditability", "repo_scale_reasoning", "governance" ], "moe_experts": [ "governance_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e4615d90119f5fc94507145e43cdbf3f3a1cde40
train_09845
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
design
expert
Task: design 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Bash", "developer_needs": [ "cost_latency_tradeoffs", "tests_are_truth", "tooling", "security_gates" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
af47f786a2f62667f44778f51b47dcba61559ae0
train_09846
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: 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": "JavaScript", "developer_needs": [ "repo_scale_reasoning", "tests_are_truth", "cost_latency_tradeoffs", "ci_integration" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c6a4420c3abaf22b63d2e5661d64dbf73c120728
train_09847
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: 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
[]
{ "target_language": "Python", "developer_needs": [ "repo_scale_reasoning", "reproducibility", "tests_are_truth", "evaluation_metrics" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f0fb01a19fb7295182706fcce6e88f7c4c56d2aa
train_09848
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: TypeScript Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "TypeScript", "developer_needs": [ "governance", "ci_integration", "reproducibility", "auditability" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0b37bc8ae873dad27500be6b23317f466e8c0263
train_09849
2026-01-01T00:00:00
Model merging, distillation, and continued pretraining
review
intermediate
Task: review Topic: Model merging, distillation, and continued pretraining Difficulty: intermediate Target language: 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. Review: correctness, security, performance, governance
[]
{ "target_language": "JavaScript", "developer_needs": [ "tests_are_truth", "governance", "repo_scale_reasoning", "ci_integration" ], "moe_experts": [ "evaluation_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a2f1809636967336bb09d729e6b684dc9265fdbd
train_09850
2026-01-01T00:00:00
Latency, cost, and reliability optimization
compare
expert
Task: compare Topic: Latency, cost, and reliability optimization 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. 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": [ "documentation", "reproducibility", "governance", "tests_are_truth" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
093cfd1e8e2b409a3333eab1b95658a13c0baf36
train_09851
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
patch_diff
advanced
Task: patch_diff Topic: SWE-bench style real-repo evaluation 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. 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": [ "auditability", "cost_latency_tradeoffs", "ci_integration", "governance" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f1055eba9ad97437efd936a4212791b98883d0a4
train_09852
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: Bash Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Bash", "developer_needs": [ "governance", "security_gates", "ci_integration", "repo_scale_reasoning" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7583497c97360104f2198f228833cc36e221dac2
train_09853
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
compare
expert
Task: compare Topic: SWE-bench style real-repo evaluation Difficulty: expert Target language: TypeScript Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Compare: capability, cost, latency, reliability
[]
{ "target_language": "TypeScript", "developer_needs": [ "repo_scale_reasoning", "security_gates", "governance", "evaluation_metrics" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5dafbd3f36642b2576cdfcaa621bc55a02259298
train_09854
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: Python Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Python", "developer_needs": [ "reproducibility", "tests_are_truth", "governance", "security_gates" ], "moe_experts": [ "security_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4c047e725551bb29efc77cd10c918b7d1b48f6ca
train_09855
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
agent_loop
advanced
Task: agent_loop Topic: Code-specialized model families and sizing tradeoffs 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. 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": [ "documentation", "cost_latency_tradeoffs", "tooling", "governance" ], "moe_experts": [ "coding_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
1ddd235638310c307df6f638d71b922793f0449c
train_09856
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: 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": [ "ci_integration", "cost_latency_tradeoffs", "tests_are_truth", "repo_scale_reasoning" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
112f6f914d6309814c6e25adc2dfa80608a9f908
train_09857
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
code
advanced
Task: code Topic: Code-specialized model families and sizing tradeoffs Difficulty: advanced Target language: Go Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Go", "developer_needs": [ "tooling", "auditability", "documentation", "ci_integration" ], "moe_experts": [ "evaluation_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
147b122748e928d7ec24c864c5225673778d6b58
train_09858
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
code
intermediate
Task: code Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: intermediate Target language: Java Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "security_gates", "cost_latency_tradeoffs", "tests_are_truth", "governance" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
429020ec1bc9a558ea75c6f4fa49ae5dee2fff3a
train_09859
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: 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", "reproducibility" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
28f2c178363fb7b9a5d8e991a9c6891915899556
train_09860
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: SQL Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Loop: Plan → Edit → Test → Reflect → Human gate
[]
{ "target_language": "SQL", "developer_needs": [ "auditability", "ci_integration", "cost_latency_tradeoffs", "repo_scale_reasoning" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dc437405fcc457f1de769a4b9b5a42004727b5d1
train_09861
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
explain
advanced
Task: explain Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced Target language: TypeScript Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "TypeScript", "developer_needs": [ "security_gates", "tooling", "ci_integration", "auditability" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
e6e0327fe735d1c66fb9e74229e9e41db155ab41
train_09862
2026-01-01T00:00:00
Reasoning-first coding models and tunable deliberation
compare
expert
Task: compare Topic: Reasoning-first coding models and tunable deliberation Difficulty: expert Target language: 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": [ "auditability", "tooling", "repo_scale_reasoning", "reproducibility" ], "moe_experts": [ "coding_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
f0b2634b82d127ec9ec3a05dd90eb72a4e839a4a
train_09863
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
agent_loop
intermediate
Task: agent_loop Topic: Tool calling, sandboxes, and CI integration 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. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "ci_integration", "tooling", "security_gates", "evaluation_metrics" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6a1b4048e860b27d5279cc7da6a6298c34e70de9
train_09864
2026-01-01T00:00:00
Multimodal dev workflows (docs, diagrams, traces)
patch_diff
advanced
Task: patch_diff Topic: Multimodal dev workflows (docs, diagrams, traces) Difficulty: advanced Target language: SQL Context: 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": [ "repo_scale_reasoning", "cost_latency_tradeoffs", "auditability", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
01e42daea840880e6c2315b2a293ecb4a8fe9e95
train_09865
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
design
advanced
Task: design Topic: Tool calling, sandboxes, and CI integration Difficulty: advanced Target language: Java Context: Large monorepo with flaky tests and strict CI. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "security_gates", "tests_are_truth", "governance", "evaluation_metrics" ], "moe_experts": [ "agentic_systems_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4ec057e84a3c4632974ceaaa9a296188b452450d
train_09866
2026-01-01T00:00:00
Secure code generation and policy gates
patch_diff
intermediate
Task: patch_diff Topic: Secure code generation and policy gates 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": [ "evaluation_metrics", "governance", "tests_are_truth", "cost_latency_tradeoffs" ], "moe_experts": [ "security_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
7bb00640aa59420b8bb9d34bfee8aaa5cf172d01
train_09867
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: 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Bash", "developer_needs": [ "evaluation_metrics", "reproducibility", "auditability", "repo_scale_reasoning" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c52ba51cf9742672c691660acb9a14afb3d8267e
train_09868
2026-01-01T00:00:00
Tool calling, sandboxes, and CI integration
patch_diff
intermediate
Task: patch_diff Topic: Tool calling, sandboxes, and CI integration 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. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "governance", "auditability", "tooling", "security_gates" ], "moe_experts": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
4c35ac634f30646b886b51897ebabc6752a5629d
train_09869
2026-01-01T00:00:00
Latency, cost, and reliability optimization
failure_analysis
advanced
Task: failure_analysis Topic: Latency, cost, and reliability optimization Difficulty: advanced Target language: 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. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "Bash", "developer_needs": [ "auditability", "cost_latency_tradeoffs", "security_gates", "documentation" ], "moe_experts": [ "data_curation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c43f008023ac5502f461ab1c70821ecbf5eca79a
train_09870
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
patch_diff
intermediate
Task: patch_diff Topic: Code-specialized model families and sizing tradeoffs Difficulty: intermediate Target language: SQL Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "SQL", "developer_needs": [ "ci_integration", "documentation", "cost_latency_tradeoffs", "tooling" ], "moe_experts": [ "agentic_systems_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
47d96750360083eb693a6908569ce2c4206bc73b
train_09871
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: Bash Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "Bash", "developer_needs": [ "reproducibility", "documentation", "evaluation_metrics", "cost_latency_tradeoffs" ], "moe_experts": [ "agentic_systems_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c3be35998aa1177c74ed0ca3ba3834c2c18a45e4
train_09872
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
patch_diff
advanced
Task: patch_diff Topic: SWE-bench style real-repo evaluation Difficulty: advanced Target language: SQL Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "SQL", "developer_needs": [ "evaluation_metrics", "ci_integration", "tests_are_truth", "documentation" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
cf601cec3704a054a53605741e1573e9bfd5bd27
train_09873
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
patch_diff
expert
Task: patch_diff 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. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Python", "developer_needs": [ "auditability", "evaluation_metrics", "ci_integration", "tests_are_truth" ], "moe_experts": [ "coding_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
488a0b3281011bf8533f7ac504b32219d2da5bd4
train_09874
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: JavaScript Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "JavaScript", "developer_needs": [ "cost_latency_tradeoffs", "documentation", "tests_are_truth", "ci_integration" ], "moe_experts": [ "data_curation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ae8411a795d69207c0953bf58cbad41f18c5156c
train_09875
2026-01-01T00:00:00
Self-improving agents and feedback loops
review
expert
Task: review Topic: Self-improving agents and feedback loops Difficulty: expert Target language: C# Context: Research team validating claims against real repos. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Review: correctness, security, performance, governance
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "evaluation_metrics", "auditability", "cost_latency_tradeoffs", "reproducibility" ], "moe_experts": [ "governance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a48d85509cc98e6c0247c62339e59e73c05f87bd
train_09876
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: 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. Eval: pass@k, time-to-green, regressions, diff size
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Java", "developer_needs": [ "cost_latency_tradeoffs", "tests_are_truth", "tooling", "governance" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2a7d117f046270288f416902d4cb333f0f7fe9ea
train_09877
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
explain
advanced
Task: explain Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced Target language: Rust Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "Rust", "developer_needs": [ "governance", "tooling", "tests_are_truth", "reproducibility" ], "moe_experts": [ "evaluation_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a1c926ea1a1fdc13feb9fbbe3d42d4289578efc1
train_09878
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: Bash Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Patch (diff-style): ```diff - if x == 0: - return 1/x + if x == 0: + raise ValueError('division by zero') ``` Acceptance: - Tests pass - No new regressions
[]
{ "target_language": "Bash", "developer_needs": [ "auditability", "ci_integration", "governance", "reproducibility" ], "moe_experts": [ "agentic_systems_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
2faef4557781a5c3236709ee6f8a94352f04a0e3
train_09879
2026-01-01T00:00:00
Secure code generation and policy gates
review
advanced
Task: review 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. Review: correctness, security, performance, governance
[]
{ "target_language": "Python", "developer_needs": [ "evaluation_metrics", "reproducibility", "auditability", "cost_latency_tradeoffs" ], "moe_experts": [ "performance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
0708930087b4e77ae2439ad3cc469b4a227b8e09
train_09880
2026-01-01T00:00:00
Dataset curation pipelines (filter, dedupe, quality)
failure_analysis
advanced
Task: failure_analysis Topic: Dataset curation pipelines (filter, dedupe, quality) Difficulty: advanced Target language: 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "tests_are_truth", "governance", "security_gates", "repo_scale_reasoning" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
34c5122b6ea3ebf4d89d152ec30bb3b0ba1b3602
train_09881
2026-01-01T00:00:00
Secure code generation and policy gates
failure_analysis
advanced
Task: failure_analysis Topic: Secure code generation and policy gates Difficulty: advanced Target language: 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": [ "cost_latency_tradeoffs", "tests_are_truth", "governance", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
56fde241b0fee8f1b74264301ec7608f9ab2f03b
train_09882
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: 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": [ "repo_scale_reasoning", "reproducibility", "tests_are_truth", "evaluation_metrics" ], "moe_experts": [ "evaluation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bc789a1afc67b390f4eb323429afeb01a6b33862
train_09883
2026-01-01T00:00:00
Latency, cost, and reliability optimization
explain
expert
Task: explain 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. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "JavaScript", "developer_needs": [ "governance", "ci_integration", "documentation", "auditability" ], "moe_experts": [ "coding_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9dfeac8ec310bf9725fc9c96dd002e8510e1d26b
train_09884
2026-01-01T00:00:00
Code-specialized model families and sizing tradeoffs
design
expert
Task: design Topic: Code-specialized model families and sizing tradeoffs 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": [ "ci_integration", "repo_scale_reasoning", "auditability", "governance" ], "moe_experts": [ "data_curation_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
5f334bd1924227896206c15d0abe6ee240ed0804
train_09885
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: 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": [ "governance", "tooling", "reproducibility", "cost_latency_tradeoffs" ], "moe_experts": [ "governance_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
bfaf866577e7e73d0962ae0d0e03ff70bd5c9ac7
train_09886
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
design
advanced
Task: design Topic: SWE-bench style real-repo evaluation Difficulty: advanced Target language: Bash Context: 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": [ "cost_latency_tradeoffs", "tooling", "repo_scale_reasoning", "tests_are_truth" ], "moe_experts": [ "security_expert", "performance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
31b70315c7753574af5243747a0196d0182d4470
train_09887
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
failure_analysis
intermediate
Task: failure_analysis Topic: Governance, provenance, and licensing for code data Difficulty: intermediate Target language: TypeScript Context: High-traffic service with latency SLOs. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "TypeScript", "developer_needs": [ "auditability", "documentation", "tooling", "ci_integration" ], "moe_experts": [ "performance_expert", "governance_expert" ], "governance": { "audit_required": true, "tests_required": true } }
dede9eba7d2283e8eb936d62b3fb96733cf8a97b
train_09888
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
review
advanced
Task: review Topic: SWE-bench style real-repo evaluation Difficulty: advanced Target language: Go Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. 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": [ "governance", "cost_latency_tradeoffs", "repo_scale_reasoning", "documentation" ], "moe_experts": [ "coding_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
c5f9f4c76a9d8af65b4075e58b78a9c979b4aa61
train_09889
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: 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": [ "agentic_systems_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6f311ce2d4b70cd3b4c664028609ddba57cb7698
train_09890
2026-01-01T00:00:00
Secure code generation and policy gates
compare
advanced
Task: compare Topic: Secure code generation and policy gates 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. Compare: capability, cost, latency, reliability
[]
{ "target_language": "Rust", "developer_needs": [ "governance", "reproducibility", "tests_are_truth", "tooling" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
72bfb6f57bf2df0701e45b84e32a4f61f227348f
train_09891
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: 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. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Python", "developer_needs": [ "tests_are_truth", "auditability", "reproducibility", "repo_scale_reasoning" ], "moe_experts": [ "evaluation_expert", "coding_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6b22725a92aa036ed829cd7e10ff84ae09d7dd8a
train_09892
2026-01-01T00:00:00
Governance, provenance, and licensing for code data
agent_loop
intermediate
Task: agent_loop Topic: Governance, provenance, and licensing for code data Difficulty: intermediate Target language: 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. Loop: Plan → Edit → Test → Reflect → Human gate
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "documentation", "evaluation_metrics", "ci_integration", "security_gates" ], "moe_experts": [ "governance_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
3f171cb3a6b44e61986a3bc1742d1331e6ed1832
train_09893
2026-01-01T00:00:00
Self-improving agents and feedback loops
eval
advanced
Task: eval Topic: Self-improving agents and feedback loops Difficulty: advanced Target language: Java Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Eval: pass@k, time-to-green, regressions, diff size
[]
{ "target_language": "Java", "developer_needs": [ "repo_scale_reasoning", "evaluation_metrics", "cost_latency_tradeoffs", "auditability" ], "moe_experts": [ "agentic_systems_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ed1467431872b97b11f67edec706bfd2b008612d
train_09894
2026-01-01T00:00:00
Self-improving agents and feedback loops
failure_analysis
advanced
Task: failure_analysis Topic: Self-improving agents and feedback loops Difficulty: advanced Target language: SQL Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Failure: - Initial patch broke edge case Reflection: - Missing zero-input guard Correction: - Add explicit validation + test
[]
{ "target_language": "SQL", "developer_needs": [ "repo_scale_reasoning", "ci_integration", "governance", "security_gates" ], "moe_experts": [ "security_expert", "evaluation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
6c4177cf3a63c6cf516d66244f83011c977c0811
train_09895
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: 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
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "C#", "developer_needs": [ "reproducibility", "evaluation_metrics", "repo_scale_reasoning", "cost_latency_tradeoffs" ], "moe_experts": [ "coding_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
ae05f8f92feebb497c9e07dd36d6085502be6d64
train_09896
2026-01-01T00:00:00
Agentic coding systems (plan→edit→test→reflect)
explain
intermediate
Task: explain Topic: Agentic coding systems (plan→edit→test→reflect) Difficulty: intermediate Target language: 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", "tests_are_truth", "governance", "cost_latency_tradeoffs" ], "moe_experts": [ "evaluation_expert", "data_curation_expert" ], "governance": { "audit_required": true, "tests_required": true } }
9ece35f177959a0537267befb4d28ea852a4804a
train_09897
2026-01-01T00:00:00
Extended context and repo-scale understanding
explain
advanced
Task: explain Topic: Extended context and repo-scale understanding Difficulty: advanced Target language: 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": [ "ci_integration", "repo_scale_reasoning", "tooling", "tests_are_truth" ], "moe_experts": [ "governance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
07d2072bd64a8b269317df61b9b0c7a8174c1801
train_09898
2026-01-01T00:00:00
SWE-bench style real-repo evaluation
code
intermediate
Task: code Topic: SWE-bench style real-repo evaluation Difficulty: intermediate Target language: Java Context: Regulated environment requiring audit trails. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[]
{ "target_language": "Java", "developer_needs": [ "cost_latency_tradeoffs", "reproducibility", "documentation", "tests_are_truth" ], "moe_experts": [ "performance_expert", "security_expert" ], "governance": { "audit_required": true, "tests_required": true } }
b6ad07354aae5e73ab62bd14438bc6ca7985f81c
train_09899
2026-01-01T00:00:00
Mixture-of-Experts (MoE) for code
explain
advanced
Task: explain Topic: Mixture-of-Experts (MoE) for code Difficulty: advanced Target language: TypeScript Context: Offline/local deployment with limited compute. Produce expert-level, production-ready artifacts.
Facts: - Modern AI coding prioritizes correctness, evaluation, and governance. - Agentic loops with test gates outperform single-pass generation. Design with risks, metrics, acceptance criteria
[ "Identify failing behavior via tests", "Minimize change surface", "Apply patch", "Run targeted + full suite", "Verify no regressions" ]
{ "target_language": "TypeScript", "developer_needs": [ "ci_integration", "security_gates", "cost_latency_tradeoffs", "repo_scale_reasoning" ], "moe_experts": [ "performance_expert", "agentic_systems_expert" ], "governance": { "audit_required": true, "tests_required": true } }
a455db932c82e5532d80a79fac02233be94b7c6d