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_13500 | 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
```
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Python",
"developer_needs": [
"evaluation_metrics",
"cost_latency_tradeoffs",
"governance",
"tooling"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d722b93bbfe7c2d8cb5914a96508b5cbd11c1a47 | |
train_13501 | 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: 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.
Loop: Plan → Edit → Test → Reflect → Human gate
| [] | {
"target_language": "Java",
"developer_needs": [
"evaluation_metrics",
"governance",
"documentation",
"tests_are_truth"
],
"moe_experts": [
"agentic_systems_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 12e5d857cdc9c882fdaa260f15da3fa1e68b8acc | |
train_13502 | 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: 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.
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",
"auditability",
"evaluation_metrics",
"repo_scale_reasoning"
],
"moe_experts": [
"data_curation_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d67064746ce0e311d7c20c5452ee8c3ee6fdded7 | |
train_13503 | 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: C#
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Review: correctness, security, performance, governance
| [] | {
"target_language": "C#",
"developer_needs": [
"documentation",
"repo_scale_reasoning",
"reproducibility",
"ci_integration"
],
"moe_experts": [
"coding_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 06b8fec492a497a4309fb9d02a8a4d9e193e65e6 | |
train_13504 | 2026-01-01T00:00:00 | Secure code generation and policy gates | data_pipeline | expert | Task: data_pipeline
Topic: Secure code generation and policy gates
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.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [] | {
"target_language": "SQL",
"developer_needs": [
"tests_are_truth",
"evaluation_metrics",
"repo_scale_reasoning",
"ci_integration"
],
"moe_experts": [
"evaluation_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 61975afe620be03265d3b5f18a642296f7007f58 | |
train_13505 | 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: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Patch (diff-style):
```diff
- if x == 0:
- return 1/x
+ if x == 0:
+ raise ValueError('division by zero')
```
Acceptance:
- Tests pass
- No new regressions
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"documentation",
"evaluation_metrics",
"cost_latency_tradeoffs",
"ci_integration"
],
"moe_experts": [
"agentic_systems_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 6db968525e672993fbc6c3770eeed66b8e4bdcc9 | |
train_13506 | 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: 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": [
"auditability",
"tests_are_truth",
"governance",
"ci_integration"
],
"moe_experts": [
"data_curation_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | b5a19c9bf4e53ce977caff1668a807c2d554b106 | |
train_13507 | 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: JavaScript
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Loop: Plan → Edit → Test → Reflect → Human gate
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "JavaScript",
"developer_needs": [
"ci_integration",
"evaluation_metrics",
"security_gates",
"tooling"
],
"moe_experts": [
"data_curation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | b823a5e10f4e1b5846dedcc5215e2d5fc0fcd182 | |
train_13508 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | explain | expert | Task: explain
Topic: Mixture-of-Experts (MoE) for code
Difficulty: expert
Target language: SQL
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "SQL",
"developer_needs": [
"tooling",
"evaluation_metrics",
"reproducibility",
"security_gates"
],
"moe_experts": [
"agentic_systems_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | c7ed5cf9c0c084f399d7eafc9749d5de38ce321c | |
train_13509 | 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: Bash
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [] | {
"target_language": "Bash",
"developer_needs": [
"auditability",
"tooling",
"documentation",
"cost_latency_tradeoffs"
],
"moe_experts": [
"evaluation_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 8fe615d57c1383f2f0d6fed0297f2ecbc4cd7d81 | |
train_13510 | 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: 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
| [] | {
"target_language": "Java",
"developer_needs": [
"tooling",
"reproducibility",
"auditability",
"tests_are_truth"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 658f171cbb5f93e4b993cb52c63c96b915af861d | |
train_13511 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | agent_loop | intermediate | Task: agent_loop
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: intermediate
Target language: 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
| [] | {
"target_language": "Bash",
"developer_needs": [
"reproducibility",
"ci_integration",
"auditability",
"evaluation_metrics"
],
"moe_experts": [
"evaluation_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d197f1538fb1ae8b86a9bedeb088101b12c22507 | |
train_13512 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | patch_diff | advanced | Task: patch_diff
Topic: Model merging, distillation, and continued pretraining
Difficulty: advanced
Target language: 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.
Patch (diff-style):
```diff
- if x == 0:
- return 1/x
+ if x == 0:
+ raise ValueError('division by zero')
```
Acceptance:
- Tests pass
- No new regressions
| [] | {
"target_language": "Python",
"developer_needs": [
"tooling",
"documentation",
"repo_scale_reasoning",
"cost_latency_tradeoffs"
],
"moe_experts": [
"agentic_systems_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f680c35b9744de4253b8e7bd81d483a1c60ef851 | |
train_13513 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | patch_diff | intermediate | Task: patch_diff
Topic: Model merging, distillation, and continued pretraining
Difficulty: intermediate
Target language: SQL
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Patch (diff-style):
```diff
- if x == 0:
- return 1/x
+ if x == 0:
+ raise ValueError('division by zero')
```
Acceptance:
- Tests pass
- No new regressions
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "SQL",
"developer_needs": [
"tests_are_truth",
"governance",
"evaluation_metrics",
"tooling"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | b2740e998ae6d8483d6deb036de9a7be35df20d0 | |
train_13514 | 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: 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
| [] | {
"target_language": "Go",
"developer_needs": [
"tests_are_truth",
"security_gates",
"evaluation_metrics",
"repo_scale_reasoning"
],
"moe_experts": [
"governance_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 9be090042940d511db98c8f55ca6a14b038929b0 | |
train_13515 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | patch_diff | expert | Task: patch_diff
Topic: Mixture-of-Experts (MoE) for code
Difficulty: expert
Target language: TypeScript
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
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": [
"documentation",
"governance",
"reproducibility",
"security_gates"
],
"moe_experts": [
"agentic_systems_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | bb6b7ea46cd50c94c463f9a7cedc8d3fe7d38df4 | |
train_13516 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | eval | intermediate | Task: eval
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: intermediate
Target language: Python
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "Python",
"developer_needs": [
"ci_integration",
"reproducibility",
"tests_are_truth",
"auditability"
],
"moe_experts": [
"agentic_systems_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | ee43ccaac1fbc6f6ccd119aed628638306a37703 | |
train_13517 | 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: 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": "SQL",
"developer_needs": [
"reproducibility",
"auditability",
"evaluation_metrics",
"tests_are_truth"
],
"moe_experts": [
"security_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | aad56dd3ff7f4b52d104b84a4b70130d5d6f011b | |
train_13518 | 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: Java
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Java",
"developer_needs": [
"tests_are_truth",
"governance",
"cost_latency_tradeoffs",
"security_gates"
],
"moe_experts": [
"agentic_systems_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 187b90fe7856efa2e5757a45818c17b674b52a1f | |
train_13519 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | design | expert | Task: design
Topic: Mixture-of-Experts (MoE) for code
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.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "C#",
"developer_needs": [
"ci_integration",
"documentation",
"evaluation_metrics",
"governance"
],
"moe_experts": [
"data_curation_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f1980579b766194c76210a209d90ff3d3b5286ae | |
train_13520 | 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
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "TypeScript",
"developer_needs": [
"evaluation_metrics",
"governance",
"documentation",
"ci_integration"
],
"moe_experts": [
"evaluation_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 9b702ac911ad605c1078f4d7d90f54be9e4a6a0a | |
train_13521 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | explain | intermediate | Task: explain
Topic: Governance, provenance, and licensing for code data
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": [
"security_gates",
"repo_scale_reasoning",
"governance",
"auditability"
],
"moe_experts": [
"governance_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | bbce43d0ba91ed01e1e0d11312daa691ddd5320a | |
train_13522 | 2026-01-01T00:00:00 | Secure code generation and policy gates | design | intermediate | Task: design
Topic: Secure code generation and policy gates
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.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Python",
"developer_needs": [
"governance",
"auditability",
"tooling",
"documentation"
],
"moe_experts": [
"security_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 661de9065f792bcf0509468650f163f62eba53b7 | |
train_13523 | 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: C#
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "C#",
"developer_needs": [
"documentation",
"security_gates",
"governance",
"evaluation_metrics"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 96b3048b6ac0ef9f491310ec8b0ef70ce72a81b3 | |
train_13524 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | compare | expert | Task: compare
Topic: Extended context and repo-scale understanding
Difficulty: expert
Target language: JavaScript
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Compare: capability, cost, latency, reliability
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"evaluation_metrics",
"repo_scale_reasoning",
"documentation",
"security_gates"
],
"moe_experts": [
"governance_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 365f16a31a500ba8c55b50f16019dd6e10ad3808 | |
train_13525 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | explain | expert | Task: explain
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: expert
Target language: 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
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"documentation",
"tests_are_truth",
"auditability",
"reproducibility"
],
"moe_experts": [
"agentic_systems_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f368addcb0999a645dccfd18d00cc429f96b2a41 | |
train_13526 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | data_pipeline | expert | Task: data_pipeline
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: expert
Target language: SQL
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [] | {
"target_language": "SQL",
"developer_needs": [
"tooling",
"tests_are_truth",
"documentation",
"governance"
],
"moe_experts": [
"data_curation_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d5f950bf499cc77e3efb651ea185ffadf6429eeb | |
train_13527 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | review | intermediate | Task: review
Topic: Latency, cost, and reliability optimization
Difficulty: intermediate
Target language: Rust
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Review: correctness, security, performance, governance
| [] | {
"target_language": "Rust",
"developer_needs": [
"cost_latency_tradeoffs",
"governance",
"tooling",
"auditability"
],
"moe_experts": [
"coding_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | bc60e783f932ddcca5e3878af5cf56c67c97a01e | |
train_13528 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | eval | expert | Task: eval
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: expert
Target language: SQL
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Eval:
pass@k, time-to-green, regressions, diff size
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "SQL",
"developer_needs": [
"governance",
"ci_integration",
"tooling",
"reproducibility"
],
"moe_experts": [
"evaluation_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 5b16b1206e2ff34af52d76cc1796f90968e74f42 | |
train_13529 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | agent_loop | intermediate | Task: agent_loop
Topic: Mixture-of-Experts (MoE) for code
Difficulty: intermediate
Target language: TypeScript
Context: 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": [
"tests_are_truth",
"evaluation_metrics",
"tooling",
"security_gates"
],
"moe_experts": [
"coding_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f7b4ec1bb9e322ff41e517e682fc843805ffcc92 | |
train_13530 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | agent_loop | expert | Task: agent_loop
Topic: Code-specialized model families and sizing tradeoffs
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": [
"auditability",
"governance",
"tests_are_truth",
"evaluation_metrics"
],
"moe_experts": [
"data_curation_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 466819128a0060341aa41523bee581db01e0d0d9 | |
train_13531 | 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: Python
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Scaffold:
```python
def agent_loop(plan, edit, test, issue, max_iters=4):
history = []
p = plan(issue)
for _ in range(max_iters):
patch = edit(issue, p)
ok, report = test(patch)
history.append({"plan": p, "ok": ok})
if ok:
return patch, history
p = p + " | refine"
return patch, history
```
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Python",
"developer_needs": [
"security_gates",
"auditability",
"tests_are_truth",
"documentation"
],
"moe_experts": [
"data_curation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 1a1db28b9be36c662ccd36133ecedba893f7d346 | |
train_13532 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | eval | advanced | Task: eval
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: advanced
Target language: JavaScript
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Eval:
pass@k, time-to-green, regressions, diff size
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "JavaScript",
"developer_needs": [
"tooling",
"cost_latency_tradeoffs",
"documentation",
"evaluation_metrics"
],
"moe_experts": [
"coding_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 3468f8f0aaa8978e73a9d3db2fc2303ef6221290 | |
train_13533 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | design | expert | Task: design
Topic: Latency, cost, and reliability optimization
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.
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",
"documentation",
"cost_latency_tradeoffs",
"ci_integration"
],
"moe_experts": [
"coding_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 727dd238e03a35d7233194c480eefdc10bf317c3 | |
train_13534 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | review | intermediate | Task: review
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: intermediate
Target language: Go
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Review: correctness, security, performance, governance
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Go",
"developer_needs": [
"cost_latency_tradeoffs",
"documentation",
"governance",
"reproducibility"
],
"moe_experts": [
"data_curation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7a02e06304f603a9f7b0a5330ac98ae399651d1b | |
train_13535 | 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: 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": [
"tooling",
"auditability",
"ci_integration",
"cost_latency_tradeoffs"
],
"moe_experts": [
"coding_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | a12fdb36f8d228ec4a919e569b2ea208cda057cc | |
train_13536 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | agent_loop | advanced | Task: agent_loop
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: advanced
Target language: C#
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Loop: Plan → Edit → Test → Reflect → Human gate
| [] | {
"target_language": "C#",
"developer_needs": [
"repo_scale_reasoning",
"auditability",
"tests_are_truth",
"ci_integration"
],
"moe_experts": [
"evaluation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 6d704c5a7ae82d55e9d6f265788580cb9b731ba5 | |
train_13537 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | eval | intermediate | Task: eval
Topic: SWE-bench style real-repo evaluation
Difficulty: intermediate
Target language: JavaScript
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"tooling",
"security_gates",
"reproducibility",
"cost_latency_tradeoffs"
],
"moe_experts": [
"agentic_systems_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | eda1616864fed44c19173451434137b6ebbd27dd | |
train_13538 | 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: Go
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Loop: Plan → Edit → Test → Reflect → Human gate
| [] | {
"target_language": "Go",
"developer_needs": [
"evaluation_metrics",
"tooling",
"documentation",
"auditability"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | b1261f699308f68c4fa384090834b13fbfdc6b1b | |
train_13539 | 2026-01-01T00:00:00 | Self-improving agents and feedback loops | compare | intermediate | Task: compare
Topic: Self-improving agents and feedback loops
Difficulty: intermediate
Target language: TypeScript
Context: 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": [
"cost_latency_tradeoffs",
"governance",
"auditability",
"security_gates"
],
"moe_experts": [
"coding_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d6a7a5b8cc49386a1f03bae208a5f4457c3ac2e9 | |
train_13540 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | code | expert | Task: code
Topic: Tool calling, sandboxes, and CI integration
Difficulty: expert
Target language: SQL
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "SQL",
"developer_needs": [
"tooling",
"evaluation_metrics",
"documentation",
"cost_latency_tradeoffs"
],
"moe_experts": [
"evaluation_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | e7cc7bc2f743582fbd681c570aad3fc13ae0b476 | |
train_13541 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | failure_analysis | intermediate | Task: failure_analysis
Topic: Tool calling, sandboxes, and CI integration
Difficulty: intermediate
Target language: TypeScript
Context: 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": "TypeScript",
"developer_needs": [
"security_gates",
"tooling",
"governance",
"repo_scale_reasoning"
],
"moe_experts": [
"agentic_systems_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 79fa242a3f536f4f3186b4994f438d765eefbc5b | |
train_13542 | 2026-01-01T00:00:00 | Self-improving agents and feedback loops | agent_loop | advanced | Task: agent_loop
Topic: Self-improving agents and feedback loops
Difficulty: advanced
Target language: Go
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Loop: Plan → Edit → Test → Reflect → Human gate
| [] | {
"target_language": "Go",
"developer_needs": [
"evaluation_metrics",
"repo_scale_reasoning",
"documentation",
"reproducibility"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | bb9f6facf4d80237b28caf2cbcf5fc49de080935 | |
train_13543 | 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: Rust
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Compare: capability, cost, latency, reliability
| [] | {
"target_language": "Rust",
"developer_needs": [
"governance",
"tests_are_truth",
"reproducibility",
"cost_latency_tradeoffs"
],
"moe_experts": [
"evaluation_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 49a36cfb74e15fec2d27a167fa579acbac002bc2 | |
train_13544 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | code | intermediate | Task: code
Topic: Governance, provenance, and licensing for code data
Difficulty: intermediate
Target language: Go
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Go",
"developer_needs": [
"security_gates",
"tooling",
"governance",
"ci_integration"
],
"moe_experts": [
"evaluation_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 413d45c93028172886eeee07bd963e560aa000fc | |
train_13545 | 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: 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.
Review: correctness, security, performance, governance
| [] | {
"target_language": "Python",
"developer_needs": [
"evaluation_metrics",
"auditability",
"security_gates",
"reproducibility"
],
"moe_experts": [
"governance_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | c30b11a2584961f0fb8ac9a737c7a604c064ed7c | |
train_13546 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | explain | intermediate | Task: explain
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: intermediate
Target language: JavaScript
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"governance",
"security_gates",
"evaluation_metrics",
"ci_integration"
],
"moe_experts": [
"data_curation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 9084b6c775307071cdb5221110460985bee2343b | |
train_13547 | 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: 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
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Python",
"developer_needs": [
"security_gates",
"reproducibility",
"repo_scale_reasoning",
"documentation"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 63911047309d2f6271e89d437c01fe4d7e2d69cd | |
train_13548 | 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: 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.
Failure:
- Initial patch broke edge case
Reflection:
- Missing zero-input guard
Correction:
- Add explicit validation + test
| [] | {
"target_language": "SQL",
"developer_needs": [
"documentation",
"auditability",
"security_gates",
"tests_are_truth"
],
"moe_experts": [
"evaluation_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 69982933dc221e5574533219d415f8bbbed458d0 | |
train_13549 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | code | intermediate | Task: code
Topic: Model merging, distillation, and continued pretraining
Difficulty: intermediate
Target language: 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": [
"tooling",
"governance",
"auditability",
"reproducibility"
],
"moe_experts": [
"security_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 71c6d7b174ca3b4cca464e51c0171ccef860ae5b | |
train_13550 | 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: JavaScript
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Patch (diff-style):
```diff
- if x == 0:
- return 1/x
+ if x == 0:
+ raise ValueError('division by zero')
```
Acceptance:
- Tests pass
- No new regressions
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"tooling",
"reproducibility",
"cost_latency_tradeoffs",
"repo_scale_reasoning"
],
"moe_experts": [
"data_curation_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | fc0c38d6ec6cfb350cb8ee518dad0be203c9c7ae | |
train_13551 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | data_pipeline | expert | Task: data_pipeline
Topic: Tool calling, sandboxes, and CI integration
Difficulty: expert
Target language: Bash
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Bash",
"developer_needs": [
"tests_are_truth",
"reproducibility",
"cost_latency_tradeoffs",
"auditability"
],
"moe_experts": [
"security_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d01a3b8200df41c4c6b7d1cc0fbb0ad39a11019c | |
train_13552 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | design | expert | Task: design
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: expert
Target language: Go
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Go",
"developer_needs": [
"security_gates",
"evaluation_metrics",
"auditability",
"tests_are_truth"
],
"moe_experts": [
"coding_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 3a7691b7d9ee067e57a9abc78ecc306b236645ba | |
train_13553 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | design | intermediate | Task: design
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: intermediate
Target language: SQL
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "SQL",
"developer_needs": [
"security_gates",
"cost_latency_tradeoffs",
"auditability",
"documentation"
],
"moe_experts": [
"evaluation_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | e96b74aa853a09065cf5d241ef826df17e983096 | |
train_13554 | 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: 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.
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": [
"tooling",
"auditability",
"governance",
"tests_are_truth"
],
"moe_experts": [
"security_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | e2bcf02d2c096b6337567adc48b26059269c4ceb | |
train_13555 | 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: Python
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Patch (diff-style):
```diff
- if x == 0:
- return 1/x
+ if x == 0:
+ raise ValueError('division by zero')
```
Acceptance:
- Tests pass
- No new regressions
| [] | {
"target_language": "Python",
"developer_needs": [
"ci_integration",
"reproducibility",
"auditability",
"governance"
],
"moe_experts": [
"agentic_systems_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | e73f97b10712c051bdb2949a52721e850f1d14e6 | |
train_13556 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | design | expert | Task: design
Topic: Mixture-of-Experts (MoE) for code
Difficulty: expert
Target language: Rust
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
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",
"documentation",
"tooling",
"ci_integration"
],
"moe_experts": [
"performance_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7393d04495d22eaf9e4359066035d3c5a2ca6763 | |
train_13557 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | explain | expert | Task: explain
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: expert
Target language: 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": [
"reproducibility",
"auditability",
"security_gates",
"documentation"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | b97088381768bc275c00cb96a0cd196247a84162 | |
train_13558 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | code | advanced | Task: code
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: advanced
Target language: Python
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Scaffold:
```python
def agent_loop(plan, edit, test, issue, max_iters=4):
history = []
p = plan(issue)
for _ in range(max_iters):
patch = edit(issue, p)
ok, report = test(patch)
history.append({"plan": p, "ok": ok})
if ok:
return patch, history
p = p + " | refine"
return patch, history
```
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Python",
"developer_needs": [
"reproducibility",
"tests_are_truth",
"cost_latency_tradeoffs",
"security_gates"
],
"moe_experts": [
"performance_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | ea48c8aa30214505217c79ce2370f16a2d017ebf | |
train_13559 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | eval | advanced | Task: eval
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.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"cost_latency_tradeoffs",
"auditability",
"documentation",
"repo_scale_reasoning"
],
"moe_experts": [
"data_curation_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 68916c151b27f29a0ff71bdcbf0afa8a62739a4d | |
train_13560 | 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: Python
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Patch (diff-style):
```diff
- if x == 0:
- return 1/x
+ if x == 0:
+ raise ValueError('division by zero')
```
Acceptance:
- Tests pass
- No new regressions
| [] | {
"target_language": "Python",
"developer_needs": [
"documentation",
"tests_are_truth",
"tooling",
"governance"
],
"moe_experts": [
"data_curation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 4697a90e56b448553bb6cfadd5f136370decdae5 | |
train_13561 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | code | advanced | Task: code
Topic: Latency, cost, and reliability optimization
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": [
"security_gates",
"documentation",
"ci_integration",
"tooling"
],
"moe_experts": [
"security_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | c8feeaac072d085827743926e9f89406122237a9 | |
train_13562 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | eval | advanced | Task: eval
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: advanced
Target language: SQL
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "SQL",
"developer_needs": [
"repo_scale_reasoning",
"security_gates",
"auditability",
"evaluation_metrics"
],
"moe_experts": [
"agentic_systems_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | b099243d1bf7df9e95b17776aed572736b66a7a4 | |
train_13563 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | patch_diff | intermediate | Task: patch_diff
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: intermediate
Target language: 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.
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": [
"tooling",
"documentation",
"governance",
"ci_integration"
],
"moe_experts": [
"security_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 94c02e6c7b3d94323e43718bc757d48b343d826e | |
train_13564 | 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: 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.
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": "Rust",
"developer_needs": [
"documentation",
"tooling",
"evaluation_metrics",
"security_gates"
],
"moe_experts": [
"performance_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 51a5c1d02226c4af77402f9018f5d1f23034ff1f | |
train_13565 | 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: C#
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Loop: Plan → Edit → Test → Reflect → Human gate
| [] | {
"target_language": "C#",
"developer_needs": [
"security_gates",
"auditability",
"reproducibility",
"cost_latency_tradeoffs"
],
"moe_experts": [
"coding_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | c3ae75400d50d4860bdf69769bbb28550c4b774d | |
train_13566 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | code | expert | Task: code
Topic: Tool calling, sandboxes, and CI integration
Difficulty: expert
Target language: C#
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "C#",
"developer_needs": [
"security_gates",
"tests_are_truth",
"repo_scale_reasoning",
"tooling"
],
"moe_experts": [
"data_curation_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 1eb59525d087f4a83ef1cd6a1d4d1a49ec0d631b | |
train_13567 | 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: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "C#",
"developer_needs": [
"repo_scale_reasoning",
"tests_are_truth",
"tooling",
"evaluation_metrics"
],
"moe_experts": [
"data_curation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 8d86371123a908b994e09d0ef113daa71c0b6c6a | |
train_13568 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | failure_analysis | intermediate | Task: failure_analysis
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: intermediate
Target language: Go
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Failure:
- Initial patch broke edge case
Reflection:
- Missing zero-input guard
Correction:
- Add explicit validation + test
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Go",
"developer_needs": [
"cost_latency_tradeoffs",
"evaluation_metrics",
"auditability",
"tooling"
],
"moe_experts": [
"data_curation_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | ccdc9fd397e9189af5524c891ad92a12b04e59dc | |
train_13569 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | review | intermediate | Task: review
Topic: Extended context and repo-scale understanding
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.
Review: correctness, security, performance, governance
| [] | {
"target_language": "C#",
"developer_needs": [
"auditability",
"tooling",
"tests_are_truth",
"documentation"
],
"moe_experts": [
"data_curation_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 00d9a596a453ba5d91ff290d419fed684a2cd82e | |
train_13570 | 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: 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.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"documentation",
"governance",
"tooling",
"cost_latency_tradeoffs"
],
"moe_experts": [
"coding_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 99d4c28b90d1cab1b7781f838ea6ce52e59500b4 | |
train_13571 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | design | intermediate | Task: design
Topic: Latency, cost, and reliability optimization
Difficulty: intermediate
Target language: Python
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Python",
"developer_needs": [
"reproducibility",
"evaluation_metrics",
"governance",
"ci_integration"
],
"moe_experts": [
"evaluation_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 87e39b05d6506fd6dbb920befe2bb668caeee720 | |
train_13572 | 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: 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
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"ci_integration",
"tests_are_truth",
"tooling",
"cost_latency_tradeoffs"
],
"moe_experts": [
"security_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 5ce34998ac5e0b0a4e27e285a6f1910315cf072c | |
train_13573 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | agent_loop | expert | Task: agent_loop
Topic: Extended context and repo-scale understanding
Difficulty: expert
Target language: JavaScript
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Loop: Plan → Edit → Test → Reflect → Human gate
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"evaluation_metrics",
"auditability",
"tooling",
"documentation"
],
"moe_experts": [
"governance_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | a0e047b2be18c2a6bd1a16ccc513e9f62e90fe40 | |
train_13574 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | code | advanced | Task: code
Topic: Latency, cost, and reliability optimization
Difficulty: advanced
Target language: JavaScript
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"evaluation_metrics",
"reproducibility",
"tooling",
"documentation"
],
"moe_experts": [
"evaluation_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | af22c2d6e7aa25920a6cc9e913adcf891efecbf2 | |
train_13575 | 2026-01-01T00:00:00 | Secure code generation and policy gates | explain | advanced | Task: explain
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.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Python",
"developer_needs": [
"security_gates",
"tests_are_truth",
"evaluation_metrics",
"governance"
],
"moe_experts": [
"evaluation_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | bc4e238aa4b6b42f69c889265549077132858674 | |
train_13576 | 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: Bash
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Bash",
"developer_needs": [
"security_gates",
"reproducibility",
"repo_scale_reasoning",
"ci_integration"
],
"moe_experts": [
"performance_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7fb5336e85d3089de67fa8314b11d67cfe75c9bd | |
train_13577 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | eval | intermediate | Task: eval
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.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "C#",
"developer_needs": [
"tooling",
"security_gates",
"reproducibility",
"ci_integration"
],
"moe_experts": [
"security_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 5358d2a1f844ffc76d215dfaf0b096c9e20428e8 | |
train_13578 | 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: C#
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "C#",
"developer_needs": [
"tooling",
"tests_are_truth",
"reproducibility",
"documentation"
],
"moe_experts": [
"agentic_systems_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | a03c6a7c16b28ec4c32d01185375a3c589035e89 | |
train_13579 | 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: 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.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "Java",
"developer_needs": [
"auditability",
"evaluation_metrics",
"repo_scale_reasoning",
"ci_integration"
],
"moe_experts": [
"agentic_systems_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f791b86c1f586bca22ed96caca709e1251525aa9 | |
train_13580 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | eval | advanced | Task: eval
Topic: Mixture-of-Experts (MoE) for code
Difficulty: advanced
Target language: 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.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "SQL",
"developer_needs": [
"reproducibility",
"ci_integration",
"governance",
"tooling"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7dfb7a257d9f5f11b51c38ef89c86e4be0ecfbb9 | |
train_13581 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | failure_analysis | expert | Task: failure_analysis
Topic: Tool calling, sandboxes, and CI integration
Difficulty: expert
Target language: 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
| [] | {
"target_language": "Java",
"developer_needs": [
"governance",
"documentation",
"cost_latency_tradeoffs",
"ci_integration"
],
"moe_experts": [
"governance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 6ce99cdfd7fc168f5e8f0119791527ed92f5dc87 | |
train_13582 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | agent_loop | advanced | Task: agent_loop
Topic: Mixture-of-Experts (MoE) for code
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.
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": [
"security_gates",
"repo_scale_reasoning",
"tests_are_truth",
"auditability"
],
"moe_experts": [
"agentic_systems_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 18b8a6cd6e976e370749dab790005ddfdb0fc6fb | |
train_13583 | 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: 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
| [] | {
"target_language": "Go",
"developer_needs": [
"security_gates",
"cost_latency_tradeoffs",
"repo_scale_reasoning",
"documentation"
],
"moe_experts": [
"performance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | ac29755b8471a09c12f017e6e6c3299eb05e1fe1 | |
train_13584 | 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: Rust
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Rust",
"developer_needs": [
"documentation",
"tooling",
"ci_integration",
"reproducibility"
],
"moe_experts": [
"agentic_systems_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 9a17edbe248646cc9d01d62dadab8ee08f275599 | |
train_13585 | 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: Bash
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Compare: capability, cost, latency, reliability
| [] | {
"target_language": "Bash",
"developer_needs": [
"ci_integration",
"evaluation_metrics",
"tests_are_truth",
"documentation"
],
"moe_experts": [
"governance_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 48d4613a9d0045cfe7c22b2f62b9302a0cb51ecb | |
train_13586 | 2026-01-01T00:00:00 | Secure code generation and policy gates | agent_loop | advanced | Task: agent_loop
Topic: Secure code generation and policy gates
Difficulty: advanced
Target language: Go
Context: 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": "Go",
"developer_needs": [
"repo_scale_reasoning",
"evaluation_metrics",
"reproducibility",
"tests_are_truth"
],
"moe_experts": [
"agentic_systems_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | e011aed9cd7b7b9b55ea484032b6114e1b3f196e | |
train_13587 | 2026-01-01T00:00:00 | Secure code generation and policy gates | explain | intermediate | Task: explain
Topic: Secure code generation and policy gates
Difficulty: intermediate
Target language: C#
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "C#",
"developer_needs": [
"auditability",
"evaluation_metrics",
"security_gates",
"tooling"
],
"moe_experts": [
"security_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | b8d0a06454bcb4aae42b9c6fb51af60297377fde | |
train_13588 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | patch_diff | expert | Task: patch_diff
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: expert
Target language: 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
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "TypeScript",
"developer_needs": [
"security_gates",
"auditability",
"reproducibility",
"evaluation_metrics"
],
"moe_experts": [
"governance_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 5a829820ddca493627c339ca6555eada7fc5f65d | |
train_13589 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | review | expert | Task: review
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: expert
Target language: 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.
Review: correctness, security, performance, governance
| [] | {
"target_language": "Bash",
"developer_needs": [
"auditability",
"ci_integration",
"evaluation_metrics",
"documentation"
],
"moe_experts": [
"evaluation_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | a9c14d0e0af4a537321c5807a7c58d676281ad01 | |
train_13590 | 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: 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": [
"evaluation_metrics",
"tests_are_truth",
"cost_latency_tradeoffs",
"reproducibility"
],
"moe_experts": [
"agentic_systems_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 486a402923c39128fb10b0a97ee4877722b5372d | |
train_13591 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | agent_loop | advanced | Task: agent_loop
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: advanced
Target language: 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
| [
"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",
"evaluation_metrics",
"cost_latency_tradeoffs"
],
"moe_experts": [
"evaluation_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 28d170fe0324917376e1b92f7cfd776bf5ae0ce7 | |
train_13592 | 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: TypeScript
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Compare: capability, cost, latency, reliability
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "TypeScript",
"developer_needs": [
"security_gates",
"tooling",
"cost_latency_tradeoffs",
"ci_integration"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 6b4b8dc4e94bcd9b09f60040e20c1ca6b7129644 | |
train_13593 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | patch_diff | expert | Task: patch_diff
Topic: Governance, provenance, and licensing for code data
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.
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": [
"auditability",
"tests_are_truth",
"cost_latency_tradeoffs",
"ci_integration"
],
"moe_experts": [
"governance_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | c17aaed29c0ac18cd5324fe68b859134068a550d | |
train_13594 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | code | intermediate | Task: code
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: intermediate
Target language: 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": [
"cost_latency_tradeoffs",
"auditability",
"documentation",
"security_gates"
],
"moe_experts": [
"governance_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 743e2bf74b7e14981e02382fb135c09c48db1a35 | |
train_13595 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | compare | advanced | Task: compare
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: advanced
Target language: SQL
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Compare: capability, cost, latency, reliability
| [] | {
"target_language": "SQL",
"developer_needs": [
"repo_scale_reasoning",
"security_gates",
"evaluation_metrics",
"auditability"
],
"moe_experts": [
"data_curation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 05f2e5111c20fdfc4d5b9adce9cafa6b1f8987ec | |
train_13596 | 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: 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": [
"cost_latency_tradeoffs",
"security_gates",
"tooling",
"documentation"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 2c97e69915e68ea604aa41bdb856c4b6f1070e78 | |
train_13597 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | eval | intermediate | Task: eval
Topic: Latency, cost, and reliability optimization
Difficulty: intermediate
Target language: Go
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Eval:
pass@k, time-to-green, regressions, diff size
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Go",
"developer_needs": [
"tooling",
"governance",
"tests_are_truth",
"repo_scale_reasoning"
],
"moe_experts": [
"data_curation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 07a69f61710db9e665370538306ea6ae62220b31 | |
train_13598 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | eval | advanced | Task: eval
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: advanced
Target language: 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
| [] | {
"target_language": "Java",
"developer_needs": [
"repo_scale_reasoning",
"documentation",
"cost_latency_tradeoffs",
"security_gates"
],
"moe_experts": [
"performance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | a8a23a4050ee782d8a3539acfcf807d94fb7820e | |
train_13599 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | failure_analysis | advanced | Task: failure_analysis
Topic: Mixture-of-Experts (MoE) for code
Difficulty: advanced
Target language: Rust
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Failure:
- Initial patch broke edge case
Reflection:
- Missing zero-input guard
Correction:
- Add explicit validation + test
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Rust",
"developer_needs": [
"tooling",
"ci_integration",
"governance",
"cost_latency_tradeoffs"
],
"moe_experts": [
"evaluation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 6349912d21dfa53730539bea19f1d72718ce0fd9 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.