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

@contextgraph/agent

v0.6.3

Published

Autonomous agent for contextgraph action execution

Readme

steward

Local CLI for steward.foo.

Install (one command)

npx -y @contextgraph/agent@latest install

steward install is an interactive wizard: it authenticates you, detects which coding agents you have (Claude Code, Cursor, Codex CLI, VS Code, Gemini CLI, Windsurf, …), and configures the steward MCP server plus the steward skills for each one.

  • It asks whether to install globally (~/, follows you across every project) or for this project (committable, shared with your team).
  • Skills are written to the Agent Skills open-standard location (.agents/skills) and mirrored into .claude/skills, so they work across the whole ecosystem.
  • For Claude Code it installs the plugin (MCP + skills + /steward: commands).
  • For UI-only destinations (claude.ai, ChatGPT) it prints the connector steps.

install sets up the connection (MCP server) and skills — not a steward itself. After it finishes, restart your agent (or reload MCP servers), authorize the steward server when prompted (/mcp in Claude Code), then create your first steward from inside the agent (/steward:define-steward in Claude Code) or the dashboard.

Useful flags:

steward install --print                  # show copy-paste config, write nothing
steward install --scope project          # skip the scope prompt
steward install --client cursor codex    # target specific agents
steward install --no-mirror              # write skills only to .agents/skills

For non-interactive environments, set STEWARD_API_TOKEN and pass --scope/--client.

Other commands

steward --help
steward backlog --help
steward backlog top
steward review <repository> <sha>
steward consult <repository> --message "..."

steward auth opens a browser login and stores credentials locally in ~/.steward/credentials.json.

Tell Your Agent

Append this to CLAUDE.md or AGENTS.md in your project:

echo "Use the \`steward\` CLI for steward.foo work. Learn the workflow from \`steward --help\` and \`steward backlog --help\`." >> CLAUDE.md

Releases

Versioning and npm publishing are automated by release-please. Use Conventional Commits on main so the right semver bump and changelog entries are picked up:

  • fix: ... → patch bump
  • feat: ... → minor bump
  • feat!: ... or a BREAKING CHANGE: footer → major bump (minor while pre-1.0.0)
  • chore:, docs:, refactor:, test:, ci: → no release on their own

When releasable commits land on main, release-please opens a rolling "Release PR" with the proposed version bump and changelog. Review and edit that PR's notes if you want to adjust user-facing wording — merging it tags the release and publishes to npm via Trusted Publishers (OIDC, no token).