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_38700 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | review | expert | Task: review
Topic: Extended context and repo-scale understanding
Difficulty: expert
Target language: Go
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Review: correctness, security, performance, governance
| [] | {
"target_language": "Go",
"developer_needs": [
"evaluation_metrics",
"repo_scale_reasoning",
"governance",
"documentation"
],
"moe_experts": [
"evaluation_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 9a812ff62f9733036f8e9062480e6e3fb55d3672 | |
train_38701 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | failure_analysis | advanced | Task: failure_analysis
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: advanced
Target language: TypeScript
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
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": [
"tests_are_truth",
"evaluation_metrics",
"tooling",
"documentation"
],
"moe_experts": [
"agentic_systems_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 2464f7265b27cd7d9174575eb44d07525ebd5e2f | |
train_38702 | 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: Rust
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Rust",
"developer_needs": [
"governance",
"reproducibility",
"cost_latency_tradeoffs",
"auditability"
],
"moe_experts": [
"coding_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 47f97d79a6eec426ec99258892dba3f094733a4b | |
train_38703 | 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: 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
```
| [] | {
"target_language": "Python",
"developer_needs": [
"auditability",
"repo_scale_reasoning",
"tooling",
"ci_integration"
],
"moe_experts": [
"agentic_systems_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | a997f5cf481d7854f8369e7669bda42f57edc0c3 | |
train_38704 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | compare | intermediate | Task: compare
Topic: Latency, cost, and reliability optimization
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.
Compare: capability, cost, latency, reliability
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Rust",
"developer_needs": [
"auditability",
"governance",
"documentation",
"ci_integration"
],
"moe_experts": [
"agentic_systems_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d9f000d4a9aba4eda962aa454798b660fce1a8ec | |
train_38705 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | failure_analysis | intermediate | Task: failure_analysis
Topic: Mixture-of-Experts (MoE) for code
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.
Failure:
- Initial patch broke edge case
Reflection:
- Missing zero-input guard
Correction:
- Add explicit validation + test
| [] | {
"target_language": "Python",
"developer_needs": [
"security_gates",
"reproducibility",
"tests_are_truth",
"cost_latency_tradeoffs"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | ed096344c88ca9c5ab00dddf648338303c8c55e2 | |
train_38706 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | code | advanced | Task: code
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: advanced
Target language: Java
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Java",
"developer_needs": [
"evaluation_metrics",
"documentation",
"security_gates",
"governance"
],
"moe_experts": [
"evaluation_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f6cf70e7fcc72db905824e58a4b23edf1d19cd0f | |
train_38707 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | eval | advanced | Task: eval
Topic: Extended context and repo-scale understanding
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.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "Bash",
"developer_needs": [
"security_gates",
"ci_integration",
"governance",
"documentation"
],
"moe_experts": [
"evaluation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 782626e30157b4c396909e69ac833e1d255460b0 | |
train_38708 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | eval | expert | Task: eval
Topic: Extended context and repo-scale understanding
Difficulty: expert
Target language: JavaScript
Context: 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": [
"security_gates",
"governance",
"documentation",
"repo_scale_reasoning"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 77f77286eda2f94493a718cb35026d37e239ad70 | |
train_38709 | 2026-01-01T00:00:00 | Secure code generation and policy gates | failure_analysis | intermediate | Task: failure_analysis
Topic: Secure code generation and policy gates
Difficulty: intermediate
Target language: 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": [
"tests_are_truth",
"tooling",
"repo_scale_reasoning",
"ci_integration"
],
"moe_experts": [
"security_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 2dde083a93a0bc415bfbde90b225214adf0086a9 | |
train_38710 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | agent_loop | advanced | Task: agent_loop
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: advanced
Target language: Python
Context: 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": [
"tooling",
"evaluation_metrics",
"security_gates",
"documentation"
],
"moe_experts": [
"performance_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 6410f3fc10c933a8bc309bf27023368ad7456dd6 | |
train_38711 | 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: Rust
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "Rust",
"developer_needs": [
"evaluation_metrics",
"security_gates",
"tests_are_truth",
"repo_scale_reasoning"
],
"moe_experts": [
"coding_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | b4573c74b4f20d3412cec46881e4ea70fc776788 | |
train_38712 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | agent_loop | intermediate | Task: agent_loop
Topic: Extended context and repo-scale understanding
Difficulty: intermediate
Target language: 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": [
"reproducibility",
"cost_latency_tradeoffs",
"repo_scale_reasoning",
"tests_are_truth"
],
"moe_experts": [
"evaluation_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 3109308e13db6e90225fd991ecf7da9e897d9ce8 | |
train_38713 | 2026-01-01T00:00:00 | Self-improving agents and feedback loops | explain | intermediate | Task: explain
Topic: Self-improving agents and feedback loops
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
| [
"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",
"governance",
"security_gates",
"tests_are_truth"
],
"moe_experts": [
"coding_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 5bbeead378deeb68bc7282336fff0d0b011907fe | |
train_38714 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | explain | intermediate | Task: explain
Topic: Code-specialized model families and sizing tradeoffs
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": [
"auditability",
"tests_are_truth",
"ci_integration",
"governance"
],
"moe_experts": [
"agentic_systems_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 09f35a6115a96f8824c8998528e9b4a6402c2611 | |
train_38715 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | data_pipeline | intermediate | Task: data_pipeline
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: intermediate
Target language: Bash
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [] | {
"target_language": "Bash",
"developer_needs": [
"tooling",
"documentation",
"tests_are_truth",
"cost_latency_tradeoffs"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | ef4f0391a042e7f89bc0d669d9d3cf8907fb8b0d | |
train_38716 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | eval | advanced | Task: eval
Topic: Model merging, distillation, and continued pretraining
Difficulty: advanced
Target language: 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.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "Java",
"developer_needs": [
"ci_integration",
"tests_are_truth",
"tooling",
"security_gates"
],
"moe_experts": [
"coding_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 351a13c25c0302925324edd9a728503452d12844 | |
train_38717 | 2026-01-01T00:00:00 | Self-improving agents and feedback loops | compare | advanced | Task: compare
Topic: Self-improving agents and feedback loops
Difficulty: advanced
Target language: Java
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Compare: capability, cost, latency, reliability
| [
"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",
"repo_scale_reasoning",
"reproducibility",
"evaluation_metrics"
],
"moe_experts": [
"evaluation_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 2444eb9074042830f72c8e15bafc69abedb68106 | |
train_38718 | 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: 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": [
"cost_latency_tradeoffs",
"auditability",
"reproducibility",
"security_gates"
],
"moe_experts": [
"agentic_systems_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 0c689137c0dcd8b5540af1550fa00a46b5f4adf2 | |
train_38719 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | code | advanced | Task: code
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: advanced
Target language: Rust
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Rust",
"developer_needs": [
"auditability",
"tooling",
"governance",
"tests_are_truth"
],
"moe_experts": [
"performance_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f2dc857ce28ab38dfa9b8c11201b7b4978f2d939 | |
train_38720 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | design | advanced | Task: design
Topic: Governance, provenance, and licensing for code data
Difficulty: advanced
Target language: Bash
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Bash",
"developer_needs": [
"evaluation_metrics",
"security_gates",
"reproducibility",
"governance"
],
"moe_experts": [
"coding_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f09fef62fe730c58e6a575379c019cb67cd2baa1 | |
train_38721 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | compare | intermediate | Task: compare
Topic: SWE-bench style real-repo evaluation
Difficulty: intermediate
Target language: Python
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Compare: capability, cost, latency, reliability
| [] | {
"target_language": "Python",
"developer_needs": [
"documentation",
"tests_are_truth",
"ci_integration",
"repo_scale_reasoning"
],
"moe_experts": [
"coding_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 0b51f4065cdb35c9aaa5ba208f4e2ac9378d601c | |
train_38722 | 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: 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": [
"cost_latency_tradeoffs",
"reproducibility",
"tooling",
"evaluation_metrics"
],
"moe_experts": [
"agentic_systems_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 773d996c0a63b2302f4d475cb296d81d8b4d4a79 | |
train_38723 | 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: 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": [
"documentation",
"repo_scale_reasoning",
"evaluation_metrics",
"tooling"
],
"moe_experts": [
"performance_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 1f97ee4603e08a1d60ce9f13c74e95f8a7412585 | |
train_38724 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | data_pipeline | intermediate | Task: data_pipeline
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: intermediate
Target language: SQL
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [] | {
"target_language": "SQL",
"developer_needs": [
"tests_are_truth",
"reproducibility",
"evaluation_metrics",
"tooling"
],
"moe_experts": [
"performance_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 5671f80633f13db5401223bd74652b73bbedcf61 | |
train_38725 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | design | advanced | Task: design
Topic: Governance, provenance, and licensing for code data
Difficulty: advanced
Target language: Python
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Python",
"developer_needs": [
"documentation",
"reproducibility",
"ci_integration",
"repo_scale_reasoning"
],
"moe_experts": [
"security_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7d49762cbad1c4fc358cebb75ef9b0bb6b96f424 | |
train_38726 | 2026-01-01T00:00:00 | Secure code generation and policy gates | code | advanced | Task: code
Topic: Secure code generation and policy gates
Difficulty: advanced
Target language: Java
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Java",
"developer_needs": [
"governance",
"cost_latency_tradeoffs",
"tests_are_truth",
"repo_scale_reasoning"
],
"moe_experts": [
"evaluation_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7064aca58b07b4622c0dc22669bc044d6b95ac0c | |
train_38727 | 2026-01-01T00:00:00 | Secure code generation and policy gates | patch_diff | expert | Task: patch_diff
Topic: Secure code generation and policy gates
Difficulty: expert
Target language: TypeScript
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Patch (diff-style):
```diff
- if x == 0:
- return 1/x
+ if x == 0:
+ raise ValueError('division by zero')
```
Acceptance:
- Tests pass
- No new regressions
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"auditability",
"evaluation_metrics",
"reproducibility",
"governance"
],
"moe_experts": [
"coding_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d57bbb9d739df45d90915c9be145975f2767c3c7 | |
train_38728 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | patch_diff | advanced | Task: patch_diff
Topic: Governance, provenance, and licensing for code data
Difficulty: advanced
Target language: C#
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
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": [
"cost_latency_tradeoffs",
"reproducibility",
"tooling",
"governance"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | e359925ccd56861a3987a222e6b4bec1e4dc37d4 | |
train_38729 | 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: 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.
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": [
"auditability",
"repo_scale_reasoning",
"reproducibility",
"tests_are_truth"
],
"moe_experts": [
"security_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 25f88e1a689371d20e1af11e44e7e697a7594838 | |
train_38730 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | code | advanced | Task: code
Topic: Extended context and repo-scale understanding
Difficulty: advanced
Target language: 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": [
"evaluation_metrics",
"governance",
"documentation",
"repo_scale_reasoning"
],
"moe_experts": [
"security_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | da7465a2e783fd2a86cda948bdfb96b0ce47ff60 | |
train_38731 | 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: SQL
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Review: correctness, security, performance, governance
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "SQL",
"developer_needs": [
"reproducibility",
"repo_scale_reasoning",
"security_gates",
"tooling"
],
"moe_experts": [
"coding_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 5b96edd1ea16839c72628eacbe5024aaa04c076a | |
train_38732 | 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: Bash
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Bash",
"developer_needs": [
"ci_integration",
"cost_latency_tradeoffs",
"auditability",
"evaluation_metrics"
],
"moe_experts": [
"data_curation_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 3770e38e6f7bcfa8c1d3a25722fdc4e02c2f78c2 | |
train_38733 | 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
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "JavaScript",
"developer_needs": [
"documentation",
"auditability",
"security_gates",
"repo_scale_reasoning"
],
"moe_experts": [
"security_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 94c02e6c7b3d94323e43718bc757d48b343d826e | |
train_38734 | 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: 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": [
"security_gates",
"reproducibility",
"repo_scale_reasoning",
"cost_latency_tradeoffs"
],
"moe_experts": [
"performance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | a59f1862eb73d24a4cd42816884a590890866802 | |
train_38735 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | data_pipeline | advanced | Task: data_pipeline
Topic: Mixture-of-Experts (MoE) for code
Difficulty: advanced
Target language: Rust
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [] | {
"target_language": "Rust",
"developer_needs": [
"cost_latency_tradeoffs",
"governance",
"evaluation_metrics",
"tooling"
],
"moe_experts": [
"data_curation_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 2bd5b0fc35ba52dda599429d6f095008667ebe5a | |
train_38736 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | explain | expert | Task: explain
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: expert
Target language: Python
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Python",
"developer_needs": [
"evaluation_metrics",
"tooling",
"repo_scale_reasoning",
"ci_integration"
],
"moe_experts": [
"data_curation_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 4c01d767bf25bca92e2e0a00639fcee27df00bf5 | |
train_38737 | 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: 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": [
"security_gates",
"documentation",
"evaluation_metrics",
"governance"
],
"moe_experts": [
"data_curation_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | aedcc472a66373e528806de6810cce5b74d77965 | |
train_38738 | 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: 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.
Failure:
- Initial patch broke edge case
Reflection:
- Missing zero-input guard
Correction:
- Add explicit validation + test
| [] | {
"target_language": "Go",
"developer_needs": [
"security_gates",
"documentation",
"evaluation_metrics",
"reproducibility"
],
"moe_experts": [
"data_curation_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 83614d15d73d2b0d8765aa302f64cc48b3665420 | |
train_38739 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | patch_diff | advanced | Task: patch_diff
Topic: Governance, provenance, and licensing for code data
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
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Python",
"developer_needs": [
"tooling",
"repo_scale_reasoning",
"governance",
"security_gates"
],
"moe_experts": [
"evaluation_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | ff578cc433b1d65ac86d1c703a0e925f7f3bce37 | |
train_38740 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | code | expert | Task: code
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: expert
Target language: Python
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
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",
"tooling",
"ci_integration",
"governance"
],
"moe_experts": [
"evaluation_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 731de9d90ac2b151f2081e0085fce100b218874a | |
train_38741 | 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: 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",
"tests_are_truth",
"ci_integration"
],
"moe_experts": [
"agentic_systems_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d242e33f2b6e8424f1b39e232ccd5d2cfb155194 | |
train_38742 | 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: 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.
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": [
"tests_are_truth",
"governance",
"security_gates",
"repo_scale_reasoning"
],
"moe_experts": [
"coding_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f7c920d4b9076f3cdc69283a456cde4b4daf51eb | |
train_38743 | 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: Python
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Python",
"developer_needs": [
"auditability",
"tooling",
"cost_latency_tradeoffs",
"ci_integration"
],
"moe_experts": [
"governance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | e8063bfb35a69caa5a6307d2d59442c0cc69eb45 | |
train_38744 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | review | intermediate | Task: review
Topic: Tool calling, sandboxes, and CI integration
Difficulty: intermediate
Target language: JavaScript
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Review: correctness, security, performance, governance
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "JavaScript",
"developer_needs": [
"ci_integration",
"auditability",
"tooling",
"security_gates"
],
"moe_experts": [
"security_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | d35c085e93f49917ab196296906ee21dc5b6ffe3 | |
train_38745 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | design | advanced | Task: design
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: advanced
Target language: C#
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "C#",
"developer_needs": [
"cost_latency_tradeoffs",
"governance",
"repo_scale_reasoning",
"security_gates"
],
"moe_experts": [
"security_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7f0c628a7240fb99ae81c8740fe4eb1910e93c14 | |
train_38746 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | data_pipeline | advanced | Task: data_pipeline
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: advanced
Target language: Go
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Go",
"developer_needs": [
"security_gates",
"ci_integration",
"repo_scale_reasoning",
"governance"
],
"moe_experts": [
"security_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 4c178888eecf7dfe4c314afca4ef8f79d3fc533a | |
train_38747 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | data_pipeline | intermediate | Task: data_pipeline
Topic: Latency, cost, and reliability optimization
Difficulty: intermediate
Target language: Bash
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [] | {
"target_language": "Bash",
"developer_needs": [
"documentation",
"evaluation_metrics",
"tests_are_truth",
"ci_integration"
],
"moe_experts": [
"agentic_systems_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 59729846e289edce4a6d112362a811e3c2f1ab5c | |
train_38748 | 2026-01-01T00:00:00 | Secure code generation and policy gates | compare | expert | Task: compare
Topic: Secure code generation and policy gates
Difficulty: expert
Target language: 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.
Compare: capability, cost, latency, reliability
| [] | {
"target_language": "Bash",
"developer_needs": [
"tooling",
"auditability",
"evaluation_metrics",
"reproducibility"
],
"moe_experts": [
"security_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 904e5f2257a984e83c8dab0260a5cd5b99a54f0f | |
train_38749 | 2026-01-01T00:00:00 | Self-improving agents and feedback loops | explain | expert | Task: explain
Topic: Self-improving agents and feedback loops
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
| [] | {
"target_language": "Bash",
"developer_needs": [
"auditability",
"tooling",
"cost_latency_tradeoffs",
"governance"
],
"moe_experts": [
"agentic_systems_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 2169545f652da9c91dae2cfe11d50ee0fba66ac0 | |
train_38750 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | patch_diff | expert | Task: patch_diff
Topic: Model merging, distillation, and continued pretraining
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
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Java",
"developer_needs": [
"documentation",
"auditability",
"evaluation_metrics",
"cost_latency_tradeoffs"
],
"moe_experts": [
"data_curation_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 53cf915243403fbc280bdf5e0e8ee9158ece6f6d | |
train_38751 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | agent_loop | advanced | Task: agent_loop
Topic: Extended context and repo-scale understanding
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.
Loop: Plan → Edit → Test → Reflect → Human gate
| [] | {
"target_language": "Bash",
"developer_needs": [
"security_gates",
"governance",
"tests_are_truth",
"evaluation_metrics"
],
"moe_experts": [
"agentic_systems_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | f4c7b98f98ff2e700e9d920a3f6d344ea4fa0df9 | |
train_38752 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | code | advanced | Task: code
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: advanced
Target language: Python
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Scaffold:
```python
def agent_loop(plan, edit, test, issue, max_iters=4):
history = []
p = plan(issue)
for _ in range(max_iters):
patch = edit(issue, p)
ok, report = test(patch)
history.append({"plan": p, "ok": ok})
if ok:
return patch, history
p = p + " | refine"
return patch, history
```
| [] | {
"target_language": "Python",
"developer_needs": [
"reproducibility",
"auditability",
"evaluation_metrics",
"governance"
],
"moe_experts": [
"governance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 493d0d5dafb54380d9d408b2f1b731dff727e4fd | |
train_38753 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | review | expert | Task: review
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: expert
Target language: 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.
Review: correctness, security, performance, governance
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "SQL",
"developer_needs": [
"reproducibility",
"tooling",
"repo_scale_reasoning",
"evaluation_metrics"
],
"moe_experts": [
"security_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 8bdd6a277ce236a8659e585f0364815b194e4d71 | |
train_38754 | 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: Rust
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Rust",
"developer_needs": [
"ci_integration",
"tooling",
"security_gates",
"cost_latency_tradeoffs"
],
"moe_experts": [
"security_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 2db75a1568a040d723a33a9654d1fa3cc989f669 | |
train_38755 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | review | advanced | Task: review
Topic: Extended context and repo-scale understanding
Difficulty: advanced
Target language: 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
| [] | {
"target_language": "Go",
"developer_needs": [
"reproducibility",
"cost_latency_tradeoffs",
"repo_scale_reasoning",
"ci_integration"
],
"moe_experts": [
"coding_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 88c77271b0341c6d190f8f20015c7241c430654b | |
train_38756 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | design | expert | Task: design
Topic: SWE-bench style real-repo evaluation
Difficulty: expert
Target language: 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": [
"auditability",
"repo_scale_reasoning",
"security_gates",
"ci_integration"
],
"moe_experts": [
"performance_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | cde2d02bc5ebb09fd8c8206bef1287619b2060a1 | |
train_38757 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | review | expert | Task: review
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: expert
Target language: 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.
Review: correctness, security, performance, governance
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"reproducibility",
"auditability",
"documentation",
"tooling"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 2671f58033cae575d4cbeee8a887e07f33cd1d5d | |
train_38758 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | design | expert | Task: design
Topic: Governance, provenance, and licensing for code data
Difficulty: expert
Target language: SQL
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "SQL",
"developer_needs": [
"auditability",
"repo_scale_reasoning",
"cost_latency_tradeoffs",
"ci_integration"
],
"moe_experts": [
"agentic_systems_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | c11444599bb8a86cc409a791fe8aba950a94adf8 | |
train_38759 | 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: 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.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"repo_scale_reasoning",
"governance",
"security_gates",
"evaluation_metrics"
],
"moe_experts": [
"agentic_systems_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 28f31112d3bdb6fb2793a28fb3bb959764dda722 | |
train_38760 | 2026-01-01T00:00:00 | Secure code generation and policy gates | patch_diff | expert | Task: patch_diff
Topic: Secure code generation and policy gates
Difficulty: expert
Target language: Java
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
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": "Java",
"developer_needs": [
"governance",
"documentation",
"security_gates",
"cost_latency_tradeoffs"
],
"moe_experts": [
"security_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 99a3dbd1dfc1bea93b0fa6c69f386762373f033f | |
train_38761 | 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: Rust
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Review: correctness, security, performance, governance
| [] | {
"target_language": "Rust",
"developer_needs": [
"governance",
"evaluation_metrics",
"ci_integration",
"tooling"
],
"moe_experts": [
"data_curation_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 8a25e5a4008f8d7c49ed0ba725b83a71fe9cc262 | |
train_38762 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | patch_diff | intermediate | Task: patch_diff
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: intermediate
Target language: Bash
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Patch (diff-style):
```diff
- if x == 0:
- return 1/x
+ if x == 0:
+ raise ValueError('division by zero')
```
Acceptance:
- Tests pass
- No new regressions
| [] | {
"target_language": "Bash",
"developer_needs": [
"cost_latency_tradeoffs",
"governance",
"tooling",
"reproducibility"
],
"moe_experts": [
"coding_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | aeca10a424aad927741c2c844f0585608fd5a3c6 | |
train_38763 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | design | advanced | Task: design
Topic: Mixture-of-Experts (MoE) for code
Difficulty: advanced
Target language: 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": [
"cost_latency_tradeoffs",
"governance",
"tooling",
"auditability"
],
"moe_experts": [
"performance_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 08e4a29b4e291547b2e09a077b33055084e3e1b4 | |
train_38764 | 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: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Review: correctness, security, performance, governance
| [] | {
"target_language": "Rust",
"developer_needs": [
"documentation",
"cost_latency_tradeoffs",
"reproducibility",
"repo_scale_reasoning"
],
"moe_experts": [
"governance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 3afe644118f210a0994a768c2935bc0756266111 | |
train_38765 | 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: 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.
Failure:
- Initial patch broke edge case
Reflection:
- Missing zero-input guard
Correction:
- Add explicit validation + test
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"auditability",
"cost_latency_tradeoffs",
"evaluation_metrics",
"security_gates"
],
"moe_experts": [
"evaluation_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | db1dd8d5bcf6de357db15be76be225544e388f58 | |
train_38766 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | compare | advanced | Task: compare
Topic: Mixture-of-Experts (MoE) for code
Difficulty: advanced
Target language: Go
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Compare: capability, cost, latency, reliability
| [] | {
"target_language": "Go",
"developer_needs": [
"tests_are_truth",
"evaluation_metrics",
"governance",
"ci_integration"
],
"moe_experts": [
"coding_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7893549bd34fba90e7b69930aa625538258747e6 | |
train_38767 | 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: 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": [
"tests_are_truth",
"repo_scale_reasoning",
"ci_integration",
"security_gates"
],
"moe_experts": [
"coding_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 882ae4b3377b757213526467641bc4f8a6c3c2e3 | |
train_38768 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | data_pipeline | expert | Task: data_pipeline
Topic: Model merging, distillation, and continued pretraining
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.
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": "SQL",
"developer_needs": [
"repo_scale_reasoning",
"evaluation_metrics",
"tests_are_truth",
"governance"
],
"moe_experts": [
"coding_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7250e95920e6b73d3b5736603c4535c054d5ee52 | |
train_38769 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | explain | intermediate | Task: explain
Topic: SWE-bench style real-repo evaluation
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": [
"reproducibility",
"auditability",
"tests_are_truth",
"security_gates"
],
"moe_experts": [
"security_expert",
"coding_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 4ce8640026028573b02add4fd0c59a70877c356e | |
train_38770 | 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: 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
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "C#",
"developer_needs": [
"auditability",
"documentation",
"tests_are_truth",
"reproducibility"
],
"moe_experts": [
"security_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 9fd07f352c23f721eda62902759edc18dcce2965 | |
train_38771 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | patch_diff | expert | Task: patch_diff
Topic: Multimodal dev workflows (docs, diagrams, traces)
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.
Patch (diff-style):
```diff
- if x == 0:
- return 1/x
+ if x == 0:
+ raise ValueError('division by zero')
```
Acceptance:
- Tests pass
- No new regressions
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"evaluation_metrics",
"cost_latency_tradeoffs",
"repo_scale_reasoning",
"reproducibility"
],
"moe_experts": [
"security_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | a163d7556d6475c45e5ebcb5eca72df834c0238e | |
train_38772 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | eval | advanced | Task: eval
Topic: Latency, cost, and reliability optimization
Difficulty: advanced
Target language: JavaScript
Context: Regulated environment requiring audit trails.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"cost_latency_tradeoffs",
"evaluation_metrics",
"governance",
"documentation"
],
"moe_experts": [
"evaluation_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 1581db51da4b25e49f8363167cd9ae41ec57fb71 | |
train_38773 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | data_pipeline | advanced | Task: data_pipeline
Topic: Extended context and repo-scale understanding
Difficulty: advanced
Target language: Rust
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [] | {
"target_language": "Rust",
"developer_needs": [
"tests_are_truth",
"evaluation_metrics",
"governance",
"tooling"
],
"moe_experts": [
"evaluation_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 619f21c0be1270e959f25314587a27d455a9aa52 | |
train_38774 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | explain | advanced | Task: explain
Topic: Governance, provenance, and licensing for code data
Difficulty: advanced
Target language: Bash
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Bash",
"developer_needs": [
"documentation",
"reproducibility",
"security_gates",
"ci_integration"
],
"moe_experts": [
"agentic_systems_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 041d9f4ec29572e4e26c59ee12cc35d3cd022afd | |
train_38775 | 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: 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.
Failure:
- Initial patch broke edge case
Reflection:
- Missing zero-input guard
Correction:
- Add explicit validation + test
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"repo_scale_reasoning",
"auditability",
"evaluation_metrics",
"tests_are_truth"
],
"moe_experts": [
"evaluation_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | ca02dda599706606b042a79824fd1ca84ba97b11 | |
train_38776 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | review | intermediate | Task: review
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.
Review: correctness, security, performance, governance
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "SQL",
"developer_needs": [
"governance",
"repo_scale_reasoning",
"ci_integration",
"security_gates"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 70917a23d42b94b147137f94e40965fbf2ff3b17 | |
train_38777 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | agent_loop | intermediate | Task: agent_loop
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: intermediate
Target language: C#
Context: High-traffic service with latency SLOs.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Loop: Plan → Edit → Test → Reflect → Human gate
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "C#",
"developer_needs": [
"reproducibility",
"governance",
"documentation",
"evaluation_metrics"
],
"moe_experts": [
"coding_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 849eebdba776f842ffae95c0acf8d7707e3ee0df | |
train_38778 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | eval | intermediate | Task: eval
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: intermediate
Target language: TypeScript
Context: Offline/local deployment with limited compute.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Eval:
pass@k, time-to-green, regressions, diff size
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "TypeScript",
"developer_needs": [
"auditability",
"cost_latency_tradeoffs",
"tooling",
"tests_are_truth"
],
"moe_experts": [
"coding_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7233a5c04fd8906bbaa8e847e27ef0f206c3147d | |
train_38779 | 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: 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.
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": [
"tooling",
"documentation",
"tests_are_truth",
"cost_latency_tradeoffs"
],
"moe_experts": [
"coding_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7e2341e2df02f7143282db0562a37bdd2f2f5bde | |
train_38780 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | agent_loop | advanced | Task: agent_loop
Topic: Model merging, distillation, and continued pretraining
Difficulty: advanced
Target language: 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": [
"tooling",
"security_gates",
"reproducibility",
"repo_scale_reasoning"
],
"moe_experts": [
"coding_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | ee24ba7d50dd584b68027a783a8962921140ca72 | |
train_38781 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | review | advanced | Task: review
Topic: Model merging, distillation, and continued pretraining
Difficulty: advanced
Target language: 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.
Review: correctness, security, performance, governance
| [] | {
"target_language": "JavaScript",
"developer_needs": [
"governance",
"cost_latency_tradeoffs",
"repo_scale_reasoning",
"evaluation_metrics"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 89e8502545893d51a7c036767d9b434440d2b022 | |
train_38782 | 2026-01-01T00:00:00 | Latency, cost, and reliability optimization | code | intermediate | Task: code
Topic: Latency, cost, and reliability optimization
Difficulty: intermediate
Target language: Bash
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Bash",
"developer_needs": [
"governance",
"reproducibility",
"evaluation_metrics",
"tests_are_truth"
],
"moe_experts": [
"agentic_systems_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | a895e8916c1e99264903f5c72aafb94c2bb3aab2 | |
train_38783 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | explain | advanced | Task: explain
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: advanced
Target language: 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",
"ci_integration",
"governance",
"documentation"
],
"moe_experts": [
"performance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | effda1f0c3dd0225e7aabeed8e6a5b2dbd68da5b | |
train_38784 | 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: TypeScript
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "TypeScript",
"developer_needs": [
"tests_are_truth",
"governance",
"auditability",
"tooling"
],
"moe_experts": [
"coding_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 40174e19687055e4c49c9afbdc75b726d1c69e71 | |
train_38785 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | explain | advanced | Task: explain
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": [
"tooling",
"governance",
"documentation",
"repo_scale_reasoning"
],
"moe_experts": [
"security_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 63e67a63ff86969d0cfb1e9d311f2e6f6c42bec7 | |
train_38786 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | explain | advanced | Task: explain
Topic: Multimodal dev workflows (docs, diagrams, traces)
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
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"documentation",
"tooling",
"reproducibility",
"auditability"
],
"moe_experts": [
"data_curation_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7f5e3a348c6a01f38956fa8a1fe016f7aa950e9d | |
train_38787 | 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: 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
| [
"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",
"governance",
"ci_integration",
"tooling"
],
"moe_experts": [
"performance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | bda09aa67c0e569d997f5fcf227fd06f84d5b782 | |
train_38788 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | eval | advanced | Task: eval
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: advanced
Target language: 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.
Eval:
pass@k, time-to-green, regressions, diff size
| [] | {
"target_language": "SQL",
"developer_needs": [
"tests_are_truth",
"ci_integration",
"governance",
"auditability"
],
"moe_experts": [
"coding_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 631ff12d132748acff54f08e1a1baff70b3f001d | |
train_38789 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | code | advanced | Task: code
Topic: Mixture-of-Experts (MoE) for code
Difficulty: advanced
Target language: Bash
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Design with risks, metrics, acceptance criteria
| [] | {
"target_language": "Bash",
"developer_needs": [
"tests_are_truth",
"cost_latency_tradeoffs",
"documentation",
"governance"
],
"moe_experts": [
"agentic_systems_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 7a09d3631c198f634697916c0eb43bbcf5038c5f | |
train_38790 | 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: Go
Context: Research team validating claims against real repos.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Compare: capability, cost, latency, reliability
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "Go",
"developer_needs": [
"governance",
"reproducibility",
"security_gates",
"tests_are_truth"
],
"moe_experts": [
"coding_expert",
"security_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 209a44ce144613b436cb53cc7ccaa73ce072c8ec | |
train_38791 | 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: TypeScript
Context: Large monorepo with flaky tests and strict CI.
Produce expert-level, production-ready artifacts. | Facts:
- Modern AI coding prioritizes correctness, evaluation, and governance.
- Agentic loops with test gates outperform single-pass generation.
Review: correctness, security, performance, governance
| [] | {
"target_language": "TypeScript",
"developer_needs": [
"documentation",
"tests_are_truth",
"cost_latency_tradeoffs",
"reproducibility"
],
"moe_experts": [
"data_curation_expert",
"evaluation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | b4981d25813f9437fc1dd88c049a5f1ca4aaec9a | |
train_38792 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | design | advanced | Task: design
Topic: Extended context and repo-scale understanding
Difficulty: advanced
Target language: 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": [
"ci_integration",
"evaluation_metrics",
"governance",
"cost_latency_tradeoffs"
],
"moe_experts": [
"performance_expert",
"data_curation_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 8b6916462c84f7aa582c8669eb4782350f8b0443 | |
train_38793 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | explain | intermediate | Task: explain
Topic: Extended context and repo-scale understanding
Difficulty: intermediate
Target language: 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": [
"governance",
"documentation",
"cost_latency_tradeoffs",
"evaluation_metrics"
],
"moe_experts": [
"performance_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | c3f6252f5e8d99d10a7d7813c581f6f20e8cb168 | |
train_38794 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | failure_analysis | intermediate | Task: failure_analysis
Topic: Mixture-of-Experts (MoE) for code
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.
Failure:
- Initial patch broke edge case
Reflection:
- Missing zero-input guard
Correction:
- Add explicit validation + test
| [] | {
"target_language": "Rust",
"developer_needs": [
"auditability",
"security_gates",
"tests_are_truth",
"evaluation_metrics"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | cb40a2f663d6b3af816f307e4b299066881d8097 | |
train_38795 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | review | expert | Task: review
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: expert
Target language: 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.
Review: correctness, security, performance, governance
| [] | {
"target_language": "SQL",
"developer_needs": [
"documentation",
"tooling",
"cost_latency_tradeoffs",
"tests_are_truth"
],
"moe_experts": [
"evaluation_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | c9b7361fcc9cb465a2eedaa66ab49a47836248c5 | |
train_38796 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | data_pipeline | intermediate | Task: data_pipeline
Topic: Reasoning-first coding models and tunable deliberation
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.
Pipeline:
Ingest → Normalize → Filter → Dedupe → Quality → Mix → Audit
| [
"Identify failing behavior via tests",
"Minimize change surface",
"Apply patch",
"Run targeted + full suite",
"Verify no regressions"
] | {
"target_language": "TypeScript",
"developer_needs": [
"security_gates",
"ci_integration",
"tooling",
"auditability"
],
"moe_experts": [
"data_curation_expert",
"governance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 94d82f3228f02146a38a974767b2bc57108361ab | |
train_38797 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | agent_loop | intermediate | Task: agent_loop
Topic: Dataset curation pipelines (filter, dedupe, quality)
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.
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",
"governance",
"security_gates",
"repo_scale_reasoning"
],
"moe_experts": [
"governance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | dd933c65ebd32fe3e05f660c4a8e8bf87ca3ae73 | |
train_38798 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | compare | intermediate | Task: compare
Topic: Reasoning-first coding models and tunable deliberation
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.
Compare: capability, cost, latency, reliability
| [] | {
"target_language": "Go",
"developer_needs": [
"security_gates",
"documentation",
"governance",
"tests_are_truth"
],
"moe_experts": [
"performance_expert",
"agentic_systems_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | 86e2f41949e80a233734b4119bbcafd0e5a72317 | |
train_38799 | 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": [
"ci_integration",
"cost_latency_tradeoffs",
"security_gates",
"auditability"
],
"moe_experts": [
"evaluation_expert",
"performance_expert"
],
"governance": {
"audit_required": true,
"tests_required": true
}
} | bc4e238aa4b6b42f69c889265549077132858674 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.