Datasets:
id stringlengths 11 11 | dataset stringclasses 1
value | brand stringclasses 1
value | task_type stringclasses 8
values | language stringclasses 5
values | difficulty stringclasses 3
values | title stringclasses 49
values | domain stringclasses 8
values | user_story stringclasses 49
values | repo_context stringlengths 56 119 | instruction stringclasses 49
values | reference_solution stringclasses 27
values | evaluation dict | tags listlengths 6 6 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
JT3K-000722 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | python | easy | Sequence tool calls | creator-tools | Construct a tool-use plan for fixing an import error across multiple files. | Repo: ml-pipeline. Domain: creator-tools. Agentic coding workflow with file reads, tests, and patches. | Create a tool-use plan for: Sequence tool calls. Include the ideal sequence of read, edit, test, and verify actions. | Read the relevant file set, inspect failure output, patch the narrowest surface, rerun targeted tests, then broaden checks. | {
"checks": [
"tool order sensible",
"minimal edit strategy",
"verification included"
]
} | [
"agentic",
"coding",
"tool_use",
"python",
"creator-tools",
"persian-friendly"
] |
JT3K-000633 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | javascript | hard | Locate data fetching boundaries | creator-tools | A Next.js repo separates server actions, client components, and shared utilities. | Repo: cms-platform. Domain: creator-tools. React/Node codebase with components, hooks, and API clients. | Explain the code path for: Locate data fetching boundaries. Point out likely components, hooks, or services. | Follow the UI event, state update, API call, and render path. Identify shared utilities and tests. | {
"checks": [
"UI path identified",
"state flow understood",
"files mapped"
]
} | [
"agentic",
"coding",
"repo_understanding",
"javascript",
"creator-tools",
"persian-friendly"
] |
JT3K-001400 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | sql | easy | Review a reporting query | healthtech | The query is correct but slow due to an unbounded scan and unnecessary subquery. | Repo: payments-api. Domain: healthtech. SQL reporting and ETL jobs. | Review the SQL for: Review a reporting query. Identify correctness and performance risks. | Flag full scans, unnecessary CTEs, non-sargable filters, and inconsistent joins. | {
"checks": [
"performance risk",
"logic risk",
"clear recommendation"
]
} | [
"agentic",
"coding",
"code_review",
"sql",
"healthtech",
"persian-friendly"
] |
JT3K-002490 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | typescript | medium | Design client methods | creator-tools | Design a TypeScript client for search, pagination, and retries. | Repo: ecommerce-backend. Domain: creator-tools. TypeScript client or Node API layer. | Design a TypeScript API for: Design client methods. Define method names, inputs, and return types. | Prefer explicit types, typed errors, pagination support, and composable options objects. | {
"checks": [
"typed contract",
"clear ergonomics",
"extensibility"
]
} | [
"agentic",
"coding",
"api_design",
"typescript",
"creator-tools",
"persian-friendly"
] |
JT3K-000777 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | python | hard | Plan a repair loop | fintech | The agent should read files, run tests, inspect failures, patch code, and re-run checks. | Repo: dashboard-web. Domain: fintech. Agentic coding workflow with file reads, tests, and patches. | Create a tool-use plan for: Plan a repair loop. Include the ideal sequence of read, edit, test, and verify actions. | Read the relevant file set, inspect failure output, patch the narrowest surface, rerun targeted tests, then broaden checks. | {
"checks": [
"tool order sensible",
"minimal edit strategy",
"verification included"
]
} | [
"agentic",
"coding",
"tool_use",
"python",
"fintech",
"persian-friendly"
] |
JT3K-001488 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | sql | medium | Fix duplicate aggregation | ecommerce | A query double-counts rows after joining two one-to-many tables. | Repo: scheduler. Domain: ecommerce. SQL analytics pipeline with reporting queries. | Fix the query issue: Fix duplicate aggregation. Explain the bug and provide the corrected pattern. | Deduplicate before aggregating, use correct grain, and be careful with time boundaries. | {
"checks": [
"correct grain",
"no double count",
"boundary handling"
]
} | [
"agentic",
"coding",
"bug_fix",
"sql",
"ecommerce",
"persian-friendly"
] |
JT3K-002886 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | python | easy | Review a serializer | ecommerce | The serializer leaks internal IDs in API responses; propose a cleaner contract. | Repo: payments-api. Domain: ecommerce. Python backend with API handlers and background workers. | Review the code for: Review a serializer. Call out risks and give a practical improvement plan. | Flag correctness, performance, maintainability, and security concerns. Recommend the smallest safe refactor. | {
"checks": [
"risk identified",
"actionable fix",
"production awareness"
]
} | [
"agentic",
"coding",
"code_review",
"python",
"ecommerce",
"persian-friendly"
] |
JT3K-001088 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | sql | easy | Simplify a report query | fintech | Refactor a deeply nested CTE chain for readability. | Repo: payments-api. Domain: fintech. SQL queries with layered CTEs. | Refactor the query for: Simplify a report query. Make it easier to read without changing results. | Reduce nested CTE depth, standardize aliases, and keep one clear grain per step. | {
"checks": [
"readability",
"stable results",
"clear grain"
]
} | [
"agentic",
"coding",
"refactor",
"sql",
"fintech",
"persian-friendly"
] |
JT3K-000869 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | bash | medium | Plan release verification | infra | Run lint, unit tests, packaging, and smoke checks before publishing. | Repo: cms-platform. Domain: infra. Release and verification scripts in bash. | Build a tool-use plan for: Plan release verification. Include commands to inspect, run, and validate. | List the exact commands in order: inspect files, run targeted checks, then package and smoke test. | {
"checks": [
"command order",
"verification",
"safe execution"
]
} | [
"agentic",
"coding",
"tool_use",
"bash",
"infra",
"persian-friendly"
] |
JT3K-000742 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | python | easy | Plan rate limiting | fintech | Add a rate limiter design that can scale across multiple workers. | Repo: chat-agent. Domain: fintech. Python backend exposing JSON APIs. | Design the API/contract for: Plan rate limiting. Define inputs, outputs, errors, and extensibility points. | Use explicit request/response schemas, stable error shapes, and version-friendly naming. | {
"checks": [
"clear contract",
"consistent errors",
"future-proof design"
]
} | [
"agentic",
"coding",
"api_design",
"python",
"fintech",
"persian-friendly"
] |
JT3K-002038 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | javascript | easy | Analyze hydration mismatch | healthtech | A server-rendered page renders different timestamps on client and server. | Repo: ecommerce-backend. Domain: healthtech. Frontend app with hydration and async data flow. | Diagnose the issue: Analyze hydration mismatch. Explain likely cause and how to verify the fix. | Check server/client output mismatches, stale closures, promise handling, and state synchronization. | {
"checks": [
"root cause",
"verification steps",
"frontend-specific diagnosis"
]
} | [
"agentic",
"coding",
"debug_trace",
"javascript",
"healthtech",
"persian-friendly"
] |
JT3K-002427 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | sql | hard | Trace missing rows | developer-tools | A dashboard shows missing records after a timezone conversion. | Repo: chat-agent. Domain: developer-tools. SQL pipeline and dashboard queries. | Trace the data issue: Trace missing rows. Explain likely cause and how to verify the fix. | Check timezone conversion, join cardinality, and filters that remove expected rows. | {
"checks": [
"root cause",
"data verification",
"metric consistency"
]
} | [
"agentic",
"coding",
"debug_trace",
"sql",
"developer-tools",
"persian-friendly"
] |
JT3K-000499 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | python | medium | Explain a stack trace | developer-tools | A KeyError appears in production when a field is absent in a nested payload. | Repo: scheduler. Domain: developer-tools. Python service with logs, stack traces, and tests. | Diagnose this failure: Explain a stack trace. Provide the most likely cause and the verification steps. | Read the stack trace, identify the failing boundary, isolate shared state or missing key paths, then add a regression test. | {
"checks": [
"root cause",
"debug steps",
"verification plan"
]
} | [
"agentic",
"coding",
"debug_trace",
"python",
"developer-tools",
"persian-friendly"
] |
JT3K-000918 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | bash | hard | Simplify script logic | creator-tools | Refactor a long shell script into functions with clearer error handling. | Repo: chat-agent. Domain: creator-tools. Bash automation with functions and environment variables. | Refactor the script for: Simplify script logic. Reduce repetition and improve error handling. | Extract functions, use strict mode carefully, and keep reusable command pieces in variables. | {
"checks": [
"repetition reduced",
"error handling",
"maintainability"
]
} | [
"agentic",
"coding",
"refactor",
"bash",
"creator-tools",
"persian-friendly"
] |
JT3K-002465 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | sql | medium | Trace missing rows | developer-tools | A dashboard shows missing records after a timezone conversion. | Repo: analytics-core. Domain: developer-tools. SQL pipeline and dashboard queries. | Trace the data issue: Trace missing rows. Explain likely cause and how to verify the fix. | Check timezone conversion, join cardinality, and filters that remove expected rows. | {
"checks": [
"root cause",
"data verification",
"metric consistency"
]
} | [
"agentic",
"coding",
"debug_trace",
"sql",
"developer-tools",
"persian-friendly"
] |
JT3K-002792 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | python | hard | Find hidden coupling | edtech | Inspect a Python package with utils, handlers, and workers; explain how retry logic affects job processing. | Repo: cms-platform. Domain: edtech. Python service with app/, services/, repositories/, tests/. | Explain how this codebase handles the task: Find hidden coupling. Identify the files and modules most likely involved. | 1. Start at the route/controller.
2. Follow service layer calls.
3. Check repository and schema modules.
4. Verify tests that cover the flow. | {
"checks": [
"correct entry point",
"correct data flow",
"relevant files identified"
]
} | [
"agentic",
"coding",
"repo_understanding",
"python",
"edtech",
"persian-friendly"
] |
JT3K-001804 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | python | medium | Diagnose a race condition | ecommerce | Two concurrent requests occasionally overwrite each other in a cache-backed flow. | Repo: ml-pipeline. Domain: ecommerce. Python service with logs, stack traces, and tests. | Diagnose this failure: Diagnose a race condition. Provide the most likely cause and the verification steps. | Read the stack trace, identify the failing boundary, isolate shared state or missing key paths, then add a regression test. | {
"checks": [
"root cause",
"debug steps",
"verification plan"
]
} | [
"agentic",
"coding",
"debug_trace",
"python",
"ecommerce",
"persian-friendly"
] |
JT3K-000744 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | javascript | easy | Plan verify-edit cycle | creator-tools | Read component files, edit the smallest surface, run tests, and summarize outcome. | Repo: payments-api. Domain: creator-tools. Agent workflow over frontend files, tests, and build output. | Create a tool plan for: Plan verify-edit cycle. Include inspect, edit, test, and verify steps. | Open the minimal file set, edit the affected component or hook, run targeted tests, then confirm build health. | {
"checks": [
"tool sequence",
"minimal edit",
"verification"
]
} | [
"agentic",
"coding",
"tool_use",
"javascript",
"creator-tools",
"persian-friendly"
] |
JT3K-000553 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | python | easy | Reduce duplication | developer-tools | The repo has repeated validation logic in three endpoints; centralize it. | Repo: auth-service. Domain: developer-tools. Python codebase with repeated helpers and service objects. | Refactor the following situation: Reduce duplication. Preserve behavior and reduce complexity. | Extract helpers, keep public API stable, add/adjust tests, and avoid mixing business logic with I/O. | {
"checks": [
"behavior preserved",
"complexity reduced",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"python",
"developer-tools",
"persian-friendly"
] |
JT3K-002464 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | typescript | easy | Simplify reducer logic | fintech | Reduce branching in a Redux reducer without changing behavior. | Repo: analytics-core. Domain: fintech. React components and shared logic in a frontend repo. | Refactor the following: Simplify reducer logic. Reduce duplication and keep the public interface stable. | Extract a hook or utility, preserve props and return shape, and add tests around behavior. | {
"checks": [
"duplication removed",
"interface stable",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"typescript",
"fintech",
"persian-friendly"
] |
JT3K-002023 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | python | medium | Diagnose a race condition | edtech | Two concurrent requests occasionally overwrite each other in a cache-backed flow. | Repo: scheduler. Domain: edtech. Python service with logs, stack traces, and tests. | Diagnose this failure: Diagnose a race condition. Provide the most likely cause and the verification steps. | Read the stack trace, identify the failing boundary, isolate shared state or missing key paths, then add a regression test. | {
"checks": [
"root cause",
"debug steps",
"verification plan"
]
} | [
"agentic",
"coding",
"debug_trace",
"python",
"edtech",
"persian-friendly"
] |
JT3K-000730 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | python | easy | Fix timezone parsing | healthtech | A datetime parser returns naive objects and breaks scheduling. Patch it to handle UTC offsets safely. | Repo: analytics-core. Domain: healthtech. Python service uses Pydantic models, DB repositories, and unit tests. | Patch the bug described here: Fix timezone parsing. Return a minimal safe fix and mention any tests to run. | Add input validation, preserve backward-compatible behavior, and include a regression test for the broken edge case. | {
"checks": [
"bug removed",
"edge case handled",
"regression test suggested"
]
} | [
"agentic",
"coding",
"bug_fix",
"python",
"healthtech",
"persian-friendly"
] |
JT3K-002996 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | javascript | easy | Extract reusable hook | creator-tools | Refactor repeated fetch logic into a custom React hook. | Repo: ml-pipeline. Domain: creator-tools. React components and shared logic in a frontend repo. | Refactor the following: Extract reusable hook. Reduce duplication and keep the public interface stable. | Extract a hook or utility, preserve props and return shape, and add tests around behavior. | {
"checks": [
"duplication removed",
"interface stable",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"javascript",
"creator-tools",
"persian-friendly"
] |
JT3K-000954 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | javascript | medium | Extract reusable hook | saas | Refactor repeated fetch logic into a custom React hook. | Repo: mobile-sdk. Domain: saas. React components and shared logic in a frontend repo. | Refactor the following: Extract reusable hook. Reduce duplication and keep the public interface stable. | Extract a hook or utility, preserve props and return shape, and add tests around behavior. | {
"checks": [
"duplication removed",
"interface stable",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"javascript",
"saas",
"persian-friendly"
] |
JT3K-000026 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | javascript | medium | Fix stale closure | developer-tools | A hook callback reads old state after rapid updates; patch it. | Repo: ml-pipeline. Domain: developer-tools. React/Next.js application with hooks and server/client boundaries. | Fix this bug: Fix stale closure. Keep the change minimal and safe. | Guard missing values, avoid stale state, and keep server/client-only logic in the right layer. | {
"checks": [
"bug fixed",
"safe boundary handling",
"regression test suggested"
]
} | [
"agentic",
"coding",
"bug_fix",
"javascript",
"developer-tools",
"persian-friendly"
] |
JT3K-002059 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | python | easy | Review a cache helper | creator-tools | A cache wrapper forgets to namespace keys and can collide across tenants. | Repo: analytics-core. Domain: creator-tools. Python backend with API handlers and background workers. | Review the code for: Review a cache helper. Call out risks and give a practical improvement plan. | Flag correctness, performance, maintainability, and security concerns. Recommend the smallest safe refactor. | {
"checks": [
"risk identified",
"actionable fix",
"production awareness"
]
} | [
"agentic",
"coding",
"code_review",
"python",
"creator-tools",
"persian-friendly"
] |
JT3K-002134 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | typescript | easy | Fix stale closure | creator-tools | A hook callback reads old state after rapid updates; patch it. | Repo: ecommerce-backend. Domain: creator-tools. React/Next.js application with hooks and server/client boundaries. | Fix this bug: Fix stale closure. Keep the change minimal and safe. | Guard missing values, avoid stale state, and keep server/client-only logic in the right layer. | {
"checks": [
"bug fixed",
"safe boundary handling",
"regression test suggested"
]
} | [
"agentic",
"coding",
"bug_fix",
"typescript",
"creator-tools",
"persian-friendly"
] |
JT3K-001162 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | python | medium | Plan a repair loop | infra | The agent should read files, run tests, inspect failures, patch code, and re-run checks. | Repo: ml-pipeline. Domain: infra. Agentic coding workflow with file reads, tests, and patches. | Create a tool-use plan for: Plan a repair loop. Include the ideal sequence of read, edit, test, and verify actions. | Read the relevant file set, inspect failure output, patch the narrowest surface, rerun targeted tests, then broaden checks. | {
"checks": [
"tool order sensible",
"minimal edit strategy",
"verification included"
]
} | [
"agentic",
"coding",
"tool_use",
"python",
"infra",
"persian-friendly"
] |
JT3K-001803 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | bash | medium | Plan release verification | developer-tools | Run lint, unit tests, packaging, and smoke checks before publishing. | Repo: chat-agent. Domain: developer-tools. Release and verification scripts in bash. | Build a tool-use plan for: Plan release verification. Include commands to inspect, run, and validate. | List the exact commands in order: inspect files, run targeted checks, then package and smoke test. | {
"checks": [
"command order",
"verification",
"safe execution"
]
} | [
"agentic",
"coding",
"tool_use",
"bash",
"developer-tools",
"persian-friendly"
] |
JT3K-000321 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tdd | python | easy | Define a failing test suite | developer-tools | Produce tests for a CSV importer that must reject malformed rows. | Repo: dashboard-web. Domain: developer-tools. Python package with pytest and typed functions. | Write a test-first plan for: Define a failing test suite. Include the key test cases before implementation. | Cover happy path, invalid input, boundaries, and failure modes. Keep tests deterministic and small. | {
"checks": [
"edge cases covered",
"test names clear",
"deterministic behavior"
]
} | [
"agentic",
"coding",
"tdd",
"python",
"developer-tools",
"persian-friendly"
] |
JT3K-002547 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | typescript | medium | Simplify reducer logic | edtech | Reduce branching in a Redux reducer without changing behavior. | Repo: auth-service. Domain: edtech. React components and shared logic in a frontend repo. | Refactor the following: Simplify reducer logic. Reduce duplication and keep the public interface stable. | Extract a hook or utility, preserve props and return shape, and add tests around behavior. | {
"checks": [
"duplication removed",
"interface stable",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"typescript",
"edtech",
"persian-friendly"
] |
JT3K-001942 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | python | easy | Improve readability | infra | Rename ambiguous variables and simplify nested conditionals in a config loader. | Repo: scheduler. Domain: infra. Python codebase with repeated helpers and service objects. | Refactor the following situation: Improve readability. Preserve behavior and reduce complexity. | Extract helpers, keep public API stable, add/adjust tests, and avoid mixing business logic with I/O. | {
"checks": [
"behavior preserved",
"complexity reduced",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"python",
"infra",
"persian-friendly"
] |
JT3K-001094 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | python | easy | Sequence tool calls | healthtech | Construct a tool-use plan for fixing an import error across multiple files. | Repo: mobile-sdk. Domain: healthtech. Agentic coding workflow with file reads, tests, and patches. | Create a tool-use plan for: Sequence tool calls. Include the ideal sequence of read, edit, test, and verify actions. | Read the relevant file set, inspect failure output, patch the narrowest surface, rerun targeted tests, then broaden checks. | {
"checks": [
"tool order sensible",
"minimal edit strategy",
"verification included"
]
} | [
"agentic",
"coding",
"tool_use",
"python",
"healthtech",
"persian-friendly"
] |
JT3K-001934 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | typescript | easy | Review a memoized component | infra | An over-memoized component hides actual prop changes. | Repo: payments-api. Domain: infra. Frontend app with shared utilities and API wrappers. | Review the implementation for: Review a memoized component. Comment on correctness, UX, and maintainability. | Look for async race conditions, unnecessary re-renders, error handling gaps, and accessibility issues. | {
"checks": [
"quality issues found",
"practical suggestions",
"frontend concerns"
]
} | [
"agentic",
"coding",
"code_review",
"typescript",
"infra",
"persian-friendly"
] |
JT3K-000636 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | javascript | easy | Locate data fetching boundaries | fintech | A Next.js repo separates server actions, client components, and shared utilities. | Repo: chat-agent. Domain: fintech. React/Node codebase with components, hooks, and API clients. | Explain the code path for: Locate data fetching boundaries. Point out likely components, hooks, or services. | Follow the UI event, state update, API call, and render path. Identify shared utilities and tests. | {
"checks": [
"UI path identified",
"state flow understood",
"files mapped"
]
} | [
"agentic",
"coding",
"repo_understanding",
"javascript",
"fintech",
"persian-friendly"
] |
JT3K-002949 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tdd | python | hard | Write tests before implementation | saas | Create unit tests for a discount calculator covering edge cases and rounding. | Repo: chat-agent. Domain: saas. Python package with pytest and typed functions. | Write a test-first plan for: Write tests before implementation. Include the key test cases before implementation. | Cover happy path, invalid input, boundaries, and failure modes. Keep tests deterministic and small. | {
"checks": [
"edge cases covered",
"test names clear",
"deterministic behavior"
]
} | [
"agentic",
"coding",
"tdd",
"python",
"saas",
"persian-friendly"
] |
JT3K-000927 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | sql | easy | Trace missing rows | developer-tools | A dashboard shows missing records after a timezone conversion. | Repo: cms-platform. Domain: developer-tools. SQL pipeline and dashboard queries. | Trace the data issue: Trace missing rows. Explain likely cause and how to verify the fix. | Check timezone conversion, join cardinality, and filters that remove expected rows. | {
"checks": [
"root cause",
"data verification",
"metric consistency"
]
} | [
"agentic",
"coding",
"debug_trace",
"sql",
"developer-tools",
"persian-friendly"
] |
JT3K-001061 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | python | medium | Sequence tool calls | creator-tools | Construct a tool-use plan for fixing an import error across multiple files. | Repo: ecommerce-backend. Domain: creator-tools. Agentic coding workflow with file reads, tests, and patches. | Create a tool-use plan for: Sequence tool calls. Include the ideal sequence of read, edit, test, and verify actions. | Read the relevant file set, inspect failure output, patch the narrowest surface, rerun targeted tests, then broaden checks. | {
"checks": [
"tool order sensible",
"minimal edit strategy",
"verification included"
]
} | [
"agentic",
"coding",
"tool_use",
"python",
"creator-tools",
"persian-friendly"
] |
JT3K-001510 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | sql | medium | Simplify a report query | saas | Refactor a deeply nested CTE chain for readability. | Repo: payments-api. Domain: saas. SQL queries with layered CTEs. | Refactor the query for: Simplify a report query. Make it easier to read without changing results. | Reduce nested CTE depth, standardize aliases, and keep one clear grain per step. | {
"checks": [
"readability",
"stable results",
"clear grain"
]
} | [
"agentic",
"coding",
"refactor",
"sql",
"saas",
"persian-friendly"
] |
JT3K-002909 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | python | medium | Define response shapes | fintech | Design consistent API responses for success, validation errors, and server errors. | Repo: analytics-core. Domain: fintech. Python backend exposing JSON APIs. | Design the API/contract for: Define response shapes. Define inputs, outputs, errors, and extensibility points. | Use explicit request/response schemas, stable error shapes, and version-friendly naming. | {
"checks": [
"clear contract",
"consistent errors",
"future-proof design"
]
} | [
"agentic",
"coding",
"api_design",
"python",
"fintech",
"persian-friendly"
] |
JT3K-001558 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tdd | typescript | easy | Test form validation | healthtech | Create tests for password and email validation in a UI flow. | Repo: dashboard-web. Domain: healthtech. JS testing stack with Vitest/Jest and React Testing Library. | Write test cases for: Test form validation. Start with the edge cases and expected behavior. | Cover input validation, boundary values, async states, and error rendering. | {
"checks": [
"edge coverage",
"async behavior",
"clear expectations"
]
} | [
"agentic",
"coding",
"tdd",
"typescript",
"healthtech",
"persian-friendly"
] |
JT3K-000466 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | python | medium | Identify the file to change for feature X | creator-tools | A FastAPI repo stores schema logic in one module and persistence in another. Locate where to add a new field safely. | Repo: chat-agent. Domain: creator-tools. Python service with app/, services/, repositories/, tests/. | Explain how this codebase handles the task: Identify the file to change for feature X. Identify the files and modules most likely involved. | 1. Start at the route/controller.
2. Follow service layer calls.
3. Check repository and schema modules.
4. Verify tests that cover the flow. | {
"checks": [
"correct entry point",
"correct data flow",
"relevant files identified"
]
} | [
"agentic",
"coding",
"repo_understanding",
"python",
"creator-tools",
"persian-friendly"
] |
JT3K-002213 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | javascript | hard | Plan verify-edit cycle | saas | Read component files, edit the smallest surface, run tests, and summarize outcome. | Repo: ml-pipeline. Domain: saas. Agent workflow over frontend files, tests, and build output. | Create a tool plan for: Plan verify-edit cycle. Include inspect, edit, test, and verify steps. | Open the minimal file set, edit the affected component or hook, run targeted tests, then confirm build health. | {
"checks": [
"tool sequence",
"minimal edit",
"verification"
]
} | [
"agentic",
"coding",
"tool_use",
"javascript",
"saas",
"persian-friendly"
] |
JT3K-000902 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | javascript | easy | Simplify reducer logic | healthtech | Reduce branching in a Redux reducer without changing behavior. | Repo: analytics-core. Domain: healthtech. React components and shared logic in a frontend repo. | Refactor the following: Simplify reducer logic. Reduce duplication and keep the public interface stable. | Extract a hook or utility, preserve props and return shape, and add tests around behavior. | {
"checks": [
"duplication removed",
"interface stable",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"javascript",
"healthtech",
"persian-friendly"
] |
JT3K-000616 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | javascript | hard | Design client methods | fintech | Design a TypeScript client for search, pagination, and retries. | Repo: mobile-sdk. Domain: fintech. TypeScript client or Node API layer. | Design a TypeScript API for: Design client methods. Define method names, inputs, and return types. | Prefer explicit types, typed errors, pagination support, and composable options objects. | {
"checks": [
"typed contract",
"clear ergonomics",
"extensibility"
]
} | [
"agentic",
"coding",
"api_design",
"javascript",
"fintech",
"persian-friendly"
] |
JT3K-000956 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | javascript | hard | Trace state across components | infra | A React app manages auth state in context, hooks, and a small API layer. | Repo: ecommerce-backend. Domain: infra. React/Node codebase with components, hooks, and API clients. | Explain the code path for: Trace state across components. Point out likely components, hooks, or services. | Follow the UI event, state update, API call, and render path. Identify shared utilities and tests. | {
"checks": [
"UI path identified",
"state flow understood",
"files mapped"
]
} | [
"agentic",
"coding",
"repo_understanding",
"javascript",
"infra",
"persian-friendly"
] |
JT3K-002604 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | python | hard | Trace a failing unit test | healthtech | A test intermittently fails due to shared mutable state between cases. | Repo: dashboard-web. Domain: healthtech. Python service with logs, stack traces, and tests. | Diagnose this failure: Trace a failing unit test. Provide the most likely cause and the verification steps. | Read the stack trace, identify the failing boundary, isolate shared state or missing key paths, then add a regression test. | {
"checks": [
"root cause",
"debug steps",
"verification plan"
]
} | [
"agentic",
"coding",
"debug_trace",
"python",
"healthtech",
"persian-friendly"
] |
JT3K-001936 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | javascript | easy | Plan verify-edit cycle | creator-tools | Read component files, edit the smallest surface, run tests, and summarize outcome. | Repo: ml-pipeline. Domain: creator-tools. Agent workflow over frontend files, tests, and build output. | Create a tool plan for: Plan verify-edit cycle. Include inspect, edit, test, and verify steps. | Open the minimal file set, edit the affected component or hook, run targeted tests, then confirm build health. | {
"checks": [
"tool sequence",
"minimal edit",
"verification"
]
} | [
"agentic",
"coding",
"tool_use",
"javascript",
"creator-tools",
"persian-friendly"
] |
JT3K-002687 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | javascript | medium | Fix stale closure | healthtech | A hook callback reads old state after rapid updates; patch it. | Repo: analytics-core. Domain: healthtech. React/Next.js application with hooks and server/client boundaries. | Fix this bug: Fix stale closure. Keep the change minimal and safe. | Guard missing values, avoid stale state, and keep server/client-only logic in the right layer. | {
"checks": [
"bug fixed",
"safe boundary handling",
"regression test suggested"
]
} | [
"agentic",
"coding",
"bug_fix",
"javascript",
"healthtech",
"persian-friendly"
] |
JT3K-000613 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | javascript | easy | Review an API client | developer-tools | The client mixes transport errors and business errors in one catch block. | Repo: payments-api. Domain: developer-tools. Frontend app with shared utilities and API wrappers. | Review the implementation for: Review an API client. Comment on correctness, UX, and maintainability. | Look for async race conditions, unnecessary re-renders, error handling gaps, and accessibility issues. | {
"checks": [
"quality issues found",
"practical suggestions",
"frontend concerns"
]
} | [
"agentic",
"coding",
"code_review",
"javascript",
"developer-tools",
"persian-friendly"
] |
JT3K-000654 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | javascript | hard | Review an API client | creator-tools | The client mixes transport errors and business errors in one catch block. | Repo: payments-api. Domain: creator-tools. Frontend app with shared utilities and API wrappers. | Review the implementation for: Review an API client. Comment on correctness, UX, and maintainability. | Look for async race conditions, unnecessary re-renders, error handling gaps, and accessibility issues. | {
"checks": [
"quality issues found",
"practical suggestions",
"frontend concerns"
]
} | [
"agentic",
"coding",
"code_review",
"javascript",
"creator-tools",
"persian-friendly"
] |
JT3K-002206 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | javascript | medium | Guard null props | fintech | A component crashes when optional props are missing. | Repo: dashboard-web. Domain: fintech. React/Next.js application with hooks and server/client boundaries. | Fix this bug: Guard null props. Keep the change minimal and safe. | Guard missing values, avoid stale state, and keep server/client-only logic in the right layer. | {
"checks": [
"bug fixed",
"safe boundary handling",
"regression test suggested"
]
} | [
"agentic",
"coding",
"bug_fix",
"javascript",
"fintech",
"persian-friendly"
] |
JT3K-002230 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | python | medium | Improve readability | infra | Rename ambiguous variables and simplify nested conditionals in a config loader. | Repo: mobile-sdk. Domain: infra. Python codebase with repeated helpers and service objects. | Refactor the following situation: Improve readability. Preserve behavior and reduce complexity. | Extract helpers, keep public API stable, add/adjust tests, and avoid mixing business logic with I/O. | {
"checks": [
"behavior preserved",
"complexity reduced",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"python",
"infra",
"persian-friendly"
] |
JT3K-000226 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | javascript | medium | Design client methods | healthtech | Design a TypeScript client for search, pagination, and retries. | Repo: ecommerce-backend. Domain: healthtech. TypeScript client or Node API layer. | Design a TypeScript API for: Design client methods. Define method names, inputs, and return types. | Prefer explicit types, typed errors, pagination support, and composable options objects. | {
"checks": [
"typed contract",
"clear ergonomics",
"extensibility"
]
} | [
"agentic",
"coding",
"api_design",
"javascript",
"healthtech",
"persian-friendly"
] |
JT3K-001861 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | python | easy | Review a cache helper | saas | A cache wrapper forgets to namespace keys and can collide across tenants. | Repo: scheduler. Domain: saas. Python backend with API handlers and background workers. | Review the code for: Review a cache helper. Call out risks and give a practical improvement plan. | Flag correctness, performance, maintainability, and security concerns. Recommend the smallest safe refactor. | {
"checks": [
"risk identified",
"actionable fix",
"production awareness"
]
} | [
"agentic",
"coding",
"code_review",
"python",
"saas",
"persian-friendly"
] |
JT3K-001591 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | sql | hard | Design audit tables | saas | Design tables for tracking API events and change history. | Repo: analytics-core. Domain: saas. Analytics schema design. | Design the tables or schema for: Design audit tables. Define keys, partitions, and audit columns. | Use surrogate keys, timestamps, source metadata, and clear fact/dimension separation. | {
"checks": [
"schema clarity",
"scalability",
"auditability"
]
} | [
"agentic",
"coding",
"api_design",
"sql",
"saas",
"persian-friendly"
] |
JT3K-001774 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | bash | easy | Simplify script logic | edtech | Refactor a long shell script into functions with clearer error handling. | Repo: cms-platform. Domain: edtech. Bash automation with functions and environment variables. | Refactor the script for: Simplify script logic. Reduce repetition and improve error handling. | Extract functions, use strict mode carefully, and keep reusable command pieces in variables. | {
"checks": [
"repetition reduced",
"error handling",
"maintainability"
]
} | [
"agentic",
"coding",
"refactor",
"bash",
"edtech",
"persian-friendly"
] |
JT3K-002337 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | bash | easy | Plan release verification | developer-tools | Run lint, unit tests, packaging, and smoke checks before publishing. | Repo: auth-service. Domain: developer-tools. Release and verification scripts in bash. | Build a tool-use plan for: Plan release verification. Include commands to inspect, run, and validate. | List the exact commands in order: inspect files, run targeted checks, then package and smoke test. | {
"checks": [
"command order",
"verification",
"safe execution"
]
} | [
"agentic",
"coding",
"tool_use",
"bash",
"developer-tools",
"persian-friendly"
] |
JT3K-000522 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | python | easy | Fix timezone parsing | edtech | A datetime parser returns naive objects and breaks scheduling. Patch it to handle UTC offsets safely. | Repo: scheduler. Domain: edtech. Python service uses Pydantic models, DB repositories, and unit tests. | Patch the bug described here: Fix timezone parsing. Return a minimal safe fix and mention any tests to run. | Add input validation, preserve backward-compatible behavior, and include a regression test for the broken edge case. | {
"checks": [
"bug removed",
"edge case handled",
"regression test suggested"
]
} | [
"agentic",
"coding",
"bug_fix",
"python",
"edtech",
"persian-friendly"
] |
JT3K-000102 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | javascript | medium | Analyze hydration mismatch | developer-tools | A server-rendered page renders different timestamps on client and server. | Repo: cms-platform. Domain: developer-tools. Frontend app with hydration and async data flow. | Diagnose the issue: Analyze hydration mismatch. Explain likely cause and how to verify the fix. | Check server/client output mismatches, stale closures, promise handling, and state synchronization. | {
"checks": [
"root cause",
"verification steps",
"frontend-specific diagnosis"
]
} | [
"agentic",
"coding",
"debug_trace",
"javascript",
"developer-tools",
"persian-friendly"
] |
JT3K-002399 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | python | easy | Sequence tool calls | ecommerce | Construct a tool-use plan for fixing an import error across multiple files. | Repo: scheduler. Domain: ecommerce. Agentic coding workflow with file reads, tests, and patches. | Create a tool-use plan for: Sequence tool calls. Include the ideal sequence of read, edit, test, and verify actions. | Read the relevant file set, inspect failure output, patch the narrowest surface, rerun targeted tests, then broaden checks. | {
"checks": [
"tool order sensible",
"minimal edit strategy",
"verification included"
]
} | [
"agentic",
"coding",
"tool_use",
"python",
"ecommerce",
"persian-friendly"
] |
JT3K-002794 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | python | medium | Split a large function | creator-tools | Refactor a 120-line data transformation function into small testable helpers. | Repo: analytics-core. Domain: creator-tools. Python codebase with repeated helpers and service objects. | Refactor the following situation: Split a large function. Preserve behavior and reduce complexity. | Extract helpers, keep public API stable, add/adjust tests, and avoid mixing business logic with I/O. | {
"checks": [
"behavior preserved",
"complexity reduced",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"python",
"creator-tools",
"persian-friendly"
] |
JT3K-001181 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | typescript | easy | Trace state across components | saas | A React app manages auth state in context, hooks, and a small API layer. | Repo: ml-pipeline. Domain: saas. React/Node codebase with components, hooks, and API clients. | Explain the code path for: Trace state across components. Point out likely components, hooks, or services. | Follow the UI event, state update, API call, and render path. Identify shared utilities and tests. | {
"checks": [
"UI path identified",
"state flow understood",
"files mapped"
]
} | [
"agentic",
"coding",
"repo_understanding",
"typescript",
"saas",
"persian-friendly"
] |
JT3K-000530 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | python | hard | Handle empty payloads | ecommerce | A webhook handler crashes when the JSON body is empty. Make it resilient and return a proper error. | Repo: cms-platform. Domain: ecommerce. Python service uses Pydantic models, DB repositories, and unit tests. | Patch the bug described here: Handle empty payloads. Return a minimal safe fix and mention any tests to run. | Add input validation, preserve backward-compatible behavior, and include a regression test for the broken edge case. | {
"checks": [
"bug removed",
"edge case handled",
"regression test suggested"
]
} | [
"agentic",
"coding",
"bug_fix",
"python",
"ecommerce",
"persian-friendly"
] |
JT3K-000849 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | python | medium | Coordinate verification | healthtech | Describe a tool sequence that verifies lint, unit tests, and type checks. | Repo: cms-platform. Domain: healthtech. Agentic coding workflow with file reads, tests, and patches. | Create a tool-use plan for: Coordinate verification. Include the ideal sequence of read, edit, test, and verify actions. | Read the relevant file set, inspect failure output, patch the narrowest surface, rerun targeted tests, then broaden checks. | {
"checks": [
"tool order sensible",
"minimal edit strategy",
"verification included"
]
} | [
"agentic",
"coding",
"tool_use",
"python",
"healthtech",
"persian-friendly"
] |
JT3K-002871 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | python | medium | Diagnose a race condition | developer-tools | Two concurrent requests occasionally overwrite each other in a cache-backed flow. | Repo: auth-service. Domain: developer-tools. Python service with logs, stack traces, and tests. | Diagnose this failure: Diagnose a race condition. Provide the most likely cause and the verification steps. | Read the stack trace, identify the failing boundary, isolate shared state or missing key paths, then add a regression test. | {
"checks": [
"root cause",
"debug steps",
"verification plan"
]
} | [
"agentic",
"coding",
"debug_trace",
"python",
"developer-tools",
"persian-friendly"
] |
JT3K-000495 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | python | medium | Define response shapes | edtech | Design consistent API responses for success, validation errors, and server errors. | Repo: scheduler. Domain: edtech. Python backend exposing JSON APIs. | Design the API/contract for: Define response shapes. Define inputs, outputs, errors, and extensibility points. | Use explicit request/response schemas, stable error shapes, and version-friendly naming. | {
"checks": [
"clear contract",
"consistent errors",
"future-proof design"
]
} | [
"agentic",
"coding",
"api_design",
"python",
"edtech",
"persian-friendly"
] |
JT3K-002322 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | python | medium | Split a large function | ecommerce | Refactor a 120-line data transformation function into small testable helpers. | Repo: dashboard-web. Domain: ecommerce. Python codebase with repeated helpers and service objects. | Refactor the following situation: Split a large function. Preserve behavior and reduce complexity. | Extract helpers, keep public API stable, add/adjust tests, and avoid mixing business logic with I/O. | {
"checks": [
"behavior preserved",
"complexity reduced",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"python",
"ecommerce",
"persian-friendly"
] |
JT3K-001583 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | python | easy | Define response shapes | developer-tools | Design consistent API responses for success, validation errors, and server errors. | Repo: cms-platform. Domain: developer-tools. Python backend exposing JSON APIs. | Design the API/contract for: Define response shapes. Define inputs, outputs, errors, and extensibility points. | Use explicit request/response schemas, stable error shapes, and version-friendly naming. | {
"checks": [
"clear contract",
"consistent errors",
"future-proof design"
]
} | [
"agentic",
"coding",
"api_design",
"python",
"developer-tools",
"persian-friendly"
] |
JT3K-000566 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | python | easy | Review a cache helper | edtech | A cache wrapper forgets to namespace keys and can collide across tenants. | Repo: chat-agent. Domain: edtech. Python backend with API handlers and background workers. | Review the code for: Review a cache helper. Call out risks and give a practical improvement plan. | Flag correctness, performance, maintainability, and security concerns. Recommend the smallest safe refactor. | {
"checks": [
"risk identified",
"actionable fix",
"production awareness"
]
} | [
"agentic",
"coding",
"code_review",
"python",
"edtech",
"persian-friendly"
] |
JT3K-002992 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | python | hard | Find hidden coupling | fintech | Inspect a Python package with utils, handlers, and workers; explain how retry logic affects job processing. | Repo: payments-api. Domain: fintech. Python service with app/, services/, repositories/, tests/. | Explain how this codebase handles the task: Find hidden coupling. Identify the files and modules most likely involved. | 1. Start at the route/controller.
2. Follow service layer calls.
3. Check repository and schema modules.
4. Verify tests that cover the flow. | {
"checks": [
"correct entry point",
"correct data flow",
"relevant files identified"
]
} | [
"agentic",
"coding",
"repo_understanding",
"python",
"fintech",
"persian-friendly"
] |
JT3K-001994 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | python | medium | Improve readability | developer-tools | Rename ambiguous variables and simplify nested conditionals in a config loader. | Repo: dashboard-web. Domain: developer-tools. Python codebase with repeated helpers and service objects. | Refactor the following situation: Improve readability. Preserve behavior and reduce complexity. | Extract helpers, keep public API stable, add/adjust tests, and avoid mixing business logic with I/O. | {
"checks": [
"behavior preserved",
"complexity reduced",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"python",
"developer-tools",
"persian-friendly"
] |
JT3K-000229 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | sql | easy | Review a reporting query | infra | The query is correct but slow due to an unbounded scan and unnecessary subquery. | Repo: mobile-sdk. Domain: infra. SQL reporting and ETL jobs. | Review the SQL for: Review a reporting query. Identify correctness and performance risks. | Flag full scans, unnecessary CTEs, non-sargable filters, and inconsistent joins. | {
"checks": [
"performance risk",
"logic risk",
"clear recommendation"
]
} | [
"agentic",
"coding",
"code_review",
"sql",
"infra",
"persian-friendly"
] |
JT3K-000883 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | python | medium | Split a large function | developer-tools | Refactor a 120-line data transformation function into small testable helpers. | Repo: ml-pipeline. Domain: developer-tools. Python codebase with repeated helpers and service objects. | Refactor the following situation: Split a large function. Preserve behavior and reduce complexity. | Extract helpers, keep public API stable, add/adjust tests, and avoid mixing business logic with I/O. | {
"checks": [
"behavior preserved",
"complexity reduced",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"python",
"developer-tools",
"persian-friendly"
] |
JT3K-001365 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | debug_trace | sql | hard | Trace missing rows | developer-tools | A dashboard shows missing records after a timezone conversion. | Repo: scheduler. Domain: developer-tools. SQL pipeline and dashboard queries. | Trace the data issue: Trace missing rows. Explain likely cause and how to verify the fix. | Check timezone conversion, join cardinality, and filters that remove expected rows. | {
"checks": [
"root cause",
"data verification",
"metric consistency"
]
} | [
"agentic",
"coding",
"debug_trace",
"sql",
"developer-tools",
"persian-friendly"
] |
JT3K-002842 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | python | medium | Sequence tool calls | creator-tools | Construct a tool-use plan for fixing an import error across multiple files. | Repo: payments-api. Domain: creator-tools. Agentic coding workflow with file reads, tests, and patches. | Create a tool-use plan for: Sequence tool calls. Include the ideal sequence of read, edit, test, and verify actions. | Read the relevant file set, inspect failure output, patch the narrowest surface, rerun targeted tests, then broaden checks. | {
"checks": [
"tool order sensible",
"minimal edit strategy",
"verification included"
]
} | [
"agentic",
"coding",
"tool_use",
"python",
"creator-tools",
"persian-friendly"
] |
JT3K-000967 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | sql | easy | Fix duplicate aggregation | developer-tools | A query double-counts rows after joining two one-to-many tables. | Repo: payments-api. Domain: developer-tools. SQL analytics pipeline with reporting queries. | Fix the query issue: Fix duplicate aggregation. Explain the bug and provide the corrected pattern. | Deduplicate before aggregating, use correct grain, and be careful with time boundaries. | {
"checks": [
"correct grain",
"no double count",
"boundary handling"
]
} | [
"agentic",
"coding",
"bug_fix",
"sql",
"developer-tools",
"persian-friendly"
] |
JT3K-000710 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | sql | hard | Simplify a report query | healthtech | Refactor a deeply nested CTE chain for readability. | Repo: scheduler. Domain: healthtech. SQL queries with layered CTEs. | Refactor the query for: Simplify a report query. Make it easier to read without changing results. | Reduce nested CTE depth, standardize aliases, and keep one clear grain per step. | {
"checks": [
"readability",
"stable results",
"clear grain"
]
} | [
"agentic",
"coding",
"refactor",
"sql",
"healthtech",
"persian-friendly"
] |
JT3K-002415 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | typescript | easy | Trace state across components | infra | A React app manages auth state in context, hooks, and a small API layer. | Repo: chat-agent. Domain: infra. React/Node codebase with components, hooks, and API clients. | Explain the code path for: Trace state across components. Point out likely components, hooks, or services. | Follow the UI event, state update, API call, and render path. Identify shared utilities and tests. | {
"checks": [
"UI path identified",
"state flow understood",
"files mapped"
]
} | [
"agentic",
"coding",
"repo_understanding",
"typescript",
"infra",
"persian-friendly"
] |
JT3K-000461 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | python | medium | Define response shapes | ecommerce | Design consistent API responses for success, validation errors, and server errors. | Repo: auth-service. Domain: ecommerce. Python backend exposing JSON APIs. | Design the API/contract for: Define response shapes. Define inputs, outputs, errors, and extensibility points. | Use explicit request/response schemas, stable error shapes, and version-friendly naming. | {
"checks": [
"clear contract",
"consistent errors",
"future-proof design"
]
} | [
"agentic",
"coding",
"api_design",
"python",
"ecommerce",
"persian-friendly"
] |
JT3K-002395 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tdd | python | hard | Write tests before implementation | ecommerce | Create unit tests for a discount calculator covering edge cases and rounding. | Repo: payments-api. Domain: ecommerce. Python package with pytest and typed functions. | Write a test-first plan for: Write tests before implementation. Include the key test cases before implementation. | Cover happy path, invalid input, boundaries, and failure modes. Keep tests deterministic and small. | {
"checks": [
"edge cases covered",
"test names clear",
"deterministic behavior"
]
} | [
"agentic",
"coding",
"tdd",
"python",
"ecommerce",
"persian-friendly"
] |
JT3K-000901 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | javascript | medium | Simplify reducer logic | edtech | Reduce branching in a Redux reducer without changing behavior. | Repo: scheduler. Domain: edtech. React components and shared logic in a frontend repo. | Refactor the following: Simplify reducer logic. Reduce duplication and keep the public interface stable. | Extract a hook or utility, preserve props and return shape, and add tests around behavior. | {
"checks": [
"duplication removed",
"interface stable",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"javascript",
"edtech",
"persian-friendly"
] |
JT3K-002013 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | javascript | easy | Simplify reducer logic | healthtech | Reduce branching in a Redux reducer without changing behavior. | Repo: analytics-core. Domain: healthtech. React components and shared logic in a frontend repo. | Refactor the following: Simplify reducer logic. Reduce duplication and keep the public interface stable. | Extract a hook or utility, preserve props and return shape, and add tests around behavior. | {
"checks": [
"duplication removed",
"interface stable",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"javascript",
"healthtech",
"persian-friendly"
] |
JT3K-002542 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | python | hard | Plan rate limiting | developer-tools | Add a rate limiter design that can scale across multiple workers. | Repo: ecommerce-backend. Domain: developer-tools. Python backend exposing JSON APIs. | Design the API/contract for: Plan rate limiting. Define inputs, outputs, errors, and extensibility points. | Use explicit request/response schemas, stable error shapes, and version-friendly naming. | {
"checks": [
"clear contract",
"consistent errors",
"future-proof design"
]
} | [
"agentic",
"coding",
"api_design",
"python",
"developer-tools",
"persian-friendly"
] |
JT3K-000446 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | typescript | medium | Extract reusable hook | ecommerce | Refactor repeated fetch logic into a custom React hook. | Repo: ecommerce-backend. Domain: ecommerce. React components and shared logic in a frontend repo. | Refactor the following: Extract reusable hook. Reduce duplication and keep the public interface stable. | Extract a hook or utility, preserve props and return shape, and add tests around behavior. | {
"checks": [
"duplication removed",
"interface stable",
"tests updated"
]
} | [
"agentic",
"coding",
"refactor",
"typescript",
"ecommerce",
"persian-friendly"
] |
JT3K-000805 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | typescript | medium | Review an API client | saas | The client mixes transport errors and business errors in one catch block. | Repo: dashboard-web. Domain: saas. Frontend app with shared utilities and API wrappers. | Review the implementation for: Review an API client. Comment on correctness, UX, and maintainability. | Look for async race conditions, unnecessary re-renders, error handling gaps, and accessibility issues. | {
"checks": [
"quality issues found",
"practical suggestions",
"frontend concerns"
]
} | [
"agentic",
"coding",
"code_review",
"typescript",
"saas",
"persian-friendly"
] |
JT3K-002066 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | python | medium | Design a service interface | edtech | Propose a clean Python interface for a notification service supporting email and SMS. | Repo: chat-agent. Domain: edtech. Python backend exposing JSON APIs. | Design the API/contract for: Design a service interface. Define inputs, outputs, errors, and extensibility points. | Use explicit request/response schemas, stable error shapes, and version-friendly naming. | {
"checks": [
"clear contract",
"consistent errors",
"future-proof design"
]
} | [
"agentic",
"coding",
"api_design",
"python",
"edtech",
"persian-friendly"
] |
JT3K-000206 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | javascript | easy | Review an API client | ecommerce | The client mixes transport errors and business errors in one catch block. | Repo: dashboard-web. Domain: ecommerce. Frontend app with shared utilities and API wrappers. | Review the implementation for: Review an API client. Comment on correctness, UX, and maintainability. | Look for async race conditions, unnecessary re-renders, error handling gaps, and accessibility issues. | {
"checks": [
"quality issues found",
"practical suggestions",
"frontend concerns"
]
} | [
"agentic",
"coding",
"code_review",
"javascript",
"ecommerce",
"persian-friendly"
] |
JT3K-001131 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | python | medium | Define response shapes | fintech | Design consistent API responses for success, validation errors, and server errors. | Repo: ecommerce-backend. Domain: fintech. Python backend exposing JSON APIs. | Design the API/contract for: Define response shapes. Define inputs, outputs, errors, and extensibility points. | Use explicit request/response schemas, stable error shapes, and version-friendly naming. | {
"checks": [
"clear contract",
"consistent errors",
"future-proof design"
]
} | [
"agentic",
"coding",
"api_design",
"python",
"fintech",
"persian-friendly"
] |
JT3K-001791 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | sql | hard | Plan migration checks | ecommerce | Inspect tables, compare counts, run a diff query, and validate migration impact. | Repo: ecommerce-backend. Domain: ecommerce. Agent workflow over SQL files and validation queries. | Create a tool-use plan for: Plan migration checks. Read schema, inspect query, run checks, and validate output. | Inspect schema first, isolate the grain, run a comparison query, then verify counts after the patch. | {
"checks": [
"schema first",
"comparison query",
"verification"
]
} | [
"agentic",
"coding",
"tool_use",
"sql",
"ecommerce",
"persian-friendly"
] |
JT3K-002549 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | python | medium | Review a cache helper | creator-tools | A cache wrapper forgets to namespace keys and can collide across tenants. | Repo: dashboard-web. Domain: creator-tools. Python backend with API handlers and background workers. | Review the code for: Review a cache helper. Call out risks and give a practical improvement plan. | Flag correctness, performance, maintainability, and security concerns. Recommend the smallest safe refactor. | {
"checks": [
"risk identified",
"actionable fix",
"production awareness"
]
} | [
"agentic",
"coding",
"code_review",
"python",
"creator-tools",
"persian-friendly"
] |
JT3K-002520 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | javascript | hard | Locate data fetching boundaries | creator-tools | A Next.js repo separates server actions, client components, and shared utilities. | Repo: chat-agent. Domain: creator-tools. React/Node codebase with components, hooks, and API clients. | Explain the code path for: Locate data fetching boundaries. Point out likely components, hooks, or services. | Follow the UI event, state update, API call, and render path. Identify shared utilities and tests. | {
"checks": [
"UI path identified",
"state flow understood",
"files mapped"
]
} | [
"agentic",
"coding",
"repo_understanding",
"javascript",
"creator-tools",
"persian-friendly"
] |
JT3K-000715 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | repo_understanding | typescript | medium | Trace state across components | fintech | A React app manages auth state in context, hooks, and a small API layer. | Repo: payments-api. Domain: fintech. React/Node codebase with components, hooks, and API clients. | Explain the code path for: Trace state across components. Point out likely components, hooks, or services. | Follow the UI event, state update, API call, and render path. Identify shared utilities and tests. | {
"checks": [
"UI path identified",
"state flow understood",
"files mapped"
]
} | [
"agentic",
"coding",
"repo_understanding",
"typescript",
"fintech",
"persian-friendly"
] |
JT3K-001668 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | javascript | medium | Guard null props | developer-tools | A component crashes when optional props are missing. | Repo: chat-agent. Domain: developer-tools. React/Next.js application with hooks and server/client boundaries. | Fix this bug: Guard null props. Keep the change minimal and safe. | Guard missing values, avoid stale state, and keep server/client-only logic in the right layer. | {
"checks": [
"bug fixed",
"safe boundary handling",
"regression test suggested"
]
} | [
"agentic",
"coding",
"bug_fix",
"javascript",
"developer-tools",
"persian-friendly"
] |
JT3K-001203 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | tool_use | bash | hard | Plan release verification | edtech | Run lint, unit tests, packaging, and smoke checks before publishing. | Repo: ecommerce-backend. Domain: edtech. Release and verification scripts in bash. | Build a tool-use plan for: Plan release verification. Include commands to inspect, run, and validate. | List the exact commands in order: inspect files, run targeted checks, then package and smoke test. | {
"checks": [
"command order",
"verification",
"safe execution"
]
} | [
"agentic",
"coding",
"tool_use",
"bash",
"edtech",
"persian-friendly"
] |
JT3K-000664 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | api_design | typescript | hard | Design client methods | fintech | Design a TypeScript client for search, pagination, and retries. | Repo: ml-pipeline. Domain: fintech. TypeScript client or Node API layer. | Design a TypeScript API for: Design client methods. Define method names, inputs, and return types. | Prefer explicit types, typed errors, pagination support, and composable options objects. | {
"checks": [
"typed contract",
"clear ergonomics",
"extensibility"
]
} | [
"agentic",
"coding",
"api_design",
"typescript",
"fintech",
"persian-friendly"
] |
JT3K-000041 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | bug_fix | javascript | easy | Guard null props | developer-tools | A component crashes when optional props are missing. | Repo: payments-api. Domain: developer-tools. React/Next.js application with hooks and server/client boundaries. | Fix this bug: Guard null props. Keep the change minimal and safe. | Guard missing values, avoid stale state, and keep server/client-only logic in the right layer. | {
"checks": [
"bug fixed",
"safe boundary handling",
"regression test suggested"
]
} | [
"agentic",
"coding",
"bug_fix",
"javascript",
"developer-tools",
"persian-friendly"
] |
JT3K-000529 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | refactor | sql | easy | Simplify a report query | infra | Refactor a deeply nested CTE chain for readability. | Repo: cms-platform. Domain: infra. SQL queries with layered CTEs. | Refactor the query for: Simplify a report query. Make it easier to read without changing results. | Reduce nested CTE depth, standardize aliases, and keep one clear grain per step. | {
"checks": [
"readability",
"stable results",
"clear grain"
]
} | [
"agentic",
"coding",
"refactor",
"sql",
"infra",
"persian-friendly"
] |
JT3K-000441 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | javascript | medium | Review an API client | fintech | The client mixes transport errors and business errors in one catch block. | Repo: ecommerce-backend. Domain: fintech. Frontend app with shared utilities and API wrappers. | Review the implementation for: Review an API client. Comment on correctness, UX, and maintainability. | Look for async race conditions, unnecessary re-renders, error handling gaps, and accessibility issues. | {
"checks": [
"quality issues found",
"practical suggestions",
"frontend concerns"
]
} | [
"agentic",
"coding",
"code_review",
"javascript",
"fintech",
"persian-friendly"
] |
JT3K-001748 | JumpTrace-3K | JumpTrace-3K — Agentic Coding Traces for Modern Software Engineering | code_review | typescript | medium | Review a memoized component | saas | An over-memoized component hides actual prop changes. | Repo: mobile-sdk. Domain: saas. Frontend app with shared utilities and API wrappers. | Review the implementation for: Review a memoized component. Comment on correctness, UX, and maintainability. | Look for async race conditions, unnecessary re-renders, error handling gaps, and accessibility issues. | {
"checks": [
"quality issues found",
"practical suggestions",
"frontend concerns"
]
} | [
"agentic",
"coding",
"code_review",
"typescript",
"saas",
"persian-friendly"
] |
🚀 JumpForge-3K
Agentic Coding Traces for Modern Software Engineering
جامپفورج-۳کی | مجموعه دادهای برای عاملهای کدنویس و مهندسی نرمافزار مدرن
Overview
JumpForge-3K is a synthetic dataset designed for training and evaluating agentic coding systems.
The dataset focuses on realistic software engineering workflows, including repository understanding, debugging, code review, test-driven development, tool-use planning, and multi-file reasoning.
Built by JumpLander, this dataset serves as a foundation for experimentation in agentic AI and coding assistants.
Key Capabilities
- Repository understanding
- Multi-file reasoning
- Bug fixing workflows
- Code review tasks
- Test-first development
- Refactoring scenarios
- API design reasoning
- Tool-use planning
Dataset Information
| Property | Value |
|---|---|
| Dataset Name | JumpForge-3K |
| Total Samples | 3,000 |
| Train Split | 2,700 |
| Validation Split | 300 |
| Languages | English, Persian |
| License | CC BY 4.0 |
| Format | JSONL |
Task Categories
| Task Type | Description |
|---|---|
| Repository Understanding | Analyze project structure and architecture |
| Bug Fixing | Identify and resolve software defects |
| Code Review | Review and improve existing code |
| Test-Driven Development | Design implementations from tests |
| Refactoring | Improve maintainability and structure |
| API Design | Create or improve API interfaces |
| Debugging Traces | Reason through failure scenarios |
| Tool Use Planning | Plan coding-agent tool execution |
Dataset Schema
Each JSONL record contains the following fields:
| Field | Type | Description |
|---|---|---|
id |
string | Unique sample identifier |
dataset |
string | Dataset name |
brand |
string | Branding information |
task_type |
string | Task category |
language |
string | Programming language |
difficulty |
string | Difficulty level |
title |
string | Task title |
domain |
string | Domain or industry |
user_story |
string | User scenario |
repo_context |
string | Repository context |
instruction |
string | Agent instruction |
reference_solution |
string | Reference solution outline |
evaluation |
object | Evaluation criteria |
tags |
array | Metadata tags |
Example Record
{
"id": "JT3K-000722",
"dataset": "JumpForge-3K",
"brand": "JumpForge-3K",
"task_type": "tool_use",
"language": "python",
"difficulty": "easy",
"title": "Sequence tool calls",
"domain": "creator-tools",
"user_story": "Construct a tool-use plan for fixing an import error across multiple files.",
"repo_context": "Repo: ml-pipeline. Domain: creator-tools.",
"instruction": "Create a tool-use plan and define the optimal workflow.",
"reference_solution": "Inspect files, isolate failure source, patch minimally, run tests, verify results.",
"evaluation": {
"checks": [
"tool order sensible",
"minimal edit strategy",
"verification included"
]
},
"tags": [
"agentic",
"coding",
"tool_use",
"python"
]
}
Loading the Dataset
Install Dependencies
pip install datasets
Load Dataset
from datasets import load_dataset
dataset = load_dataset("jumplander/JumpForge-3K")
train_dataset = dataset["train"]
validation_dataset = dataset["validation"]
print(train_dataset[0]["title"])
Training Example (Unsloth)
from datasets import load_dataset
from unsloth import FastLanguageModel
model, tokenizer = FastLanguageModel.from_pretrained(
"unsloth/Qwen2.5-Coder-1.5B-Instruct",
load_in_4bit=True,
)
dataset = load_dataset(
"jumplander/JumpForge-3K",
split="train"
)
def format_example(example):
return {
"text": f"""### Instruction:
{example['instruction']}
### Repository Context:
{example['repo_context']}
### Solution:
{example['reference_solution']}"""
}
dataset = dataset.map(format_example)
Suggested Use Cases
| Use Case | Description |
|---|---|
| SFT Training | Fine-tuning coding assistants |
| Agent Research | Agent workflow experiments |
| Repository Reasoning | Multi-file reasoning benchmarks |
| Tool Use Studies | Tool-planning evaluation |
| DPO/RLHF Prototyping | Preference optimization research |
| Persian Coding Research | Persian-focused coding experiments |
Dataset Statistics
Languages
| Language | Approximate Count |
|---|---|
| English | 2,500+ |
| Persian | 500+ |
Difficulty Distribution
| Difficulty | Approximate Count |
|---|---|
| Easy | 1,000 |
| Medium | 1,500 |
| Hard | 500 |
Programming Languages
| Language | Approximate Count |
|---|---|
| Python | 2,000+ |
| JavaScript | 500+ |
| SQL | 300+ |
| TypeScript | 150+ |
| Bash | 50+ |
Notes
This dataset is synthetic and intended primarily for:
- Format prototyping
- Agent workflow experimentation
- Benchmark development
- Fine-tuning research
It should not be considered sufficient as the sole training source for production-grade coding models.
License
This dataset is distributed under the CC BY 4.0 License.
Attribution is required when redistributing or creating derivative works.
Citation
@misc{jumpforge3k,
title={JumpForge-3K: Agentic Coding Traces for Modern Software Engineering},
author={JumpLander Team},
year={2026},
publisher={Hugging Face}
}
🚀 Built by JumpLander
Official Website: jumplander.org
Hugging Face Dataset: JumpForge-3K
About the Brand: This dataset and the associated "Trace" format were created by JumpLander. The organization focuses on Agentic Coding Traces and modern software engineering workflows. The logo is designed to represent "JumpLander" and is associated with the official domain and Hugging Face organization page.
- Downloads last month
- 85