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

sdlc-subagents

v0.1.4

Published

Scaffold OpenCode as an orchestrator of multiple coding agent CLIs (Gemini, Copilot, Claude, Aider, Kimi, Cursor)

Downloads

480

Readme

SDLC Sub-Agents

Turn OpenCode into a multi-agent orchestrator

One command. Six coding agents. Zero config.

npm version license node zero deps

  Built for OpenCode — the open-source AI coding agent for the terminal

npx sdlc-subagents

Quick Start · Supported Agents · How It Works · Usage · Install CLIs


The Problem

You have access to multiple AI coding agents — Gemini, Claude, Copilot, Aider, Kimi, Cursor — each with different strengths. But switching between them is manual, context is lost, and there's no unified workflow.

The Solution

sdlc-subagents configures OpenCode as a meta-orchestrator that knows when and how to delegate tasks to the right sub-agent CLI. It generates Agent Skills that teach OpenCode the strengths, invocation patterns, and routing logic for each agent.

                          ┌─────────────────┐
                          │    OpenCode      │
                          │  (orchestrator)  │
                          └────────┬────────┘
                                   │
             ┌──────────┬──────────┼──────────┬──────────┬──────────┐
             ▼          ▼          ▼          ▼          ▼          ▼
         ┌────────┐ ┌────────┐ ┌────────┐ ┌────────┐ ┌────────┐ ┌────────┐
         │ Gemini │ │Copilot │ │ Claude │ │ Aider  │ │  Kimi  │ │ Cursor │
         │  CLI   │ │  CLI   │ │  Code  │ │        │ │  CLI   │ │  CLI   │
         └────────┘ └────────┘ └────────┘ └────────┘ └────────┘ └────────┘
          Research    GitHub    Refactor     Pair      Front-end   IDE-grade
          & Context  Workflows  & Debug    Programming  & UI      Prototyping

Supported Agents

| Agent | CLI | Best For | Install | |:------|:----|:---------|:--------| |   Gemini CLI | gemini | Large codebase analysis, research, documentation | npm i -g @google/gemini-cli | |   GitHub Copilot CLI | copilot | PR creation, issue management, GitHub workflows | npm i -g @github/copilot | |   Claude Code | claude | Complex refactoring, architecture changes, debugging | npm i -g @anthropic-ai/claude-code | |   Aider | aider | Pair programming, auto-commits, any LLM provider | pipx install aider-chat | |   Kimi CLI | kimi | Front-end development, UI components, long-context | uv tool install --python 3.13 kimi-cli | |   Cursor CLI | agent | IDE-grade coding, cloud handoff, rapid prototyping | curl https://cursor.sh/cli -fsS \| bash |


Quick Start

npx sdlc-subagents

That's it. No flags, no wizard, no config files to write. The tool will:

  1. Detect which coding agent CLIs are installed on your system
  2. Generate OpenCode skill files for all 6 agents (even uninstalled ones — install later)
  3. Create opencode.json with permissions and /delegate custom commands
  4. Merge safely into existing config (idempotent — re-run anytime)

What gets created

your-project/
├── .agents/
│   └── skills/
│       ├── sdlc-orchestrator/SKILL.md   ← Master routing logic
│       ├── gemini-cli/SKILL.md          ← Gemini delegation patterns
│       ├── copilot-cli/SKILL.md         ← Copilot delegation patterns
│       ├── claude-code/SKILL.md         ← Claude delegation patterns
│       ├── aider/SKILL.md               ← Aider delegation patterns
│       ├── kimi-cli/SKILL.md            ← Kimi delegation patterns
│       └── cursor-cli/SKILL.md          ← Cursor delegation patterns
└── opencode.json                        ← Permissions + /delegate commands

How It Works

Each generated skill file teaches OpenCode:

| Section | What it contains | |:--------|:-----------------| | When to delegate | Task types the agent excels at | | How to invoke | Exact CLI commands for non-interactive use | | Delegation patterns | Bash patterns for capturing output | | Important notes | Auth requirements, flags, gotchas |

The master sdlc-orchestrator skill provides a routing table that maps task types to the best agent:

| Task Type | Routed To | |:----------|:----------| | Large codebase analysis, research, documentation | Gemini CLI | | GitHub PRs, issues, code review, repo management | Copilot CLI | | Complex refactoring, architecture changes, debugging | Claude Code | | Incremental changes with git commits, multi-model | Aider | | Front-end development, UI components, styling | Kimi CLI | | IDE-grade coding, cloud handoff, rapid prototyping | Cursor CLI |


Usage in OpenCode

After scaffolding, open your project with OpenCode. The skills are discovered automatically.

Auto-routing — let OpenCode choose

/delegate Analyze the entire codebase and generate API documentation

OpenCode reads the orchestrator skill, identifies this as a research/documentation task, and routes to Gemini CLI.

Force a specific agent

/delegate-claude-code   Refactor the auth module to use strategy pattern
/delegate-copilot-cli   Create a PR for the current branch changes
/delegate-aider         Add input validation to all API endpoints
/delegate-kimi-cli      Build a responsive dashboard with Tailwind
/delegate-gemini-cli    Explain how the payment system works across all services
/delegate-cursor-cli    Prototype a new CLI tool for data migration

Natural language — no commands needed

Just describe your task. OpenCode loads the orchestrator skill and routes automatically:

> Use Gemini to research how the payment system works across all microservices
> Have Claude refactor the database layer to use Prisma
> Ask Aider to add tests for the auth module, commit each test separately

Multi-agent workflows

Chain agents for complex SDLC workflows:

1. /delegate-gemini-cli   Analyze the requirements and existing auth code
2. /delegate-claude-code  Implement the new OAuth2 flow based on Gemini's analysis
3. /delegate-kimi-cli     Build the login UI components
4. /delegate-aider        Add integration tests, commit each one
5. /delegate-copilot-cli  Create a PR with a detailed description

Re-running

npx sdlc-subagents

Safe to run multiple times. It will:

  • Update skill files with the latest templates
  • Merge new config into existing opencode.json without overwriting your customizations
  • Re-detect installed CLIs and update status

Installing the Sub-Agent CLIs

Skills are generated for all agents regardless of installation status. Install any agent when you're ready:

# Gemini CLI — Google's 1M token context agent
npm install -g @google/gemini-cli

# GitHub Copilot CLI — GitHub-native workflow agent
npm install -g @github/copilot

# Claude Code — Anthropic's deep reasoning agent
npm install -g @anthropic-ai/claude-code

# Aider — Model-agnostic pair programmer
pipx install aider-chat

# Kimi CLI — Moonshot's long-context agent
uv tool install --python 3.13 kimi-cli

# Cursor CLI — IDE-grade terminal agent
curl https://cursor.sh/cli -fsS | bash

Requirements


Contributing

Contributions are welcome! If you'd like to add support for a new coding agent CLI or improve the delegation skills, please open an issue or PR.

License

MIT — Roy Zalta