Skip to content

Releases: waybarrios/opencode-power-pack

v0.2.0

28 May 17:18

Choose a tag to compare

What's new

  • Adds shared Working discipline guidance to feature-dev, code-architect, and mcp-builder; adds a scope creep criterion to the code-review and code-reviewer checklists.
  • agents-md-revise now describes OpenCode's first-match-wins rules loading and steers captures away from shadowed CLAUDE.md files.
  • Trims the npm install footprint via a files whitelist in package.json — installing from the git URL now only pulls skills/, commands/, .opencode/, and assets/.
  • Expands .gitignore with patterns for context files from other AI agents (Cursor, Windsurf, Copilot, Codex, Gemini, Aider, Continue) and the *.local.md companions of CLAUDE.md / AGENTS.md.

Updating

The steps depend on which install method from the README you used.

Method A — installed from GitHub (git+https://...)

The plugin lives in OpenCode's npm-style cache, and the slash commands are symlinked from a separate local clone.

  1. Bump the pinned version (skip if you install unpinned). Edit ~/.config/opencode/opencode.json:

    "opencode-power-pack@git+https://github.com/waybarrios/opencode-power-pack.git#v0.2.0"
  2. Pull the local clone (the one the slash commands symlink to):

    cd ~/code/opencode-power-pack
    git pull

    No re-symlinking needed — existing symlinks resolve to the updated files on disk.

  3. Clear the plugin cache and restart OpenCode:

    rm -rf ~/.cache/opencode/node_modules/opencode-power-pack
    pkill -f opencode
    opencode

Method B — installed from a local clone (git+file://...)

No cache; the plugin reads directly from your clone.

  1. Pull the clone:

    cd ~/code/opencode-power-pack
    git pull
  2. Restart OpenCode so the plugin re-evaluates:

    pkill -f opencode
    opencode

Verify

In a new OpenCode session:

List the skills you have available.

You should see the eleven skills under the opencode-power-pack: namespace. To confirm v0.2.0 specifically, ask the model to summarize the feature-dev skill — it should mention the Working discipline section added in this release.

If a skill still looks like the old version, the cache from Method A is stale: re-run step 3 above.

v0.1.0 — Initial release

26 Apr 17:13
9744f8c

Choose a tag to compare

Eleven Claude Code skills, ported to OpenCode

This is the first public release. One config line in opencode.json plus a symlink for slash commands and you have eleven battle-tested skills available in OpenCode.

Skills

Review

  • code-review — multi-agent PR review with cross-check pass and concrete reproduction scenarios
  • security-review — OWASP-bucketed three-stage filtering with mandatory PoC per finding

Feature dev

  • feature-dev — seven-phase guided workflow
  • code-explorer — deep codebase analysis sub-task
  • code-architect — decisive architecture blueprint sub-task
  • code-reviewer — two-pass adversarial review sub-task

Design

  • frontend-design — distinctive, production-grade UI generation that avoids generic AI aesthetics

Authoring

  • mcp-builder — build high-quality MCP servers (Python or TypeScript)
  • skill-creator — author new SKILL.md files

Project memory

  • agents-md-improver — audit and update AGENTS.md / CLAUDE.md
  • agents-md-revise — capture session learnings into the rules file

Install

{
  "plugin": [
    "opencode-power-pack@git+https://github.com/waybarrios/opencode-power-pack.git#v0.1.0"
  ]
}

Then symlink the slash commands and restart. Full instructions in the README.

Acknowledgments

Almost everything in skills/ is ported or translated from upstream Anthropic projects (claude-code/plugins, skills, claude-code-security-review, claude-plugins-official) and the OpenCode plugin loader pattern is adapted from obra/superpowers. See Acknowledgments for per-skill attribution.