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

ceobe-mastery-cli

v1.6.2

Published

An autonomous AI Engineering orchestrator driven by Gemini and Claude.

Readme

Ceobe Mastery CLI 🚀

An autonomous AI Engineering orchestrator CLI. Trully Model-Agnostic: supports Gemini, Claude, and any OpenAI-compatible provider (DeepSeek, GLM, Groq, Ollama, etc.).

🧠 The "Three Brains" Architecture (v1.6.1+)

Ceobe now utilizes a Three Brain Pattern to prevent AI hallucinations and eliminate self-evaluation bias:

  1. Planner (The Architect): Reads your request and generates a strict Blueprint (BRD, Design, Architecture). Best paired with highly intelligent models (e.g., Claude 3.5 Sonnet or GPT-4o).
  2. QA Auditor (The Independent Reviewer): Strictly reviews the Planner's blueprint for logic gaps and contradictions before any code is written.
  3. Executor (The Programmer): Follows the validated blueprint to write the code. Best paired with fast/cheap models (e.g., Gemini 2.5 Flash, GLM, or Llama 3).

⚡ Features

  • Provider Agnostic: Switch models instantly without touching the code.
  • Pre-Handoff Self-Correction: Automatically detects and fixes lint/compilation errors during execution.
  • Dynamic Skill Routing: Automatically equips specialized engineering skills (from 34+ available skills) based on your prompt.
  • Multi-Modal Support: Pass .md files or even UI Mockup Images (.png, .webp) as your prompt!

📦 Installation

npm install -g ceobe-mastery-cli

🛠️ Configuration (CLI Wizard)

Configure your API keys and roles easily using the built-in CLI:

# 1. Set your API Keys
ceobe key set glm <YOUR_GLM_API_KEY>
ceobe key set gemini <YOUR_GEMINI_API_KEY>

# 2. Assign The Three Brains
ceobe key set planner-provider anthropic
ceobe key set qa-provider gemini
ceobe key set executor-provider glm

# 3. Verify your setup
ceobe doctor

📖 Usage Scenarios

1. Greenfield (New Projects)

Start a new project from scratch:

ceobe auto "Build a REST API with Go, Fiber, and PostgreSQL"

2. Brownfield (Adding Features)

Add features to an existing codebase without breaking it:

ceobe auto --feature "Add Stripe payment gateway integration to the checkout module"

3. Data-Driven (Documents & UI Mockups)

Pass a PRD or an image mockup:

# From a document
ceobe auto --file requirements.md

# From an image mockup
ceobe auto --file dashboard-mockup.png "Make this using React and Tailwind"

4. Human-in-the-Loop (Safe Mode)

Want to approve actions before Ceobe executes them?

# Set mode globally
ceobe mode ask

# Or bypass temporarily for one run
ceobe auto "Build a portfolio" --ask

🔍 Utilities

  • ceobe status : Check the current phase of the pipeline.
  • ceobe log : View the execution terminal logs.
  • ceobe reset --yes : Clear all current plans and blueprints.

🤝 How to Contribute

Ceobe is designed to be infinitely expandable. You can add new Skills or Engineering Rules!

  1. Fork this repository.
  2. Add a new Markdown skill in the skills/ folder.
  3. Submit a Pull Request!

📜 License

MIT