Content
# OpenCode Maximum Power Setup (2026)
This repository contains the complete OpenCode configuration with MCPs and modern CLI tools for maximum productivity in 2026.
## Features
### MCP Servers (12 configured)
- **Official**: fetch, filesystem, git, memory, sequential-thinking, time, github, brave-search, puppeteer, postgres
- **Community**: tavily-search, context7
### Modern CLI Tools
- eza (ls replacement)
- bat (cat replacement)
- ripgrep (grep replacement)
- fd (find replacement)
- fzf (fuzzy search)
- zoxide (cd replacement)
- lazygit (git TUI)
- delta (git diff)
- atuin (shell history)
- httpie (curl replacement)
- tldr (man replacement)
### Skills
- **developer**: Full workflow with MCPs and modern tools
- **research**: Documentation lookup and web search
- **code-review**: Git operations and code analysis
## Quick Start
### 1. Clone and use the configs
```bash
# Clone this repo
git clone https://github.com/cetincurio/opencode-setup.git
cd opencode-setup
# Copy configs to your OpenCode config directory
cp opencode.json ~/.config/opencode/
cp AGENTS.md ~/.config/opencode/
cp -r skills/ ~/.config/opencode/
cp -r docs/ ~/.config/opencode/
```
### 2. Install CLI Tools
```bash
# eza
cargo install eza
# bat
cargo install bat
# ripgrep
cargo install ripgrep
# fd
cargo install fd-find
# fzf
cargo install fzf
# zoxide
cargo install zoxide
# lazygit
curl -sL https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_xxx_Linux_x86_64.tar.gz | tar xz -C ~/.local/bin
# delta
cargo install git-delta
# atuin
curl -sSf https://atuin.sh/install | sh
# httpie
pip install httpie
# tldr
npm install -g tldr
```
### 3. Configure Git
```bash
# Use delta as git pager
git config --global core.pager delta
# Use delta for diff
git config --global diff.colorMoved default
```
## Files
| File | Description |
|------|-------------|
| `opencode.json` | MCP server configurations |
| `AGENTS.md` | Global agent instructions |
| `skills/developer/SKILL.md` | Developer workflow skill |
| `skills/research/SKILL.md` | Research skill |
| `skills/code-review/SKILL.md` | Code review skill |
| `docs/SETUP.md` | Setup documentation |
| `docs/MCPs.md` | MCP configuration guide |
| `docs/CLI-TOOLS.md` | Modern CLI tools guide |
| `docs/SKILLS.md` | Skills documentation |
## MCPs Overview
```json
{
"mcp": {
"fetch": { "enabled": true },
"tavily-search": { "enabled": true },
"brave-search": { "enabled": true },
"context7": { "enabled": true },
"sequential-thinking": { "enabled": true },
"filesystem": { "enabled": true },
"git": { "enabled": true },
"memory": { "enabled": true },
"time": { "enabled": true },
"github": { "enabled": true }
}
}
```
## Usage
```bash
# List available skills
opencode run "list available skills"
# Load developer skill
opencode run "load developer skill"
# Use MCPs
opencode run "use context7 to look up react documentation"
opencode run "use tavily-search to find X"
```
## License
MIT
---
**Created**: 2026-04-01
**For**: OpenCode with MCP configuration
Connection Info
You Might Also Like
Train-in-Silence
The first Task-Aware MCP server and automated VRAM calculator for LLM...
stacklit
108,000 lines of code. 4,000 tokens of index. One command makes any repo...
AppClaw
AI-powered mobile automation agent — describe what you want in plain...
pdf-mcp
Production-ready MCP server for PDF processing with intelligent caching....
kotadb
Local-only code intelligence API for AI developer workflows (Bun +...
gemini-api-docs-mcp
A remote HTTP MCP server for searching Google Gemini API documentation.