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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@cogitator/binharic-cli

v0.1.0-alpha.6

Published

A multi-provider AI coding agent with the persona of a Tech-Priest

Readme

Tests Code Coverage Code Quality npm Documentation License

A multi-provider AI coding agent with the persona of a Tech-Priest


Binharic is a terminal-based AI coding assistant (a coding agent) similar to OpenAI's Codex, Google's Gemini CLI, and Anthropic's Claude Code—but with the personality of a devout Tech-Priest of the Adeptus Mechanicus. Binharic is written in TypeScript and uses the AI SDK framework for most of its underlying agentic logic (like tool calling and workflow management). Additionally, its architecture follows the recommendations mentioned in the building effective agents article from Anthropic, to a good degree.

Binharic's development started as a personal project to learn more about building a terminal-based coding agent. However, the project has grown somewhat into a full-fledged coding assistant with a lot of features like the ability to analyze projects, run tests, find bugs, and perform code review.

Features

  • Can use models from OpenAI, Google, Anthropic, and Ollama
  • Is fully customizable and extendable (system prompt and adding new tools)
  • Comes with a built-in keyword-based retrieval-augmented generation (RAG) pipeline
  • Comes with a large set of built-in tools (like for reading files and running Bash commands)
  • Can use external tools via the Model Context Protocol (MCP)
  • Comes with predefined workflows for common software development tasks (like debugging and code review)

See the ROADMAP.md for the list of implemented and planned features.

[!IMPORTANT] Binharic is in early development, so bugs and breaking changes are expected. Please use the issues page to report bugs or request features.


Getting Started

You can follow the instructions below to install and use Binharic in your terminal.

Installation

npm install -g @cogitator/binharic-cli

Running in the Terminal

# Make sure API keys are available in the environment
export OPENAI_API_KEY=<your-openai-api-key>
export ANTHROPIC_API_KEY=<your-anthropic-api-key>
export GOOGLE_API_KEY=<your-google-api-key>

# Start Binharic in the terminal
binharic

Binharic Start Screen

asciicast

[!NOTE] The performance of a coding agent like Binharic, to a great extent, depends on the model it uses. So, it's recommended to use state-of-the-art models (like Claude Sonnet 4.5, GPT-5, and Gemini 2.5 Pro) for the best results.

Running in a Container

Alternatively, you can run Binharic in a container:

# API keys should be available in the environment already
docker run -it --rm \
  -v ${PWD}:/workspace \
  -e OPENAI_API_KEY \
  -e ANTHROPIC_API_KEY \
  -e GOOGLE_API_KEY \
  ghcr.io/cogitatortech/binharic-cli:<version>

<version> should be replaced with the version of the Binharic (like 0.1.0-alpha.6) or latest. Use latest if you want to use the latest (development) version of Binharic.

Configuration

You can configure Binharic by editing the ~/.config/binharic/config.json5 file. Additionally, Binharic supports environment variables for configuration. See the docs (TO BE ADDED) for more information.


Documentation

See the docs for more information on how to use the Binharic coding agent.


Contributing

See CONTRIBUTING.md for details on how to make a contribution.

License

This project is licensed under the MIT License (see LICENSE).

Acknowledgements

  • The logo is from SVG Repo with some modifications.