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

@coding-chimera/chimera

v0.0.6-patch1

Published

This package is the complete Chimera agent runtime: the opencode-derived agent plus the built-in Chimera graph and propagation-audit runtime. The npm package name is `chimera`; the only public CLI command is `chimera`.

Downloads

177

Readme

Chimera agent package

This package is the complete Chimera agent runtime: the opencode-derived agent plus the built-in Chimera graph and propagation-audit runtime. The npm package name is chimera; the only public CLI command is chimera.

To install from npm once published:

npm install -g chimera
chimera

Graph/runtime commands are available under the agent command:

chimera graph status
chimera --graph status

Do not publish or document opencode or codegraph as public bins for this package.

Development

Install development dependencies from the chimera/ workspace root:

bun install

Run the agent from this package directory:

bun run --conditions=browser src/index.ts

Typecheck from this package directory:

bun typecheck

Build And Package

Build the default current-platform no-WebUI package from this package directory:

bun run build --single --skip-install

The default package intentionally does not embed the GPL-licensed NewWeb/OpenCodeUI-derived assets. To also build a clearly separated with-WebUI variant for release assets, run a second build and preserve the first variant's npm tarballs:

bun run build --single --skip-install --with-webui --preserve-npm-tarballs

The tarballs are written under:

dist/npm-tarballs/

The no-WebUI tarballs are named like chimera-no-webui-<version>.tgz and chimera-darwin-arm64-no-webui-<version>.tgz. The with-WebUI tarballs use with-webui in the same position.

Install one locally built variant into a temporary npm prefix:

prefix="$(mktemp -d)"
npm install -g --prefix "$prefix" dist/npm-tarballs/chimera-darwin-arm64-no-webui-*.tgz dist/npm-tarballs/chimera-no-webui-*.tgz
"$prefix/bin/chimera" --version
"$prefix/bin/chimera" --graph --help

Smoke-test the installed graph runtime from a temporary TypeScript project:

project="$(mktemp -d)"
printf 'export function add(a: number, b: number) { return a + b }\n' > "$project/add.ts"
"$prefix/bin/chimera" graph init "$project"
"$prefix/bin/chimera" graph status "$project"
"$prefix/bin/chimera" graph query add --path "$project"

The generated main tarball has package.json.name === "chimera" and exposes only the chimera bin. The platform tarball is named chimera-<os>-<arch> internally and contains the compiled bin/chimera binary plus graph runtime assets; the tarball filename carries the packaging variant.

Platform verification help wanted

The current maintainer has not yet verified the full Linux and Windows build, pack, and install matrix. Linux and Windows users are encouraged to try the commands above on their own machines. If you hit a platform-specific problem, please report it to the maintainer with the OS, architecture, command output, and any relevant logs. Fixes or pull requests are especially welcome if you are able to investigate and patch the issue locally.