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

research-agents

v0.1.0

Published

OpenCode plugin providing research-oriented agents (ideator, critic, sweeper)

Readme

research-agents

OpenCode plugin that registers three research-oriented subagents: Ideator, Critic, and Sweeper. Together they form an iterative research loop for generating, evaluating, and grounding research ideas.

Install

Add to opencode.json:

{
  "plugin": [
    "research-agents"
  ]
}

Or install from npm:

npm install research-agents

Agents

All agents are registered as OpenCode subagents (mode: subagent) using claude-sonnet-4-20250514 by default.

research-ideator

Research ideation specialist that generates 2-3 novel, grounded research ideas per iteration.

  • Temperature: 0.7 (creative)
  • Input: Experiment results, related work, previous critiques
  • Output: Structured idea proposals with problem statement, approach, expected outcome, novelty justification, required experiments, and effort estimate
  • Behavior: Classifies research state (early exploration / promising lead / plateau / near completion) and adjusts idea diversity accordingly. In revision mode, builds on surviving ideas rather than starting from scratch.

research-critic

Evaluates proposed ideas on four dimensions with structured scoring (1-10):

  • Temperature: 0.3 (precise)
  • Dimensions: Feasibility, Novelty, Impact, Soundness
  • Verdicts: ACCEPT (overall >= 7, no dimension below 5), REVISE (4-6 or any dimension 3-4), REJECT (overall < 4 or any dimension below 3)
  • Output: Per-idea critique with scores, strengths, weaknesses, revision directions, plus a loop assessment with convergence signal

research-sweeper

Literature search specialist that finds and synthesizes related work from multiple sources.

  • Temperature: 0.2 (factual)
  • Sources: arXiv (via arxiv-database skill), Semantic Scholar, web search
  • Output: Thematic synthesis (not paper-by-paper listing) with research gaps, a structured paper catalog table, and coverage of direct, methodological, foundational, and adjacent angles
  • Skills used: arxiv-database, literature-review

Research Loop

The three agents work in a cycle:

Sweeper (find related work)
    → Ideator (generate ideas using results + related work)
        → Critic (evaluate ideas, score, verdict)
            → Ideator (revise based on critique)
                → Critic (re-evaluate)
                    → ... (until ACCEPT or max iterations)

License

MIT