Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

opencodeopencode 命令行

Agent Skill

opencode 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

685

周安装

28

GitHub Stars

4

下载量

220
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dimitrigilbert/ai-skills --skill opencode

简介

包含 OpenCode 命令行工具的 shell 指令集,用于项目初始化与连接管理。

  • 支持 /init、/connect、/undo 等命令操作, 需配合 opencode.json 配置文件使用。
  • 使用前应仔细审查 !opencode 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • `command` 语法,避免误执行危险系统操作。

SKILL.md

When to Use This Skill

Load this skill when the user:

  • Asks about OpenCode installation, setup, or configuration
  • Mentions opencode.ai commands like /init, /connect, /undo
  • Needs help with AGENTS.md or custom commands
  • Asks about TUI features, mode switching, or tools
  • Wants to create agents, skills, or custom commands
  • References opencode configuration (opencode.json)
  • Is working on a project with.opencode directory

This skill provides specialized knowledge for OpenCode workflows.

OpenCode Agent Guide

Quick Start

Installation

# Recommended: Install script
curl -fsSL https://opencode.ai/install | bash

# Or use npm
npm install -g opencode-ai

# Or use Homebrew (macOS/Linux)
brew install anomalyco/tap/opencode

Source: [https://opencode.ai/docs]

Setup

# Navigate to your project
cd /path/to/project

# Start OpenCode
opencode

# Configure your AI provider
/connect

# Initialize project (creates AGENTS.md)
/init

Source: [https://opencode.ai/docs]

Essential commands: /init, /help, /exit, /new, /sessions Source: [https://opencode.ai/docs/tui]

File references: @path/to/file - fuzzy file search and content injection Source: [https://opencode.ai/docs]

Bash commands: !npm install - execute shell commands directly Source: [https://opencode.ai/docs]

Undo/redo: /undo (Git-based), /redo restore changes Source: [https://opencode.ai/docs/tui]

Core Usage Patterns

File References

@filename                    # Fuzzy search single file
@src/components/*.tsx       # Pattern matching
@path/to/file.ts:42         # Line-specific reference

Use @ for fuzzy file matching. Agent reads file content automatically Source: [https://opencode.ai/docs]

Bash Commands

!npm install                # Run npm commands
!git status && git diff     # Chain commands
!`git log --oneline -5`     # Output injection in custom commands

Execute shell commands. Use workdir parameter instead of cd patterns Source: [https://opencode.ai/docs/tools]

Agent Switching

TUI Commands

Session: /sessions, /new, /exit, /share, /unshare Source: [https://opencode.ai/docs/tui]

Configuration: /connect, /models, /editor, /themes Source: [https://opencode.ai/docs/tui]

View: /compact, /details, /thinking Source: [https://opencode.ai/docs/tui]

Git: /undo, /redo, /export, /import Source: [https://opencode.ai/docs/tui]

Help: /help, /init (creates AGENTS.md) Source: [https://opencode.ai/docs/tui]

CLI Usage

Default: opencode starts TUI. Non-interactive: opencode run <prompt> Source: [https://opencode.ai/docs/cli]

Commands: agent, attach, auth, github, mcp, models, run, serve, session, stats, export, import, web Source: [https://opencode.ai/docs/cli]

Global flags: --help, --version, --print-logs, --log-level Source: [https://opencode.ai/docs/cli]

Environment: OPENCODE_AUTO_SHARE, OPENCODE_CONFIG, OPENCODE_DISABLE_CLAUDE_CODE Source: [https://opencode.ai/docs/cli]

Configuration

Files: .opencode/opencode.json (project), ~/.config/opencode/config.json (global) Source: [https://opencode.ai/docs]

Basic opencode.json structure:

{
  "agents": {
    "default": {
      "model": "provider/model",
      "temperature": 0.7
    }
  },
  "tools": {
    "bash": {
      "permissions": "allow"
    }
  }
}

Source: [https://opencode.ai/docs/agents]

Initial setup: /connect command configures connection Source: [https://opencode.ai/docs]

Agent config: tools, permissions, model, temperature Source: [https://opencode.ai/docs/agents]

Claude compatibility: Reads CLAUDE.md when AGENTS.md not present Source: [https://opencode.ai/docs/rules]

For advanced configuration (remote config, plugins, formatters), see CONFIGURATION.md

Custom Commands

Location: .opencode/commands/ or ~/.config/opencode/commands/ Source: [https://opencode.ai/docs/commands]

Format: Markdown with YAML frontmatter Source: [https://opencode.ai/docs/commands]

---
description: Run tests with coverage
agent: Build
template: |
  !npm run test -- --coverage && !npm run lint
  $ARGUMENTS
---
# Test Runner

Run tests and lint. Arguments passed directly.

Arguments: $ARGUMENTS (all), $1, $2, $3 (positional) Source: [https://opencode.ai/docs/commands]

Shell injection: !command`` - injects output into command template Source: [https://opencode.ai/docs/commands]

File references: @filename in commands Source: [https://opencode.ai/docs/commands]

Config options: template, description, agent, subtask, model Source: [https://opencode.ai/docs/commands]

Agents

Modes: Build (default), Plan - switch with Tab key Source: [https://opencode.ai/docs/agents]

Subagents: General, Explore - invoke via @mention Source: [https://opencode.ai/docs/agents]

Configuration: JSON or Markdown files in .opencode/agents/ Source: [https://opencode.ai/docs/agents]

Options: description, temperature, max_steps, disable, prompt, model, tools, permissions, mode, hidden, task_permissions, color, top_p Source: [https://opencode.ai/docs/agents]

Creation: opencode agent create <name> Source: [https://opencode.ai/docs/agents]

Switching: Tab key cycles between Build mode and Plan mode; @subagent invokes subagents Source: [https://opencode.ai/docs/agents]

Tools

Built-in tools:

  • bash - Execute shell commands
  • edit - Edit files in place
  • write - Write new files
  • read - Read file contents
  • grep - Search file contents
  • glob - Find files by pattern
  • list - List directory contents
  • lsp - Language Server Protocol (experimental)
  • patch - Apply patches
  • skill - Load agent skills
  • todowrite/todoread - Task management
  • webfetch - Fetch web content
  • question - Interactive prompts Source: [https://opencode.ai/docs/tools]

Permissions: allow, deny, ask per tool Source: [https://opencode.ai/docs/tools]

Custom tools: Configure in opencode.json Source: [https://opencode.ai/docs/tools]

MCP servers: External tool integrations Source: [https://opencode.ai/docs/tools]

Ignore patterns:.ignore file in project root Source: [https://opencode.ai/docs/tools]

Best practices: Use workdir param instead of cd patterns. Batch independent tool calls. Prefer grep over bash grep Source: [https://opencode.ai/docs/tools]

Skills System

Format: SKILL.md with YAML frontmatter Source: [https://opencode.ai/docs/skills]

Locations: .opencode/skills/<name>/, ~/.config/opencode/skills/<name>/, .claude/skills/<name>/, ~/.claude/skills/<name>/ Source: [https://opencode.ai/docs/skills]

Frontmatter: name (req), description (req), license (opt), compatibility (opt), metadata (opt) Source: [https://opencode.ai/docs/skills]

Name validation: 1-64 chars, lowercase alphanumeric with hyphens, regex: ^[a-z0-9]+(-[a-z0-9]+)*$ Source: [https://opencode.ai/docs/skills]

Description: 1-1024 characters Source: [https://opencode.ai/docs/skills]

Discovery: Walks up from CWD to git worktree, loads from global configs Source: [https://opencode.ai/docs/skills]

Loading: skill tool loads by name Source: [https://opencode.ai/docs/skills]

Permissions: pattern-based allow/deny/ask Source: [https://opencode.ai/docs/skills]

Rules and AGENTS.md

AGENTS.md: Project root file created by /init command Source: [https://opencode.ai/docs/rules]

Types: Project (local), Global (~/.config/opencode/AGENTS.md), Claude Code Compatible Source: [https://opencode.ai/docs/rules]

Custom instructions: instructions field in opencode.json Source: [https://opencode.ai/docs/rules]

External refs: Reference external files from AGENTS.md Source: [https://opencode.ai/docs/rules]

Precedence: local AGENTS.md > global AGENTS.md > Claude CLAUDE.md Source: [https://opencode.ai/docs/rules]

Common Workflows

Add a New Feature

1. Switch to Plan mode (Tab key)
2. Plan: "Add user authentication to /settings route. Check @src/notes.ts for reference"
3. Review and iterate on the plan
4. Switch to Build mode (Tab key)
5. Build: "Go ahead and implement"
6. Test: !npm test
7. Commit: !git add . && git commit -m "feat: add authentication"

Debug an Issue

1. Identify error location: @src/api/error.ts:42
2. Check related files: @src/components/*
3. Run with debug output: !npm run dev -- --verbose
4. Add breakpoints based on error
5. Test fix: !npm run test -- --watch
6. If issue persists: /undo to revert, refine prompt

Git Workflow

!git status
@path/to/changed/file.ts
!git add . && git commit -m "message"

Use /undo to revert changes via Git, /redo to restore Source: [https://opencode.ai/docs/tui]

Multi-Mode Task

@plan-agent: Create implementation plan
Tab to Build mode, execute plan

Custom Command Workflow

Create command in .opencode/commands/
Use @file references for context
Use $ARGUMENTS for user input
Test with /help command

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.63%
按下载量换算78

Claude

31.56%
按下载量换算69

Cursor

18.16%
按下载量换算40

Gemini CLI

9.92%
按下载量换算22

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/dimitrigilbert/ai-skills --skill opencode 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills