LaunchKit · 2026
Back to Skills

easy-opencode

opencode can do all the things related to code.

2
442 downloads
by @deciding

Setup & Installation

openclaw skills install @deciding/easy-opencode

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install easy-opencode

Version History

v1.1.1Feb 23, 2026 - Version note by skill developer:

fix warnings

What This Skill Does

Routes coding tasks to opencode, a CLI-based AI coding agent. The skill manages a two-phase loop: planning first, then building, never skipping either. It passes user instructions to opencode and interprets results to decide what comes next.

Enforces a plan-before-build discipline that prevents unreviewed code generation, reducing implementation errors from misunderstood requirements.

When to use it

  • Planning a new feature before writing any code
  • Implementing an approved plan in a repository
  • Debugging a codebase by delegating analysis to opencode
  • Iterating through plan-build cycles until requirements are met
  • Answering technical questions about a repo without manual investigation

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Add a user authentication module to this repo

AGENT
  1. 1Run opencode with the plan agent: opencode run "Add a user authentication module" --continue --agent plan
  2. 2Review the step-by-step plan returned by opencode
  3. 3If the plan is incomplete, ask opencode to revise it
  4. 4Once the plan is approved, run opencode with the build agent to implement it
  5. 5If opencode asks a question during build, switch back to plan agent to clarify
OUTPUT

Authentication module implemented according to the reviewed and approved plan

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

opencode CLI installed and available in PATH