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

grep-research-skills

v0.1.0

Published

Give your AI agent deep research superpowers. Connects Claude Code, Cowork, and OpenClaw to GREP — the #1 deep research engine.

Downloads

35

Readme

GREP Research Skills

Give your AI agent deep research superpowers. GREP Research Skills connects Claude Code, Cowork, and OpenClaw to GREP — the #1 deep research engine.

Install

npx grep-research-skills

That's it. Works with Claude Code, Cowork, and OpenClaw — the installer auto-detects your environment.

Requirements: Node.js 18+

Alternative: Claude Code Plugin Marketplace

/plugin marketplace add parcha-ai/grep-research-skills

Alternative: Git Clone

git clone https://github.com/parcha-ai/grep-research-skills.git ~/.grep-research-skills && ~/.grep-research-skills/setup

What You Get

| Skill | Time | Description | |-------|------|-------------| | /quick-research <topic> | ~25s | Fast fact check — version lookups, API endpoint checks, quick pre-code sanity checks | | /research <topic> | ~5 min | Default. Deep research with sourced citations. Great for investigating APIs/libraries before writing code | | /ultra-research <topic> | up to 1 hour | Exhaustive investigations — security audits, legal research, full ecosystem surveys | | /grep-plan <topic> | ~5 min | Research-informed planning — investigates best practices with your codebase as context before you /plan | | /grep-skill-creator <description> | ~5 min | Create a new SKILL.md for any agent skill, powered by deep research on the target domain | | /grep-login | — | Authenticate with your GREP account (email OTP) | | /grep-upgrade | — | Choose or change your subscription plan (Free / Pro / Ultra / PAYG) | | /grep-status | — | Check account status and recent jobs |

Getting Started

  1. Install using npx grep-research-skills
  2. Authenticate by running /grep-login in your AI agent
  3. Research anything with /research "your topic"

Pick the right tier. /quick-research is for one-liner answers, /research is the default for most tasks, and /ultra-research is reserved for heavy investigations that genuinely need exhaustive coverage (and can take up to an hour).

How It Works

GREP Research Skills uses headless email authentication (powered by Descope) — no browser needed. Works in terminals, SSH sessions, and headless environments.

/quick-research and /research are blocking: the skill submits the job, polls with backoff, and returns the finished report in a single call. Claude Code's bash tool caps at 10 minutes, so /research is bounded to a 9-minute server-side wait. If a deep job overshoots, the skill exits with a job_id for later retrieval.

/ultra-research is different. Ultra-deep jobs can run up to 1 hour, which exceeds the bash 10-minute cap. The skill submits the job, returns the job_id immediately, and polls on 5-minute intervals across multiple agent turns. You can keep working while it runs; the agent checks back periodically and presents the report when ready.

Authentication

# Authenticate (sends code to your email)
node ~/.grep-research-skills/scripts/auth.js login [email protected]

# Check status
node ~/.grep-research-skills/scripts/auth.js status

# Get token (for scripting)
node ~/.grep-research-skills/scripts/auth.js token

Sessions are stored in ~/.grep/session.json and auto-refresh.

For OpenClaw Users

The installer auto-detects OpenClaw and creates symlinks in ~/.openclaw/skills/.

You can also publish to ClawHub or install skills manually:

# Drop into OpenClaw's skill directory
cp -r ~/.grep-research-skills/skills/* ~/.openclaw/skills/

Project Structure

grep-research-skills/
├── .claude-plugin/
│   ├── plugin.json               # Claude Code plugin manifest
│   └── marketplace.json          # Claude Code marketplace listing
├── skills/
│   ├── research/SKILL.md         # Deep research (~5 min)
│   ├── quick-research/SKILL.md   # Fast fact check (~25s)
│   ├── ultra-research/SKILL.md   # Exhaustive research (up to 1 hr)
│   ├── grep-plan/SKILL.md        # Research-informed planning
│   ├── grep-skill-creator/SKILL.md # Research-powered skill generator
│   ├── grep-login/SKILL.md       # Authentication
│   ├── grep-upgrade/SKILL.md     # Plan selection & Stripe checkout
│   └── grep-status/SKILL.md      # Status & job checking
├── scripts/
│   ├── auth.js                   # Descope OTP headless auth
│   ├── grep-api.js               # GREP API client
│   └── billing.js                # Billing & Stripe checkout client
├── bin/
│   └── install.js                # npx installer
├── setup                         # Shell installer (git clone fallback)
├── package.json
└── README.md

License

MIT — Parcha Labs, Inc.