---
title: "OpenCode is Best for Me"
url: https://daily.dev/posts/opencode-is-best-for-me-tqjjmofl7
source_url: https://blog.devgenius.io/opencode-is-best-for-me-5ea2e1fb4854
type: article
source: "Dev Genius"
published: 2026-08-09T12:04:28.103Z
updated: 2026-08-09T12:04:55.550Z
tags: ["ai-agents", "ai-coding", "opencode", "openrouter"]
reading_time: 4
upvotes: 1
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# OpenCode is Best for Me

**[Dev Genius](https://daily.dev/sources/devgenius)** · 4 min read · 1 upvotes · 0 comments

## Summary

A personal account of why OpenCode in the terminal became the author's preferred AI coding tool on Arch Linux. Key reasons include no vendor lock-in (any model via a config change), the free `big-pickle` model for daily work, and two workflow conventions — AGENTS.md for per-project context and SKILL.md for reusable procedures stored at `.opencode/skills/<slug>/SKILL.md`. OpenRouter consolidates billing across providers. The setup covers GitHub repo management, writing, and light Python/Bash scripting.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://blog.devgenius.io/opencode-is-best-for-me-5ea2e1fb4854>

## Questions this post answers

### How does OpenCode's SKILL.md work and where do I put the file?

A skill in OpenCode lives at `.opencode/skills/<slug>/SKILL.md`. The file uses YAML frontmatter at the top — requiring at minimum a `name` field (lowercase-hyphenated, matching the folder) and a `description` that explains what the skill does and when to trigger it. OpenCode scans for `**/SKILL.md` up to the git worktree and loads the full body only when a task matches, turning a multi-step procedure into a single request.

_Developers building repeatable OpenCode workflows track patterns like this on daily.dev._

### What is the big-pickle model in OpenCode and is it free?

big-pickle is a free model available through OpenCode, noted for being consistently fast compared to other free options like Nvidia Nemotron Ultra, which can be slow at times. It handles complex logic spread across large codebases — hundreds of Python, Bash, and other files — reliably enough for daily use without incurring API costs.

_Those evaluating free models for terminal-based AI coding find comparisons like this on daily.dev._

---

Tags: [#ai-agents](https://daily.dev/tags/ai-agents), [#ai-coding](https://daily.dev/tags/ai-coding), [#opencode](https://daily.dev/tags/opencode), [#openrouter](https://daily.dev/tags/openrouter)

[View this post on daily.dev](https://daily.dev/posts/opencode-is-best-for-me-tqjjmofl7)
