用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/taracodlabs/aiden --skill opencode命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | opencode |
| description | Delegate coding to OpenCode CLI (multi-LLM open-source coding agent) |
| category | agent-bridge |
| version | 1.0.0 |
| origin | aiden |
| license | Apache-2.0 |
| tags | opencode, ai-coding, agent-bridge, open-source, multi-model, coding, delegation, claude, gpt |
Delegate coding tasks to OpenCode — an open-source AI coding CLI that supports multiple LLM providers (Anthropic, OpenAI, Gemini, local Ollama). Provides a terminal UI for interactive coding sessions.
# Install via npm
npm install -g opencode-ai
# Or install via the installer script
Invoke-WebRequest -Uri "https://opencode.ai/install" -UseBasicParsing | Invoke-Expression
# Verify
opencode --version
OpenCode reads from ~/.config/opencode/config.json:
$config = @{
providers = @{
anthropic = @{ apiKey = $env:ANTHROPIC_API_KEY }
openai = @{ apiKey = $env:OPENAI_API_KEY }
ollama = @{ baseUrl = "http://localhost:11434" }
}
model = "anthropic/claude-opus-4-5"
} | ConvertTo-Json -Depth 5
$configDir = "$env:USERPROFILE\.config\opencode"
New-Item -ItemType Directory -Force -Path $configDir | Out-Null
Set-Content -Path "$configDir\config.json" -Value $config
Set-Location "C:\Users\<you>\myproject"
opencode
# Opens terminal UI — type your task in the prompt
# Run task without TUI
opencode run "Add pagination to the GET /users endpoint"
# Run with a specific model
opencode run --model "openai/gpt-4o" "Refactor the auth middleware to handle OAuth2"
# Ensure Ollama is running with a code-capable model
# ollama pull qwen2.5-coder:7b
opencode run --model "ollama/qwen2.5-coder:7b" "Write a Python script to parse CSV files"
opencode run "Review and fix the error handling in" src/api/payments.ts
opencode run "Create a new TypeScript module at src/cache/redis.ts that wraps ioredis with:
- connect(), disconnect() methods
- get(key), set(key, value, ttlSeconds) methods
- Proper error handling and type safety"
"Use the local Qwen model to add tests to my utility functions"
→ Use step 5 with --model "ollama/qwen2.5-coder:7b" and ask it to generate tests for your utils file.
"Run an interactive coding session on my project"
→ Use step 3 — navigate to the project first, then run opencode to open the TUI.
"Refactor this module but use GPT-4o instead of Claude"
→ Use step 4 with --model "openai/gpt-4o".