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

@vieko/anvil

v0.1.4

Published

anvil's first-class CLI: define an outcome, the agent works, a deterministic gate decides done.

Readme

@vieko/anvil

anvil's first-class CLI: define an outcome, the agent works, a deterministic gate decides done. A thin surface over the @anvil/core engine — anvil is forge's focused successor, and this is its entry point.

anvil run <outcome>     Run an outcome to its gate in an isolated worktree
anvil status            List recorded runs and their state
anvil --help | --version

<outcome> is a prompt string or a path to a spec file.

run options:
  -C, --dir <path>        Target repository (default: current directory)
      --model <name>      Base model: alias (sonnet/opus/haiku) or provider:id
  -n, --max-attempts <n>  Attempt cap before giving up (default: 3)
      --verify <cmd>      Gate command (repeatable; overrides auto-detection)
  -q, --quiet             Print only the final verdict

Each run provisions an isolated git worktree on a fresh anvil/<id>/<ts> branch: the agent edits it, the gate verifies it, and a pass commits there. The worktree is left in place so you can inspect or merge the result. State is recorded under a user-level dir ($XDG_STATE_HOME/anvil, else ~/.anvil), bucketed by repo path -- not inside the target tree -- so anvil status can report it without polluting the repo's git status.

Inference defaults to the Vercel AI Gateway (AI_GATEWAY_API_KEY); see docs/design.md §5.

Layout

src/
  cli.ts      pure argv parser (parseArgs) -> Command
  run.ts      executeRun (injectable deps) + resolveOutcome  (unit-testable)
  status.ts   executeStatus over the per-repo state bucket
  state-paths.ts  where anvil keeps run records + transcripts (user-level)
  wiring.ts   buildRunDeps — the real node seams (worktree, pi agent, gate)
  bin.ts      the `anvil` entry point

The orchestration (run.ts/status.ts) takes injected seams, so the suite runs with no model, no network, and no git.

Development

Run straight from src/ (no build) via node's built-in type stripping — the source export condition resolves @anvil/core to source too:

npm run dev -- run "<outcome>" -C ~/some/repo   # from the repo root
npm run dev -- status                            # any command

The globally-linked anvil bin runs the built dist/ instead, so it reflects changes only after npm run build (which npm run check includes).