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

@elyracode/subagents

v0.7.14

Published

Elyra extension for subagent delegation -- scout, reviewer, planner, worker, oracle, and parallel execution

Downloads

4,176

Readme

@elyracode/subagents

Subagent delegation for Elyra -- scout, review, plan, implement, and get second opinions with focused child agents.

Install

elyra install npm:@elyracode/subagents

Agents

| Agent | Use when you want... | |-------|---------------------| | scout | Fast codebase recon: files, structure, data flow, risks | | reviewer | Code review: correctness, tests, edge cases, security, simplicity | | planner | Implementation plan: concrete steps with file paths | | worker | Implementation: edits files, validates, follows the plan | | oracle | Second opinion: challenges assumptions, catches drift | | researcher | External research: docs, specs, recent changes | | delegate | General-purpose child agent for ad-hoc tasks |

Usage

Natural language

Use reviewer to review this diff.
Ask oracle for a second opinion on my plan.
Use scout to understand the auth flow.
Run parallel reviewers: one for correctness, one for tests, one for complexity.
Have worker implement this plan, then run reviewer to check it.

Commands

/run scout analyze the authentication flow
/run reviewer review the changes in the last commit
/run oracle challenge my current approach
/parallel reviewer 'check correctness' -> reviewer 'check tests' -> reviewer 'check complexity'
/build-feature add a wallet system with balance tracking
/ui-review build a registration form with validation
/deep-review the authentication system
/agents

Workflows

| Workflow | Command | Steps | |----------|---------|-------| | Build Feature | /build-feature | scout -> planner -> oracle -> worker -> reviewer -> worker (fix) | | UI Review | /ui-review | worker (build) -> reviewer (screenshot + visual QA) -> worker (fix) -> reviewer (verify) | | Deep Review | /deep-review | reviewer (correctness) -> reviewer (tests) -> reviewer (security) -> oracle (synthesis) | | Git Review | /git-review | review git diff for correctness, security, tests, code debt, design consistency |

Git Integration

Manual review before push

/git-review

Reviews your staged and unstaged changes with a go/no-go verdict.

Automatic pre-push hook

/setup-git-hook

Installs a .git/hooks/pre-push hook that runs Elyra review automatically before every push. If issues are found, the push is blocked. Skip with git push --no-verify.

Recommended workflow

scout -> planner -> worker -> reviewer -> worker (fixes)

How it works

  1. You ask for delegation (naturally or via commands)
  2. Elyra selects the right agent and gives it focused instructions
  3. The agent executes the task with appropriate tool access
  4. Read-only agents (scout, reviewer, planner, oracle) cannot edit files
  5. Results are brought back for synthesis

Each agent is narrow and focused -- one task, one perspective. This produces better results than asking one agent to do everything.