Dataset Viewer (First 5GB)
Auto-converted to Parquet Duplicate
question_category
stringclasses
12 values
complexity_level
stringclasses
3 values
question
stringlengths
171
5.99k
agent_prompt
stringlengths
13
22.3k
skills_path
stringclasses
13 values
uuid
stringlengths
36
36
messages
listlengths
3
135
tools
listlengths
4
12
metadata
dict
enabled_tools
listlengths
0
4
hf_split
stringclasses
6 values
code_debugging
intermediate
I'm working on a React application that fetches user data from an API and displays it in a table. The data fetching works fine, but I'm experiencing a strange issue where the table rows are not updating properly when I apply filters. Sometimes old data persists even after filtering, and occasionally the entire table go...
## Problem Summary The UserTable component exhibits inconsistent rendering behavior where filtered table rows don't update properly, showing stale data or blank tables. This is caused by improper state management during the filtering process. ## Root Cause Analysis The primary issue stems from maintaining two separa...
/nemo_run/code/.skills/bash_skills
db9963be-65e1-5f3c-8308-9759f3147dbc
[ { "role": "system", "content": "You are opencode, an interactive CLI tool that helps users with software engineering tasks. Use the instructions below and the tools available to you to assist the user.\n\nIMPORTANT: Refuse to write code or explain code that may be used maliciously; even if the user claims i...
[ { "id": "invalid", "description": "Do not use", "inputSchema": { "jsonSchema": { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "tool": { "type": "string" }, "error": { "type...
{ "uuid": "1166172e-fa94-5b78-89f3-1278c40310e9" }
[ "bash", "todoread", "todowrite", "skill" ]
bash_only_tool_skills
code_explanation
advanced
I'm trying to understand how the React Fiber reconciliation algorithm works under the hood, specifically the phases and how it handles component updates. Can you explain the complete flow from when a component's state changes to when the DOM is actually updated, including the work loop, expiration times, and how it pri...
# React Fiber Reconciliation Algorithm Guide ## Problem Summary Explain the complete React Fiber reconciliation flow from state change to DOM update, covering work loop, expiration times, update prioritization, and double buffering mechanics that prevent UI tearing. ## Core Concepts to Address **Fiber Architecture**...
null
f0157018-8553-54d4-8754-8e7c678686ae
[ { "role": "system", "content": "You are opencode, an interactive CLI tool that helps users with software engineering tasks. Use the instructions below and the tools available to you to assist the user.\n\nIMPORTANT: Refuse to write code or explain code that may be used maliciously; even if the user claims i...
[ { "id": "invalid", "description": "Do not use", "inputSchema": { "jsonSchema": { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "tool": { "type": "string" }, "error": { "type...
{ "uuid": "125a2ed1-8453-59d9-b1c0-5560bab9eaf9" }
[]
general
code_explanation
advanced
I'm trying to understand how the Redux Toolkit's createAsyncThunk function works under the hood, particularly the middleware chain and how it handles pending/fulfilled/rejected states. Can you walk me through the implementation details of how it automatically dispatches these lifecycle actions and how the thunkAPI obje...
# Redux Toolkit createAsyncThunk Implementation Guide ## Problem Summary Understanding how Redux Toolkit's `createAsyncThunk` manages async operations through middleware, automatically dispatches lifecycle actions (pending/fulfilled/rejected), populates the thunkAPI object, and maintains TypeScript type safety across ...
/skills/code_explanation/
bdcde86a-0817-5b4a-8336-57111438833b
[ { "role": "system", "content": "You are opencode, an interactive CLI tool that helps users with software engineering tasks. Use the instructions below and the tools available to you to assist the user.\n\nIMPORTANT: Refuse to write code or explain code that may be used maliciously; even if the user claims i...
[ { "id": "invalid", "description": "Do not use", "inputSchema": { "jsonSchema": { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "tool": { "type": "string" }, "error": { "type...
{ "uuid": "5d0bb2c4-a42e-5bc4-9108-8224e34db1bd" }
[]
agent_skills
code_debugging
beginner
"I'm getting an \"IndexError: list index out of range\" when trying to access the third element in m(...TRUNCATED)
"# Core Instructions\n\nYou are a coding agent that uses ONLY the `bash` tool to accomplish all task(...TRUNCATED)
null
c7fe0964-c275-58c4-a854-7beae35bd4b6
[{"role":"system","content":"You are opencode, an interactive CLI tool that helps users with softwar(...TRUNCATED)
[{"id":"invalid","description":"Do not use","inputSchema":{"jsonSchema":{"$schema":"https://json-sch(...TRUNCATED)
{ "uuid": "bcab6bab-5286-549d-afd1-771a46c7e9d5" }
[ "bash", "todoread", "todowrite", "skill" ]
bash_only_tool
reasoning
beginner
"I'm building a simple calculator app and I'm trying to decide between using integers or floating-po(...TRUNCATED)
null
/nemo_run/code/.skills/bash_skills
0661fbb4-7e50-5dbf-a96c-8d6e67b8c234
[{"role":"system","content":"You are opencode, an interactive CLI tool that helps users with softwar(...TRUNCATED)
[{"id":"invalid","description":"Do not use","inputSchema":{"jsonSchema":{"$schema":"https://json-sch(...TRUNCATED)
{ "uuid": "5838fe1b-088f-5cee-99fd-4078e9df6372" }
[ "bash", "todoread", "todowrite", "skill" ]
bash_only_tool_skills
code_generation
beginner
"I'm building a simple calculator app and need help creating a function that takes two numbers and a(...TRUNCATED)
null
/skills/code_generation/
b72dfb43-033e-5d61-8c0b-cfdf6ce53594
[{"role":"system","content":"You are opencode, an interactive CLI tool that helps users with softwar(...TRUNCATED)
[{"id":"invalid","description":"Do not use","inputSchema":{"jsonSchema":{"$schema":"https://json-sch(...TRUNCATED)
{ "uuid": "6a29b9be-e92c-5b9a-ba3f-5af4e67c54ac" }
[]
agent_skills_question_tool
code_refactoring
beginner
"I have this Python function that calculates the area of a rectangle, but I feel like the code could(...TRUNCATED)
bash_agent.md
null
58b69046-ecdb-5b94-ab48-90dc7d4ea3f9
[{"role":"system","content":"You are opencode, an interactive CLI tool that helps users with softwar(...TRUNCATED)
[{"id":"invalid","description":"Do not use","inputSchema":{"jsonSchema":{"$schema":"https://json-sch(...TRUNCATED)
{ "uuid": "8f24a78d-a875-5d63-8e07-bc9745ad84de" }
[ "bash", "todoread", "todowrite", "skill" ]
bash_only_tool
planning_and_task_structuring
intermediate
"I'm building a task management system for a team of developers and need help structuring the projec(...TRUNCATED)
null
null
76d31124-330c-5d99-81ee-c6a61da507b9
[{"role":"system","content":"You are opencode, an interactive CLI tool that helps users with softwar(...TRUNCATED)
[{"id":"invalid","description":"Do not use","inputSchema":{"jsonSchema":{"$schema":"https://json-sch(...TRUNCATED)
{ "uuid": "b9ae9447-70a5-5f4e-8458-06818b793534" }
[]
question_tool
code_debugging
intermediate
"I'm working on a Python web scraper that uses BeautifulSoup to extract product information from an (...TRUNCATED)
null
/nemo_run/code/.skills/bash_skills
9ba452ca-a678-531f-99aa-0418b4816bed
[{"role":"system","content":"You are opencode, an interactive CLI tool that helps users with softwar(...TRUNCATED)
[{"id":"invalid","description":"Do not use","inputSchema":{"jsonSchema":{"$schema":"https://json-sch(...TRUNCATED)
{ "uuid": "0604cc62-56ef-5bad-be17-792a5dac3899" }
[ "bash", "todoread", "todowrite", "skill" ]
bash_only_tool_skills
unit_test_generation
beginner
"I'm learning Python and trying to write unit tests for a simple calculator function that adds two n(...TRUNCATED)
null
/skills/unit_test_generation/
e8116726-7779-5f61-91d3-77b780124aa9
[{"role":"system","content":"You are opencode, an interactive CLI tool that helps users with softwar(...TRUNCATED)
[{"id":"invalid","description":"Do not use","inputSchema":{"jsonSchema":{"$schema":"https://json-sch(...TRUNCATED)
{ "uuid": "d079cbd5-f03e-56c2-9aa1-c83dd8b64036" }
[]
agent_skills
End of preview. Expand in Data Studio

Base dataset: nvidia/Nemotron-SFT-OpenCode-v1

Exact-deduplication + Filtered for the following categories:

  • code_explanation
  • code_generation
  • planning_and_task_structuring
  • reasoning
  • code_debugging
  • advice
  • brainstorming
  • code_review
  • unit_test_generation
  • summarization
  • code_refactoring
  • rewriting_and_editing
Downloads last month
49