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-agent-config

v1.1.1

Published

Unified agent configurations for Qwen Code AND Opencode - includes agents, skills, rules, and workflows

Readme

Qwen Code + Opencode Agent Configuration Package

Unified agent configurations for both Qwen Code and opencode. Install all your custom agents on any machine with a single command.

🚀 Quick Install

Option 1: npm (Recommended)

npm install -g opencode-agent-config

Or if you prefer bun:

bun install -g opencode-agent-config

Option 2: Direct Script (Unified Installer)

curl -fsSL https://raw.githubusercontent.com/VacoBinarySemanticsLLP/opencode-package/main/install-unified.sh | bash

This installs for both Qwen Code AND Opencode simultaneously!

Option 3: Git Clone

git clone https://github.com/VacoBinarySemanticsLLP/opencode-package.git
cd opencode-package
npm install -g .

📦 What's Included

| Component | Description | Location | |-----------|-------------|----------| | Agents | 20 specialized AI agents | ~/.agent-link/agents/ | | Skills | 37 domain-specific knowledge bases | ~/.agent-link/skills/ | | Rules | Coding standards & guidelines | ~/.agent-link/rules/ | | Workflows | Automated workflows | ~/.agent-link/workflows/ | | MCP Config | Model Context Protocol config | ~/.opencode/mcp_config.json |

🎯 Available Agents

| Agent | Purpose | |-------|---------| | mobile-developer | React Native & Flutter development | | backend-specialist | Backend API & server development | | frontend-specialist | Frontend UI/UX development | | devops-engineer | CI/CD, containers, cloud infrastructure | | database-architect | Database design & optimization | | security-auditor | Security analysis & auditing | | penetration-tester | Penetration testing & vulnerability assessment | | documentation-writer | Technical documentation | | code-archaeologist | Legacy code analysis | | performance-optimizer | Performance profiling & optimization | | qa-automation-engineer | Test automation | | test-engineer | Testing strategies | | product-manager | Product management | | product-owner | Agile product ownership | | project-planner | Project planning & estimation | | seo-specialist | SEO optimization | | explorer-agent | Code exploration | | orchestrator | Multi-agent coordination | | game-developer | Game development | | debugger | Debugging specialist |

🛠️ Manual Installation

If you prefer manual setup:

# Create directories
mkdir -p ~/.qwen/{agents,skills,rules,bin}
mkdir -p ~/.opencode/{agents,skills,rules,bin}
mkdir -p ~/.agent-link/{agents,skills,rules,workflows}

# Copy files
cp -r agents/* ~/.agent-link/agents/
cp -r skills/* ~/.agent-link/skills/
cp -r rules/* ~/.agent-link/rules/
cp -r workflows/* ~/.agent-link/workflows/

# Create symlinks for Qwen
ln -s ~/.agent-link/agents/*.md ~/.qwen/agents/
ln -s ~/.agent-link/skills ~/.qwen/skills
ln -s ~/.agent-link/rules ~/.qwen/rules
ln -s ~/.agent-link/workflows ~/.qwen/workflows

# Create symlinks for Opencode
ln -s ~/.agent-link/agents/*.md ~/.opencode/agents/
ln -s ~/.agent-link/skills ~/.opencode/skills
ln -s ~/.agent-link/rules ~/.opencode/rules
ln -s ~/.agent-link/workflows ~/.opencode/workflows

🔄 Updating

If installed via npm:

npm update -g opencode-agent-config

If installed via script:

curl -fsSL https://raw.githubusercontent.com/VacoBinarySemanticsLLP/opencode-package/main/install-unified.sh | bash

Fix missing symlinks (if needed):

curl -fsSL https://raw.githubusercontent.com/VacoBinarySemanticsLLP/opencode-package/main/scripts/fix-skills-symlink.sh | bash

🗑️ Uninstall

# Remove configurations
rm -rf ~/.agent-link
rm -rf ~/.qwen
rm -rf ~/.opencode

# Uninstall npm package
npm uninstall -g opencode-agent-config

📋 Prerequisites

  • Qwen Code CLI or VS Code with Qwen extension
  • opencode CLI (auto-installed if missing)
  • Node.js 18+ (for npm installation)
  • bash 4.0+ (for script installation)
  • python3 (for tools format fixing)

🔧 Configuration

MCP Config

The package includes a pre-configured mcp_config.json. Customize it at:

  • ~/.opencode/mcp_config.json
  • ~/.qwen/mcp_config.json
  • ~/.agent-link/mcp_config.json

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | QWEN_DIR | Qwen config directory | ~/.qwen | | OPENCODE_DIR | Opencode config directory | ~/.opencode | | AGENT_LINK_DIR | Agent link directory | ~/.agent-link |

📁 Installed Structure

~/.qwen/
├── agents/           # Symlinks to agent files
├── skills/           # Symlink to skill definitions
├── rules/            # Symlink to rule definitions
├── workflows/        # Symlink to workflows
└── mcp_config.json   # MCP configuration

~/.opencode/
├── agents/           # Symlinks to agent files
├── skills/           # Symlink to skill definitions
├── rules/            # Symlink to rule definitions
├── workflows/        # Symlink to workflows
└── mcp_config.json   # MCP configuration

~/.agent-link/
├── agents/           # Agent definition files (source)
├── skills/           # Skill knowledge base (source)
├── rules/            # Rule definitions (source)
├── workflows/        # Workflow definitions (source)
├── scripts/          # Utility scripts
├── .shared/          # Shared resources
└── mcp_config.json   # MCP configuration (source)

🐛 Troubleshooting

Agents not loading

  1. Check symlinks: ls -la ~/.qwen/agents/ and ls -la ~/.opencode/agents/
  2. Verify agent files: ls -la ~/.agent-link/agents/
  3. Restart Qwen Code or opencode

Skills not found

Run the fix script:

curl -fsSL https://raw.githubusercontent.com/VacoBinarySemanticsLLP/opencode-package/main/scripts/fix-skills-symlink.sh | bash

Permission errors

chmod -R 755 ~/.agent-link
chmod -R 755 ~/.qwen
chmod -R 755 ~/.opencode

Tools format error

The installer automatically fixes the tools format. If you see errors manually fix:

python3 -c "
import os, re
agents_dir = os.path.expanduser('~/.agent-link/agents')
for f in os.listdir(agents_dir):
    if f.endswith('.md'):
        path = os.path.join(agents_dir, f)
        content = open(path).read()
        m = re.search(r'^tools:\s*\[([^\]]+)\]', content, re.MULTILINE)
        if m:
            tools = [t.strip() for t in m.group(1).split(',')]
            new = 'tools:\n' + '\n'.join([f'  {t}: true' for t in tools])
            content = content[:m.start()] + new + content[m.end():]
            open(path, 'w').write(content)
"

📄 License

MIT License - See LICENSE file for details

🤝 Contributing

  1. Fork the repository
  2. Make your changes
  3. Test the installer
  4. Submit a pull request

📞 Support


Made with ❤️ by Highspring India LLP for the Qwen Code and Opencode community