Token导航 LogoToken导航TokenDH.com
开发操作浏览器clawhub未标认证来源可访问clear审计通过

opencodeopencode 命令行

Agent Skill

opencode 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

70,995

周安装

2,988

GitHub Stars

3

下载量

24,860
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:opencode(opencode 命令行)
来源仓库:https://github.com/csuwl/opencode
安装命令:
openclaw skills install opencode
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install opencode

简介

opencode 是 AI 驱动的代码编辑器/IDE,提供 CLI/TUI 版本的 Cursor/Windsurf 功能。

  • 适用于 AI 辅助编码、代码重构与 GitHub 协作开发场景。
  • 支持多语言项目与智能补全建议。
  • 使用前需确认终端环境与依赖库完整性。
  • 建议查看原始 README 了解许可证与商业使用限制。

SKILL.md

name
opencode
description
OpenCode AI - AI-driven code editor/IDE (CLI/TUI version of Cursor/Windsurf). Use when: (1) AI-assisted coding tasks, (2) Code refactoring with AI, (3) GitHub PR review/fixes, (4) Multi-file edits requiring context, (5) Running AI agents on codebases. NOT for: simple one-line edits (use edit tool), reading files (use read tool).
metadata
openclaw
emoji
🤖
requires
bins

OpenCode AI - AI Code Editor

OpenCode is an AI-native code editor that runs in your terminal (CLI/TUI). Think Cursor/Windsurf but in the terminal.

Version: 1.3.9 | Platform: macOS Darwin x64

Prerequisites

OpenCode requires sysctl for architecture detection. Ensure /usr/sbin is in PATH:

export PATH="/usr/sbin:/usr/bin:/sbin:/bin:$PATH"
# Add to ~/.zshrc for permanence

When to Use

Use for: Complex refactoring, AI-assisted features, PR review/fixes, codebase exploration, multi-file edits, session-based coding ❌ Don't use for: Simple one-line edits (use edit tool), reading files (use read tool)


Core Commands

Quick Tasks (One-Shot)

# Run a single task
opencode run "Add input validation to the login form"
opencode run --dir ~/project "Refactor to use async/await"
opencode run -m anthropic/claude-sonnet-4 "Optimize queries"

# Attach files for context
opencode run -f src/auth.js -f src/db.js "Fix the auth bug"

# Continue previous session
opencode run --continue
opencode run --session abc123 --fork

# Share session (creates shareable link)
opencode run --share "Implement feature X"

# Model variant (reasoning effort)
opencode run --variant high "Solve this complex problem"

Key Options

OptionDescription
-m, --modelModel (provider/model, e.g. anthropic/claude-sonnet-4)
-c, --continueContinue last session
-s, --sessionContinue specific session
--forkFork session when continuing
--shareShare the session
-f, --fileAttach files to message
--agentUse specific agent
--dirDirectory to run in
--formatOutput format: default or json
--variantReasoning effort: high, max, minimal
--thinkingShow thinking blocks
--titleSet session title
--attachAttach to running server (e.g. http://localhost:4096)
--pureRun without external plugins
--commandRun a specific command (use message for args)
-p, --passwordBasic auth password for server mode

Interactive TUI

opencode              # Start in current directory
opencode ~/project    # Start in specific project

TUI Slash Commands

  • /sessions — Session selector (continue existing or create new)
  • /agents — Switch agent (see agents below)
  • /models — Model selector
  • /title — Change session title
  • /summary — Generate session summary
  • /compaction — Compact conversation history

Available Agents

AgentTypePurpose
planprimaryAnalyze & design (no code edits)
buildprimaryImplement & code
exploresubagentUnderstand codebase, read-only exploration
generalsubagentGeneral assistance
compactionprimaryCompress/summarize session context
summaryprimaryGenerate session summaries
titleprimaryGenerate session titles
memory-automationsubagentAutomated memory management
memory-consolidatesubagentConsolidate memory entries
⚠️ --agent flag in opencode run always falls back to default agent. Agent switching only works in TUI via /agents slash command.

Recommended Workflow: Plan → Build

  1. Select plan agent (/agents)
  2. Describe task → review/approve the plan
  3. Switch to build agent (/agents)
  4. Implement → iterate

Other Commands

# Providers & Auth
opencode providers              # Manage AI providers/credentials (alias: auth)
opencode providers login [url] # Login to a provider

# Models
opencode models                 # List all models
opencode models --verbose       # With cost info
opencode models --refresh       # Refresh cache

# Sessions
opencode session list            # List sessions
opencode export [sessionID]      # Export as JSON
opencode import <file>           # Import session

# GitHub
opencode pr 123                  # Checkout PR + run OpenCode
opencode github --help           # GitHub agent options

# MCP Servers
opencode mcp list                # List MCP servers
opencode mcp add                 # Add MCP server
opencode mcp auth [name]         # OAuth for MCP server

# Agents
opencode agent list              # List agents
opencode agent create            # Create custom agent

# Plugins
opencode plugin <module>        # Install plugin (alias: plug)

# Server Mode
opencode serve                   # Headless server
opencode web                     # Server + open browser

# ACP (Agent Client Protocol)
opencode acp                     # Start ACP server

# Attach to Remote
opencode attach <url>            # Attach to running instance

# Utilities
opencode stats                   # Token usage & costs
opencode debug                   # Debug/troubleshooting tools
opencode upgrade [target]       # Upgrade opencode
opencode uninstall               # Remove opencode
opencode db                      # Database tools

Integration with OpenClaw

You are the orchestrator. OpenCode is your worker.

When to Delegate

  • Multi-file refactoring
  • Complex feature implementation
  • PR review and fixes
  • Code exploration requiring sustained context

When to Do It Yourself

  • Simple one-line edits
  • Reading files
  • Quick commands

Pattern: Delegate via exec

# Simple task (foreground, wait for result)
opencode run "Add error handling to auth module"

# Complex task (background, check later)
# Use exec with background:true

# With file context
opencode run -f src/auth.js -f src/db.js "Fix the auth bug"

# Continue previous work
opencode run --continue

Multi-Agent Pattern

# Agent 1: Analyze
opencode run --session analyze "Explore codebase structure"
# Agent 2: Implement
opencode run --session implement "Implement feature based on analysis"
# Agent 3: Test
opencode run --session test "Write tests for the implementation"

Troubleshooting

ProblemSolution
sysctl not foundexport PATH="/usr/sbin:/usr/bin:/sbin:/bin:$PATH"
Failed to change directoryUse --version or run subcommand explicitly
Freezes/hangsCtrl+C to exit; use run mode for non-interactive tasks
Permission deniedchmod +w ./path/to/file

*Last updated: 2026-04-16 | OpenCode v1.3.9*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.6%
按下载量换算22,275

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills