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

@hacksmith/doraval

v0.6.37

Published

Make agent context work on every try. Context effectiveness toolkit for coding agents (skills, plugins, rules) across Claude, Cursor, Codex, Copilot, and Grok.

Downloads

3,284

Readme

doraval

Context-effectiveness CLI for coding agents. It reviews skills, rules, and memory so Claude, Cursor, Codex, Copilot, and Grok work from context you can trust.

dora and doraval are the same binary. Pronunciation: dor-uh-val (Doraemon + eval).

Installation

npm install -g @hacksmith/doraval
# macOS
brew tap saif-shines/tap && brew trust saif-shines/tap && brew install doraval

# Bun
bun add -g @hacksmith/doraval

Node ≥ 14.18. Alpine/musl: use Bun. See the installation guide.

Quick start

npx skills add saif-shines/doraval
dora review --quick

That add installs four skills: ask-dora, review-with-dora, grilling-for-routine, and writing-for-routine. Type /ask-dora for a Dora job or a routine idea.

/ask-dora turn this loop-able check into a routine

--quick is structure and heuristics only. No Judge. No API key.

You get a Review with Findings. Exit 0 clean · 1 issues · 2 could not run.

Roadmap

Public board: Roadmap.

Commands

dora                         # short --help
dora review --quick .        # first job; Findings; no LLM
dora review --quick --json
dora scan                    # workspace map
dora fix . --yes             # mechanical; no TTY
dora fix . --brief           # Judgment items; then replace
dora skill new --for claude --name review-pr --yes
dora skill unused            # unused Skills in this directory
dora skill unused --global   # unused home Skills; Sessions from every project
dora skill remove ghost --yes
dora memory add "Never use default exports" --weight 8
dora conflicts --dry-run
dora session
dora session show <id>       # short table id is enough if unique
dora harness                 # list routines
dora harness new             # start ask-dora / grilling-for-routine; optional Fixed step
dora harness apply <slug>    # push the folder onto the Runtime job; Runtime watch
dora harness boot <slug>     # alias of apply
dora harness show <slug>     # one card
dora harness logs <slug>     # that job's run history
dora harness pause <slug>    # Runtime watch
dora harness resume <slug>   # Runtime watch
dora harness list            # Runtime watch: hermes cron list, hermes cron runs, hermes logs, hermes dashboard
dora harness rm <slug>       # stop the job, then delete the folder
dora harness open <slug>     # open the routine folder
dora config setup
dora probe --yes             # hello / ack with doraval.dev
dora --help                  # first loop
dora --help --json           # live map

Log in at doraval.dev/account, mint a key, then dora config set identity.api_key <token> --yes before dora probe --yes. Walkthrough: Connect the CLI.

More: doraval.dev/commands.

Building from source

Requirements:

  • Bun ≥ 1.3
  • Node ≥ 14.18 for the published binary target
bun install
bun run dev -- --help          # run CLI from source
bun run build                  # emit bin/doraval.js

Repository layout

| Path | Contents | |------|----------| | src/cli/ | citty CLI surface (dora / doraval) | | src/core/ | Scan, review, fix, memory, sessions, scaffold | | src/providers/ | Packaging / provider specs (dora skill new, dora plugin bump) | | skills/ | ask-dora, review-with-dora, grilling-for-routine, writing-for-routine | | apps/website/ | Docs site (Blume) | | scripts/ | Release, platform packages, publish helpers | | test/ | Fixtures and CLI tests | | bin/ | Built CLI entry (doraval.cjs) |

Development

bun install
bun run dev -- --help          # run from source
bun test                       # unit + CLI tests
bun run typecheck
bun run build                  # emit bin/doraval.js

See CONTRIBUTING.md and AGENTS.md for conventions (ponytail ladder, no version bumps unless releasing).

Contributing

Issues and PRs are welcome. See CONTRIBUTING.md.

License

MIT. See package.json ("license": "MIT").