An open-source agentic AI model specialized in terminal operations, code generation, and software engineering tasks. Based on Qwen3-8B and fine-tuned on curated agent datasets for shell commands and bug fixing.
An open-source AI agent model specifically trained for agentic software engineering tasks including terminal operations, shell command generation, and code debugging.
OpenThinker-Agent-v1-SFT is a specialized language model fine-tuned from Qwen3-8B on the OpenThoughts-Agent-v1-SFT dataset. This model excels at terminal-based tasks, shell command formatting, and software engineering workflows. It represents the supervised fine-tuning stage of the OpenThinker-Agent training pipeline.
- nl2bash: Synthetic shell command formatting tasks
- InferredBugs: Microsoft-curated bugs in C# and Java converted to tasks
1. **Terminal Operations**: Execute and format shell commands effectively
2. **Code Generation**: Generate code solutions for software engineering tasks
3. **Bug Detection**: Identify and fix bugs in codebases
4. **Command Formatting**: Structure shell commands with proper syntax
5. **Software Engineering Workflows**: Handle multi-step development tasks
When using this skill, follow these guidelines:
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "open-thoughts/OpenThinker-Agent-v1-SFT"
model = AutoModelForCausalLM.from_pretrained(model_name)
tokenizer = AutoTokenizer.from_pretrained(model_name)
prompt = "List all Python files modified in the last 24 hours"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_length=200)
command = tokenizer.decode(outputs[0], skip_special_tokens=True)
```
On Terminal-Bench 2.0 and SWE-Bench Verified:
This model can be integrated with OpenAI-compatible endpoints and used in tools that support custom model APIs. Configure your AI coding tool to point to an inference endpoint hosting this model for specialized agent capabilities.
Apache 2.0
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/openthinker-agent-v1-sft/raw