easy-opencode
v1.30.0
Published
Production-ready AI coding plugin for OpenCode with 16 specialized agents, 51 skills, 58 commands, a slim six-command main entrypoint, governed quality/release workflows, deep project profiling, reusable scaffolding skills, and auditable observability/rep
Maintainers
Readme
Easy OpenCode
Production-ready OpenCode plugin focused on a slimmer product kernel: stable entry commands, governed delivery checks, reusable implementation skills, and auditable release/reporting workflows.
Entry Agent Workflow
eoc_orchestratoris the default entry for implement/fix/refactor/test work and should prefer/implement-task.eoc_code_reviewerstays as the dedicated review/audit entry.eoc_planneris now a hidden specialist used for plan-only, ambiguous, or high-risk multi-step changes.
What You Get
- 16 specialized agents (2 visible entry agents + hidden specialists)
- 51 skills
- 58 commands after pruning experimental or low-signal surfaces
- Stable main entry commands for plan / implement / test / review / ship / doctor
- Quality guardrails with fast/full modes via
/quality-gate - Executable skill manifests with discovery/scaffolding via
/skill-runner - End-to-end implementation packets and repair briefs via
/implement-task - Deep project profiling and runtime detection for Node, Python, Go, and Java
- Structured review, release evidence, observability, and preflight reporting
- Hook automation and installable OpenCode integration assets
Main Entry Commands
For day-to-day use, prefer the slim main entrypoint instead of memorizing dozens of lower-level commands:
eoc planeoc implementeoc testeoc revieweoc shipeoc doctor
These map onto the existing kernel and keep advanced commands available without making them the default user path.
Command discovery:
eoc commandsshows only the six main commandseoc commands --recommendedshows the recommended managed command surfaceeoc commands --publicshows the full public managed surfaceeoc commands --allshows every managed command
Operating Modes
Easy OpenCode now supports three operating modes:
solo: shortest path for one developerteam: stronger review and release defaultsplatform: full governance posture
Examples:
eoc mode
eoc mode set solo
eoc mode set team
eoc doctorInstall
Prerequisites
Install OpenCode first:
brew install opencode
# or
npm install -g opencodeOption 1: npm (recommended)
npm install -g easy-opencodeThen in your target project:
eoc-installOption 2: from source
Clone the repository, then run the installer from your target project or pass an explicit target directory:
git clone https://github.com/jabing/easy_opencode.git
# from your target project
cd /path/to/your-project
node /path/to/easy_opencode/scripts/install.js --project --yes
# or from anywhere with an explicit target
node /path/to/easy_opencode/scripts/install.js --project --yes --target /path/to/your-projectInstallation Modes
eoc-install supports both modes:
- Project mode: installs to
<project>/.opencode/easy-opencode - Global mode: installs to
~/.opencode/easy-opencode
You can also run non-interactively:
eoc-install --project --yes
eoc-install --global --yesSource installs also support an explicit target:
node /path/to/easy_opencode/scripts/install.js --project --yes --target /path/to/your-projectDevelopment vs Installed Mode
This repository contains a development-mode opencode.json for running Easy OpenCode from the plugin source tree itself.
The installer writes a separate installed-mode configuration for the target project or global OpenCode directory:
- Development mode uses repository-relative paths such as
./commands/...and./prompts/... - Installed mode uses isolated asset paths such as
./.opencode/easy-opencode/...or./easy-opencode/...
Do not run project-mode install from inside the plugin source repository unless you intentionally want to test installed mode there. Use --target to install into another project.
Repository Validation Scripts
For repository maintenance, prefer the explicit check commands:
npm run check:metadatafor plugin metadata/config synchronizationnpm run syntax-checkfor source parse validationnpm run check:repofor repository asset/config consistencynpm run lintas a compatibility bridge (check:metadata+syntax-check)npm run buildas a compatibility bridge (check:repo+npm pack --dry-run)
The legacy direct checks are still available as npm run lint:legacy and npm run build:legacy while downstream scripts migrate.
Verify
Inside OpenCode:
/agents/help
Uninstall
node scripts/uninstall.jsThis removes only Easy OpenCode assets (easy-opencode/) and related config entries.
Repository Structure
bin/ CLI entrypoint
commands/ Slash command templates
prompts/ Agent prompts
skills/ Reusable workflow skills
scripts/ Installer, uninstaller, diagnostics
.opencode/ Plugin code and OpenCode integration assetsNotes
- The installer isolates assets under
easy-opencodeto avoid clobbering user-owned OpenCode files. - Command/agent registration is generated from repository assets to reduce drift.
- External tooling parity is implemented from public/official sources only.
/eoc-parallelsupports priority scheduling, cycle detection, dependency-failure propagation, and fast-fail mode.
License
MIT
Test stability
npm run test:stabilityvalidates the unifiednpm testentry repeatedly.npm run test:stability:jsonemitstest_stability_summary.
