id stringlengths 11 11 | created timestamp[s]date 2026-01-01 00:00:00 2026-01-01 00:00:00 | topic stringclasses 12 values | task_type stringclasses 8 values | difficulty stringclasses 4 values | instruction stringlengths 201 264 | input stringclasses 1 value | output stringclasses 7 values | metadata dict |
|---|---|---|---|---|---|---|---|---|
train_08700 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | review | foundation | Task: review
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: foundation
Target language: Rust
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "Rust",
"developer_needs": [
"tests_are_truth",
"documentation",
"security_gates"
]
} | |
train_08701 | 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: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "SQL",
"developer_needs": [
"documentation",
"governance",
"ci_integration"
]
} | |
train_08702 | 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: Bash
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "Bash",
"developer_needs": [
"reproducibility",
"documentation",
"tooling"
]
} | |
train_08703 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | compare | expert | Task: compare
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: expert
Target language: Go
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Compare: capability, cost, latency, reliability, governance
| {
"target_language": "Go",
"developer_needs": [
"tests_are_truth",
"cost_latency_tradeoffs",
"documentation"
]
} | |
train_08704 | 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: JavaScript
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "JavaScript",
"developer_needs": [
"tests_are_truth",
"ci_integration",
"evaluation_metrics"
]
} | |
train_08705 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | code | advanced | Task: code
Topic: Tool calling, sandboxes, and CI integration
Difficulty: advanced
Target language: Java
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Java",
"developer_needs": [
"evaluation_metrics",
"tooling",
"reproducibility"
]
} | |
train_08706 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | design | foundation | Task: design
Topic: Model merging, distillation, and continued pretraining
Difficulty: foundation
Target language: Go
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Go",
"developer_needs": [
"evaluation_metrics",
"documentation",
"tests_are_truth"
]
} | |
train_08707 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | code | foundation | Task: code
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: foundation
Target language: Python
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Reference scaffold:
```python
def agent_loop(plan, edit, test, issue, max_iters=3):
history = []
p = plan(issue)
for _ in range(max_iters):
patch = edit(issue, p)
ok, report = test(patch)
history.append({"plan": p, "passed": ok, "report": report[:200]})
if ok:
return patch, history
p = p + " | refine from failures"
return patch, history
```
Operational notes: sandbox, pinned deps, human gate. | {
"target_language": "Python",
"developer_needs": [
"governance",
"tooling",
"reproducibility"
]
} | |
train_08708 | 2026-01-01T00:00:00 | Secure code generation and policy gates | data_pipeline | intermediate | Task: data_pipeline
Topic: Secure code generation and policy gates
Difficulty: intermediate
Target language: Bash
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "Bash",
"developer_needs": [
"reproducibility",
"documentation",
"evaluation_metrics"
]
} | |
train_08709 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | data_pipeline | advanced | Task: data_pipeline
Topic: SWE-bench style real-repo evaluation
Difficulty: advanced
Target language: SQL
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "SQL",
"developer_needs": [
"governance",
"tooling",
"cost_latency_tradeoffs"
]
} | |
train_08710 | 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: Python
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "Python",
"developer_needs": [
"tooling",
"ci_integration",
"reproducibility"
]
} | |
train_08711 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | design | foundation | Task: design
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: foundation
Target language: Bash
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Bash",
"developer_needs": [
"reproducibility",
"cost_latency_tradeoffs",
"ci_integration"
]
} | |
train_08712 | 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: SQL
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "SQL",
"developer_needs": [
"security_gates",
"documentation",
"governance"
]
} | |
train_08713 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | data_pipeline | foundation | Task: data_pipeline
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: foundation
Target language: Bash
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "Bash",
"developer_needs": [
"documentation",
"cost_latency_tradeoffs",
"ci_integration"
]
} | |
train_08714 | 2026-01-01T00:00:00 | Secure code generation and policy gates | eval | foundation | Task: eval
Topic: Secure code generation and policy gates
Difficulty: foundation
Target language: Go
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "Go",
"developer_needs": [
"tests_are_truth",
"repo_scale_reasoning",
"tooling"
]
} | |
train_08715 | 2026-01-01T00:00:00 | Secure code generation and policy gates | eval | advanced | Task: eval
Topic: Secure code generation and policy gates
Difficulty: advanced
Target language: JavaScript
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "JavaScript",
"developer_needs": [
"ci_integration",
"tooling",
"evaluation_metrics"
]
} | |
train_08716 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | eval | expert | Task: eval
Topic: Mixture-of-Experts (MoE) for code
Difficulty: expert
Target language: Bash
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "Bash",
"developer_needs": [
"tooling",
"documentation",
"cost_latency_tradeoffs"
]
} | |
train_08717 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | data_pipeline | advanced | Task: data_pipeline
Topic: Tool calling, sandboxes, and CI integration
Difficulty: advanced
Target language: Rust
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "Rust",
"developer_needs": [
"security_gates",
"ci_integration",
"evaluation_metrics"
]
} | |
train_08718 | 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: C#
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "C#",
"developer_needs": [
"ci_integration",
"tooling",
"documentation"
]
} | |
train_08719 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | design | advanced | Task: design
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: advanced
Target language: Java
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Java",
"developer_needs": [
"evaluation_metrics",
"reproducibility",
"repo_scale_reasoning"
]
} | |
train_08720 | 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: TypeScript
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "TypeScript",
"developer_needs": [
"reproducibility",
"documentation",
"ci_integration"
]
} | |
train_08721 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | design | expert | Task: design
Topic: Tool calling, sandboxes, and CI integration
Difficulty: expert
Target language: JavaScript
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "JavaScript",
"developer_needs": [
"reproducibility",
"evaluation_metrics",
"repo_scale_reasoning"
]
} | |
train_08722 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | data_pipeline | intermediate | Task: data_pipeline
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: intermediate
Target language: TypeScript
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "TypeScript",
"developer_needs": [
"documentation",
"security_gates",
"governance"
]
} | |
train_08723 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | compare | foundation | Task: compare
Topic: Governance, provenance, and licensing for code data
Difficulty: foundation
Target language: C#
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Compare: capability, cost, latency, reliability, governance
| {
"target_language": "C#",
"developer_needs": [
"documentation",
"evaluation_metrics",
"repo_scale_reasoning"
]
} | |
train_08724 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | agent_loop | expert | Task: agent_loop
Topic: SWE-bench style real-repo evaluation
Difficulty: expert
Target language: Go
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "Go",
"developer_needs": [
"tooling",
"security_gates",
"cost_latency_tradeoffs"
]
} | |
train_08725 | 2026-01-01T00:00:00 | Multimodal dev workflows (docs, diagrams, traces) | compare | intermediate | Task: compare
Topic: Multimodal dev workflows (docs, diagrams, traces)
Difficulty: intermediate
Target language: Go
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Compare: capability, cost, latency, reliability, governance
| {
"target_language": "Go",
"developer_needs": [
"security_gates",
"reproducibility",
"repo_scale_reasoning"
]
} | |
train_08726 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | agent_loop | advanced | Task: agent_loop
Topic: SWE-bench style real-repo evaluation
Difficulty: advanced
Target language: JavaScript
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "JavaScript",
"developer_needs": [
"ci_integration",
"security_gates",
"tests_are_truth"
]
} | |
train_08727 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | explain | advanced | Task: explain
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: advanced
Target language: TypeScript
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "TypeScript",
"developer_needs": [
"tooling",
"governance",
"repo_scale_reasoning"
]
} | |
train_08728 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | agent_loop | foundation | Task: agent_loop
Topic: SWE-bench style real-repo evaluation
Difficulty: foundation
Target language: C#
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "C#",
"developer_needs": [
"tooling",
"cost_latency_tradeoffs",
"governance"
]
} | |
train_08729 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | code | intermediate | Task: code
Topic: SWE-bench style real-repo evaluation
Difficulty: intermediate
Target language: SQL
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "SQL",
"developer_needs": [
"ci_integration",
"cost_latency_tradeoffs",
"evaluation_metrics"
]
} | |
train_08730 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | code | expert | Task: code
Topic: Extended context and repo-scale understanding
Difficulty: expert
Target language: Go
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Go",
"developer_needs": [
"ci_integration",
"security_gates",
"governance"
]
} | |
train_08731 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | eval | intermediate | Task: eval
Topic: Extended context and repo-scale understanding
Difficulty: intermediate
Target language: C#
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "C#",
"developer_needs": [
"documentation",
"ci_integration",
"cost_latency_tradeoffs"
]
} | |
train_08732 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | eval | advanced | Task: eval
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: advanced
Target language: SQL
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "SQL",
"developer_needs": [
"tests_are_truth",
"evaluation_metrics",
"tooling"
]
} | |
train_08733 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | review | intermediate | Task: review
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: intermediate
Target language: Java
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "Java",
"developer_needs": [
"ci_integration",
"security_gates",
"tooling"
]
} | |
train_08734 | 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: C#
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "C#",
"developer_needs": [
"ci_integration",
"security_gates",
"documentation"
]
} | |
train_08735 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | design | foundation | Task: design
Topic: Extended context and repo-scale understanding
Difficulty: foundation
Target language: Rust
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Rust",
"developer_needs": [
"documentation",
"governance",
"repo_scale_reasoning"
]
} | |
train_08736 | 2026-01-01T00:00:00 | Secure code generation and policy gates | agent_loop | expert | Task: agent_loop
Topic: Secure code generation and policy gates
Difficulty: expert
Target language: JavaScript
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "JavaScript",
"developer_needs": [
"tooling",
"security_gates",
"evaluation_metrics"
]
} | |
train_08737 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | data_pipeline | advanced | Task: data_pipeline
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: advanced
Target language: JavaScript
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "JavaScript",
"developer_needs": [
"cost_latency_tradeoffs",
"evaluation_metrics",
"tests_are_truth"
]
} | |
train_08738 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | data_pipeline | foundation | Task: data_pipeline
Topic: SWE-bench style real-repo evaluation
Difficulty: foundation
Target language: JavaScript
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "JavaScript",
"developer_needs": [
"documentation",
"repo_scale_reasoning",
"security_gates"
]
} | |
train_08739 | 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: Python
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "Python",
"developer_needs": [
"documentation",
"security_gates",
"evaluation_metrics"
]
} | |
train_08740 | 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: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "Bash",
"developer_needs": [
"tests_are_truth",
"repo_scale_reasoning",
"evaluation_metrics"
]
} | |
train_08741 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | code | expert | Task: code
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: expert
Target language: TypeScript
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "TypeScript",
"developer_needs": [
"governance",
"cost_latency_tradeoffs",
"security_gates"
]
} | |
train_08742 | 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: Go
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Go",
"developer_needs": [
"tooling",
"cost_latency_tradeoffs",
"governance"
]
} | |
train_08743 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | agent_loop | expert | Task: agent_loop
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: expert
Target language: Java
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "Java",
"developer_needs": [
"repo_scale_reasoning",
"tooling",
"ci_integration"
]
} | |
train_08744 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | agent_loop | intermediate | Task: agent_loop
Topic: Model merging, distillation, and continued pretraining
Difficulty: intermediate
Target language: Go
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "Go",
"developer_needs": [
"repo_scale_reasoning",
"ci_integration",
"cost_latency_tradeoffs"
]
} | |
train_08745 | 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: Go
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Go",
"developer_needs": [
"cost_latency_tradeoffs",
"governance",
"documentation"
]
} | |
train_08746 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | code | expert | Task: code
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: expert
Target language: Rust
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Rust",
"developer_needs": [
"tooling",
"security_gates",
"ci_integration"
]
} | |
train_08747 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | data_pipeline | foundation | Task: data_pipeline
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: foundation
Target language: C#
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "C#",
"developer_needs": [
"repo_scale_reasoning",
"cost_latency_tradeoffs",
"tooling"
]
} | |
train_08748 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | design | advanced | Task: design
Topic: Model merging, distillation, and continued pretraining
Difficulty: advanced
Target language: JavaScript
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "JavaScript",
"developer_needs": [
"security_gates",
"tooling",
"reproducibility"
]
} | |
train_08749 | 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: Bash
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Bash",
"developer_needs": [
"cost_latency_tradeoffs",
"security_gates",
"evaluation_metrics"
]
} | |
train_08750 | 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: Rust
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "Rust",
"developer_needs": [
"cost_latency_tradeoffs",
"tests_are_truth",
"security_gates"
]
} | |
train_08751 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | eval | foundation | Task: eval
Topic: Extended context and repo-scale understanding
Difficulty: foundation
Target language: Rust
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "Rust",
"developer_needs": [
"tests_are_truth",
"cost_latency_tradeoffs",
"security_gates"
]
} | |
train_08752 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | design | expert | Task: design
Topic: Extended context and repo-scale understanding
Difficulty: expert
Target language: SQL
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "SQL",
"developer_needs": [
"documentation",
"reproducibility",
"repo_scale_reasoning"
]
} | |
train_08753 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | eval | intermediate | Task: eval
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: intermediate
Target language: Java
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "Java",
"developer_needs": [
"tooling",
"cost_latency_tradeoffs",
"documentation"
]
} | |
train_08754 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | design | advanced | Task: design
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: advanced
Target language: Bash
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Bash",
"developer_needs": [
"repo_scale_reasoning",
"documentation",
"reproducibility"
]
} | |
train_08755 | 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: Go
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Go",
"developer_needs": [
"tests_are_truth",
"security_gates",
"documentation"
]
} | |
train_08756 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | compare | intermediate | Task: compare
Topic: Tool calling, sandboxes, and CI integration
Difficulty: intermediate
Target language: SQL
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Compare: capability, cost, latency, reliability, governance
| {
"target_language": "SQL",
"developer_needs": [
"governance",
"repo_scale_reasoning",
"ci_integration"
]
} | |
train_08757 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | data_pipeline | expert | Task: data_pipeline
Topic: SWE-bench style real-repo evaluation
Difficulty: expert
Target language: JavaScript
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "JavaScript",
"developer_needs": [
"tooling",
"reproducibility",
"governance"
]
} | |
train_08758 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | design | foundation | Task: design
Topic: Model merging, distillation, and continued pretraining
Difficulty: foundation
Target language: C#
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "C#",
"developer_needs": [
"evaluation_metrics",
"governance",
"tests_are_truth"
]
} | |
train_08759 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | code | advanced | Task: code
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: advanced
Target language: Python
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Reference scaffold:
```python
def agent_loop(plan, edit, test, issue, max_iters=3):
history = []
p = plan(issue)
for _ in range(max_iters):
patch = edit(issue, p)
ok, report = test(patch)
history.append({"plan": p, "passed": ok, "report": report[:200]})
if ok:
return patch, history
p = p + " | refine from failures"
return patch, history
```
Operational notes: sandbox, pinned deps, human gate. | {
"target_language": "Python",
"developer_needs": [
"cost_latency_tradeoffs",
"reproducibility",
"tooling"
]
} | |
train_08760 | 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: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "JavaScript",
"developer_needs": [
"tooling",
"documentation",
"cost_latency_tradeoffs"
]
} | |
train_08761 | 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: JavaScript
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "JavaScript",
"developer_needs": [
"documentation",
"ci_integration",
"evaluation_metrics"
]
} | |
train_08762 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | review | intermediate | Task: review
Topic: SWE-bench style real-repo evaluation
Difficulty: intermediate
Target language: TypeScript
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "TypeScript",
"developer_needs": [
"governance",
"documentation",
"tooling"
]
} | |
train_08763 | 2026-01-01T00:00:00 | Secure code generation and policy gates | eval | advanced | Task: eval
Topic: Secure code generation and policy gates
Difficulty: advanced
Target language: Python
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "Python",
"developer_needs": [
"tests_are_truth",
"tooling",
"governance"
]
} | |
train_08764 | 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: C#
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "C#",
"developer_needs": [
"documentation",
"reproducibility",
"tests_are_truth"
]
} | |
train_08765 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | code | expert | Task: code
Topic: Mixture-of-Experts (MoE) for code
Difficulty: expert
Target language: Rust
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Rust",
"developer_needs": [
"ci_integration",
"reproducibility",
"security_gates"
]
} | |
train_08766 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | design | expert | Task: design
Topic: Model merging, distillation, and continued pretraining
Difficulty: expert
Target language: TypeScript
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "TypeScript",
"developer_needs": [
"tooling",
"ci_integration",
"governance"
]
} | |
train_08767 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | explain | foundation | Task: explain
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: foundation
Target language: JavaScript
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "JavaScript",
"developer_needs": [
"reproducibility",
"ci_integration",
"tooling"
]
} | |
train_08768 | 2026-01-01T00:00:00 | Agentic coding systems (plan→edit→test→reflect) | design | expert | Task: design
Topic: Agentic coding systems (plan→edit→test→reflect)
Difficulty: expert
Target language: Go
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Go",
"developer_needs": [
"ci_integration",
"evaluation_metrics",
"documentation"
]
} | |
train_08769 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | agent_loop | intermediate | Task: agent_loop
Topic: Governance, provenance, and licensing for code data
Difficulty: intermediate
Target language: SQL
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "SQL",
"developer_needs": [
"governance",
"repo_scale_reasoning",
"tooling"
]
} | |
train_08770 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | eval | foundation | Task: eval
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: foundation
Target language: TypeScript
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "TypeScript",
"developer_needs": [
"reproducibility",
"security_gates",
"cost_latency_tradeoffs"
]
} | |
train_08771 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | eval | expert | Task: eval
Topic: Governance, provenance, and licensing for code data
Difficulty: expert
Target language: Python
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "Python",
"developer_needs": [
"tests_are_truth",
"governance",
"cost_latency_tradeoffs"
]
} | |
train_08772 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | explain | intermediate | Task: explain
Topic: Tool calling, sandboxes, and CI integration
Difficulty: intermediate
Target language: Java
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Java",
"developer_needs": [
"evaluation_metrics",
"repo_scale_reasoning",
"governance"
]
} | |
train_08773 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | compare | advanced | Task: compare
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: advanced
Target language: Rust
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Compare: capability, cost, latency, reliability, governance
| {
"target_language": "Rust",
"developer_needs": [
"tests_are_truth",
"repo_scale_reasoning",
"cost_latency_tradeoffs"
]
} | |
train_08774 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | code | advanced | Task: code
Topic: Model merging, distillation, and continued pretraining
Difficulty: advanced
Target language: Rust
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Rust",
"developer_needs": [
"tooling",
"governance",
"ci_integration"
]
} | |
train_08775 | 2026-01-01T00:00:00 | Extended context and repo-scale understanding | code | expert | Task: code
Topic: Extended context and repo-scale understanding
Difficulty: expert
Target language: TypeScript
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "TypeScript",
"developer_needs": [
"repo_scale_reasoning",
"cost_latency_tradeoffs",
"evaluation_metrics"
]
} | |
train_08776 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | code | intermediate | Task: code
Topic: Tool calling, sandboxes, and CI integration
Difficulty: intermediate
Target language: Python
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Reference scaffold:
```python
def agent_loop(plan, edit, test, issue, max_iters=3):
history = []
p = plan(issue)
for _ in range(max_iters):
patch = edit(issue, p)
ok, report = test(patch)
history.append({"plan": p, "passed": ok, "report": report[:200]})
if ok:
return patch, history
p = p + " | refine from failures"
return patch, history
```
Operational notes: sandbox, pinned deps, human gate. | {
"target_language": "Python",
"developer_needs": [
"ci_integration",
"tooling",
"repo_scale_reasoning"
]
} | |
train_08777 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | design | foundation | Task: design
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: foundation
Target language: Java
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Java",
"developer_needs": [
"governance",
"documentation",
"ci_integration"
]
} | |
train_08778 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | agent_loop | expert | Task: agent_loop
Topic: SWE-bench style real-repo evaluation
Difficulty: expert
Target language: C#
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "C#",
"developer_needs": [
"cost_latency_tradeoffs",
"repo_scale_reasoning",
"tooling"
]
} | |
train_08779 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | compare | intermediate | Task: compare
Topic: Model merging, distillation, and continued pretraining
Difficulty: intermediate
Target language: Python
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Compare: capability, cost, latency, reliability, governance
| {
"target_language": "Python",
"developer_needs": [
"tooling",
"evaluation_metrics",
"tests_are_truth"
]
} | |
train_08780 | 2026-01-01T00:00:00 | Secure code generation and policy gates | review | expert | Task: review
Topic: Secure code generation and policy gates
Difficulty: expert
Target language: Rust
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "Rust",
"developer_needs": [
"security_gates",
"tests_are_truth",
"evaluation_metrics"
]
} | |
train_08781 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | code | foundation | Task: code
Topic: Governance, provenance, and licensing for code data
Difficulty: foundation
Target language: TypeScript
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "TypeScript",
"developer_needs": [
"ci_integration",
"tooling",
"governance"
]
} | |
train_08782 | 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: C#
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "C#",
"developer_needs": [
"documentation",
"tooling",
"tests_are_truth"
]
} | |
train_08783 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | explain | expert | Task: explain
Topic: Model merging, distillation, and continued pretraining
Difficulty: expert
Target language: Python
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Python",
"developer_needs": [
"cost_latency_tradeoffs",
"tests_are_truth",
"security_gates"
]
} | |
train_08784 | 2026-01-01T00:00:00 | Dataset curation pipelines (filter, dedupe, quality) | code | foundation | Task: code
Topic: Dataset curation pipelines (filter, dedupe, quality)
Difficulty: foundation
Target language: Go
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Go",
"developer_needs": [
"ci_integration",
"governance",
"tests_are_truth"
]
} | |
train_08785 | 2026-01-01T00:00:00 | Secure code generation and policy gates | review | expert | Task: review
Topic: Secure code generation and policy gates
Difficulty: expert
Target language: C#
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "C#",
"developer_needs": [
"tests_are_truth",
"security_gates",
"evaluation_metrics"
]
} | |
train_08786 | 2026-01-01T00:00:00 | Governance, provenance, and licensing for code data | compare | foundation | Task: compare
Topic: Governance, provenance, and licensing for code data
Difficulty: foundation
Target language: Bash
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Compare: capability, cost, latency, reliability, governance
| {
"target_language": "Bash",
"developer_needs": [
"repo_scale_reasoning",
"cost_latency_tradeoffs",
"ci_integration"
]
} | |
train_08787 | 2026-01-01T00:00:00 | Code-specialized model families and sizing tradeoffs | review | foundation | Task: review
Topic: Code-specialized model families and sizing tradeoffs
Difficulty: foundation
Target language: Java
Context: Design a data pipeline for continued pretraining with auditability.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "Java",
"developer_needs": [
"governance",
"ci_integration",
"reproducibility"
]
} | |
train_08788 | 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: Python
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "Python",
"developer_needs": [
"tooling",
"security_gates",
"repo_scale_reasoning"
]
} | |
train_08789 | 2026-01-01T00:00:00 | Tool calling, sandboxes, and CI integration | code | intermediate | Task: code
Topic: Tool calling, sandboxes, and CI integration
Difficulty: intermediate
Target language: Rust
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Design guidance with risks, metrics, acceptance criteria
| {
"target_language": "Rust",
"developer_needs": [
"documentation",
"cost_latency_tradeoffs",
"security_gates"
]
} | |
train_08790 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | review | expert | Task: review
Topic: Model merging, distillation, and continued pretraining
Difficulty: expert
Target language: Bash
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "Bash",
"developer_needs": [
"documentation",
"ci_integration",
"cost_latency_tradeoffs"
]
} | |
train_08791 | 2026-01-01T00:00:00 | Secure code generation and policy gates | eval | advanced | Task: eval
Topic: Secure code generation and policy gates
Difficulty: advanced
Target language: SQL
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "SQL",
"developer_needs": [
"governance",
"evaluation_metrics",
"ci_integration"
]
} | |
train_08792 | 2026-01-01T00:00:00 | Reasoning-first coding models and tunable deliberation | agent_loop | expert | Task: agent_loop
Topic: Reasoning-first coding models and tunable deliberation
Difficulty: expert
Target language: C#
Context: Fix a failing issue with tests as the oracle and produce a safe patch.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Agent loop: Plan → Edit (diff) → Test → Reflect → Human gate
| {
"target_language": "C#",
"developer_needs": [
"tooling",
"repo_scale_reasoning",
"security_gates"
]
} | |
train_08793 | 2026-01-01T00:00:00 | SWE-bench style real-repo evaluation | data_pipeline | intermediate | Task: data_pipeline
Topic: SWE-bench style real-repo evaluation
Difficulty: intermediate
Target language: Python
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "Python",
"developer_needs": [
"tests_are_truth",
"tooling",
"cost_latency_tradeoffs"
]
} | |
train_08794 | 2026-01-01T00:00:00 | Mixture-of-Experts (MoE) for code | eval | expert | Task: eval
Topic: Mixture-of-Experts (MoE) for code
Difficulty: expert
Target language: SQL
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Eval:
- Tasks: real issues
- Metrics: pass@k, time-to-green
- Gates: lint/security
| {
"target_language": "SQL",
"developer_needs": [
"tooling",
"reproducibility",
"repo_scale_reasoning"
]
} | |
train_08795 | 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: Rust
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "Rust",
"developer_needs": [
"ci_integration",
"documentation",
"security_gates"
]
} | |
train_08796 | 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: Java
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Compare: capability, cost, latency, reliability, governance
| {
"target_language": "Java",
"developer_needs": [
"security_gates",
"ci_integration",
"cost_latency_tradeoffs"
]
} | |
train_08797 | 2026-01-01T00:00:00 | Model merging, distillation, and continued pretraining | review | expert | Task: review
Topic: Model merging, distillation, and continued pretraining
Difficulty: expert
Target language: SQL
Context: Integrate an LLM agent into CI for a large monorepo.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Review: correctness, security, performance, governance
| {
"target_language": "SQL",
"developer_needs": [
"governance",
"security_gates",
"evaluation_metrics"
]
} | |
train_08798 | 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: Java
Context: Evaluate two coding models for internal rollout under strict governance.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Compare: capability, cost, latency, reliability, governance
| {
"target_language": "Java",
"developer_needs": [
"repo_scale_reasoning",
"tooling",
"tests_are_truth"
]
} | |
train_08799 | 2026-01-01T00:00:00 | Secure code generation and policy gates | data_pipeline | advanced | Task: data_pipeline
Topic: Secure code generation and policy gates
Difficulty: advanced
Target language: SQL
Context: Create an eval harness that reflects real developer workflows.
Deliver production-grade guidance or artifacts. | Key facts:
- Modern AI coding emphasizes correctness via tests, agentic loops, and real-repo evaluation.
- Reasoning-first and MoE approaches improve capability-per-compute when paired with tools.
Pipeline:
1) Ingest
2) Normalize
3) Filter
4) Dedupe
5) Quality score
6) Sample
7) Audit
| {
"target_language": "SQL",
"developer_needs": [
"reproducibility",
"cost_latency_tradeoffs",
"documentation"
]
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.