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

opencode-wzrd

v2.0.0

Published

WZRD.dev Remi v2 - Auto-capable AI agent with Gold Standard, PIV Orchestration, and Auto-Skill Loading

Readme

WZRD.dev OpenCode Extension

WZRD.dev OpenCode Version License

Remi: The WZRD.dev agent with auto-mode detection for OpenCode.

Transform your OpenCode experience with Remi, an AI assistant that automatically detects task types and switches between 5 specialized modes:

  • CHAT MODE: Casual conversation, simple questions
  • CODER MODE: Code generation, implementation
  • THINKER MODE: Architecture, planning, design
  • DEBUG MODE: Error fixing, problem solving
  • RESEARCH MODE: Deep investigation, comprehensive analysis

🚀 Quick Start

One-Line Installation

npx @wzrddev/opencode-remi@latest

Manual Installation

npm install @wzrddev/opencode-remi

Script Installation

curl -s https://raw.githubusercontent.com/mdthewzrd/opencodewzrd/main/install.sh | bash

📦 Features

Auto-Mode Detection

Remi automatically detects which mode to use based on your input:

| Trigger | Mode | |---------|------| | "Hi", casual talk | CHAT | | "Write code", "function" | CODER | | "Design", "plan", "architecture" | THINKER | | "Error", "bug", "broken" | DEBUG | | "Research", "compare", "analyze" | RESEARCH |

180+ Built-in Skills

Access specialized skills for every task:

  • Coding: All languages and frameworks
  • Debugging: Error analysis and fixes
  • Architecture: System design and planning
  • Research: Comprehensive investigation
  • Automation: Task scheduling and workflows
  • Security: Auditing and best practices

OpenCode Integration

  • Seamless integration with OpenCode editor
  • Context-aware responses
  • Workspace integration
  • File operations support

🎯 Usage

CLI Commands

# Start interactive session
wzrd chat "Write a Python function to calculate Fibonacci"

# List available modes
wzrd modes

# Show loaded skills
wzrd skills

# Setup configuration
wzrd setup

OpenCode Integration

Once installed, Remi integrates directly with OpenCode:

  1. Open any project in OpenCode
  2. Use the command palette: Cmd/Ctrl + Shift + P
  3. Type "Remi" to access WZRD.dev commands
  4. Ask questions directly in the editor

Examples

# CODER MODE example
$ wzrd chat "Write a React component that displays a counter"
[CODER MODE]
I'll help you write code...

# THINKER MODE example  
$ wzrd chat "Design a database schema for an e-commerce site"
[THINKER MODE]
I'll help you design and plan...

# DEBUG MODE example
$ wzrd chat "I'm getting 'undefined is not a function' error"
[DEBUG MODE]
I'll help you debug...

🔧 Configuration

Setup Configuration

wzrd setup

This creates ~/.wzrd/config.json with:

{
  "autoModeDetection": true,
  "skillDirectory": "./skills",
  "logLevel": "info",
  "maxResponseLength": 5000,
  "enableSkills": true
}

Custom Skills

Add custom skills to ~/.wzrd/skills/:

{
  "name": "my-custom-skill",
  "description": "My custom skill",
  "modes": ["CODER", "THINKER"],
  "instructions": "Help with my specific tasks",
  "examples": ["Do my thing", "Help with that"],
  "tags": ["custom", "special"],
  "version": "1.0.0"
}

📁 Project Structure

opencodewzrd/
├── src/
│   ├── index.ts          # Main entry point
│   ├── agent.ts          # Core agent with mode detection
│   ├── cli.ts            # Command line interface
│   └── types.ts          # Type definitions
├── skills/               # Bundled skills
├── dist/                 # Compiled output
├── scripts/
│   └── bundle-skills.js  # Skill bundling script
├── test/                 # Test files
├── package.json          # NPM package config
├── tsconfig.json        # TypeScript config
└── README.md            # This file

🛠️ Development

Prerequisites

  • Node.js 16+
  • OpenCode 1.0+
  • TypeScript 5.0+

Build from Source

# Clone repository
git clone https://github.com/mdthewzrd/opencodewzrd.git
cd opencodewzrd

# Install dependencies
npm install

# Build package
npm run build

# Test locally
npm test

Adding New Skills

  1. Create skill file in example-skills/
  2. Run npm run build:skills to bundle
  3. Skills will be included in distribution

🤝 Contributing

We welcome contributions! Please see CONTRIBUTING.md for details.

Skill Contributions

  • Add new skill JSON files
  • Improve existing skills
  • Update documentation
  • Report issues

📄 License

MIT © WZRD.dev

🔗 Links

🆘 Support

Having issues? Check:

  1. OpenCode Compatibility: Ensure OpenCode >= 1.0.0
  2. Node.js Version: Requires Node.js >= 16.0.0
  3. Permissions: Check OpenCode extension permissions
  4. Network: Skills require internet for initial download

Create an issue on GitHub for bugs or feature requests.


"Good architecture is invisible. Bad architecture is impossible to ignore." - Remi, WZRD.dev Agent