npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@acauhi/opencode-agent-system

v0.3.0

Published

Complete OpenCode backup: 43 skills, 16 agents, config, plugins, instructions, and setup script

Downloads

663

Readme

OpenCode Agent System

Complete backup of an OpenCode environment: 43 skills, 16 agents, config, plugins, instructions, and a fully automated setup script. If your PC catches fire, one command rebuilds everything.

Adapted from AgentSystemLabs/core — opinionated, production-hardened SKILL.md workflows and reviewer subagents, optimized for OpenCode with CodeGraph-native awareness.

What's Included

| Component | Count | Description | |-----------|-------|-------------| | Skills | 43 | Workflow orchestrators (features, bugs, audits, git, docs, infra) | | Agents | 16 | Read-only reviewers + utility subagents | | Instructions | 5 | Behavioral rules loaded every session | | Plugins | 2 | Guardrails (bash safety) + AgentMemory capture | | Commands | 2 | /recall and /remember for persistent memory | | Config | 1 | opencode.jsonc + AGENTS.md | | Wrapper | 1 | Auto-starts AgentMemory before OpenCode | | Setup script | 1 | Fully automated installation from scratch |

Quick Start (Full Setup)

If you have a fresh machine:

git clone https://github.com/Acauhi99/opencode-agent-system.git
cd opencode-agent-system
bash scripts/setup.sh

This installs everything: Node.js, OpenCode binary, MCP servers, LSP servers, config files, skills, agents, and the wrapper script.

Install (CLI Only)

If you just want to install skills/agents/config into an existing OpenCode setup:

npx @acauhi/opencode-agent-system init --global

Options

| Flag | Description | |------|-------------| | --force, -f | Overwrite existing files | | --skip-agents | Skip installing agents | | --skip-skills | Skip installing skills | | --skip-config | Skip installing config (instructions, plugins, commands) | | --global, -g | Install to ~/.config/opencode/ | | --dest <dir> | Custom base directory |

Commands

# List all available skills, agents, and config
npx @acauhi/opencode-agent-system list

# Install everything
npx @acauhi/opencode-agent-system init --global

# Remove everything
npx @acauhi/opencode-agent-system uninstall --global

# Run full setup script
npx @acauhi/opencode-agent-system setup

Usage

After installing, open OpenCode and use these commands:

/start "describe your goal"     # universal entry point — classifies intent, picks depth, routes
/add-feature "..."              # end-to-end feature delivery
/fix-bug "..."                  # diagnose silent failures
/audit                          # whole-codebase tech-debt sweep
/recall [query]                 # search past session memories
/remember [insight]             # save to persistent memory

Project Structure

opencode-agent-system/
├── cli/
│   └── index.js              # CLI: init, list, uninstall, setup
├── agents/                   # 16 subagent definitions (.md)
├── skills/                   # 43 skill directories (SKILL.md each)
├── config/                   # OpenCode config backup
│   ├── opencode.jsonc        # Main config (MCP, permissions, plugins)
│   ├── AGENTS.md             # CodeGraph usage guide
│   ├── instructions/         # 5 behavioral instruction files
│   ├── plugins/              # 2 TypeScript plugins
│   └── commands/             # 2 custom commands
├── scripts/                  # Setup automation
│   ├── setup.sh              # Full install script
│   ├── opencode-wrapper      # Wrapper that auto-starts AgentMemory
│   └── requirements.txt      # Global npm packages list
├── package.json
├── README.md
└── LICENSE

Prerequisites

Skills are CodeGraph-native — they use CodeGraph for sub-millisecond, tree-sitter-parsed codebase exploration instead of grep. The setup script installs CodeGraph automatically.

For manual installation:

npm install -g @colbymchenry/codegraph
codegraph init -i  # per-project

Skills fall back to grep + read + glob when .codegraph/ is not initialized.

AgentMemory

The wrapper script auto-starts AgentMemory for persistent cross-session memory. It captures session observations, tool usage, and context — then recalls them in future sessions.

  • /recall [query] — search past sessions
  • /remember [insight] — save to long-term memory

Uninstall

npx @acauhi/opencode-agent-system uninstall --global

License

MIT — same as the original AgentSystemLabs/core.

Credits

Built on the excellent work of AgentSystemLabs/core. The original skills were designed for Claude Code; this adaptation retargets them for OpenCode with CodeGraph-native codebase exploration, question tool for user prompts, and OpenCode's subagent architecture.