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

@sireai/optimus

v0.1.5

Published

Optimus Codex-native background task runtime and harness scaffolding.

Readme

Optimus

Optimus is a task-execution agent runtime. It accepts problem reports, turns them into governed tasks, runs analysis or code changes against bound repositories, and returns status, results, and delivery outputs.

What It Does

  • accepts manual submissions or external problem signals
  • routes raw input into executable tasks
  • runs analysis, fixes, validation, and delivery against registered repositories
  • returns task status, structured results, review links, and notifications

How It Works

Optimus workflow

From a user view, the flow is simple: submit a problem, let Optimus run inside the target repository, validate the outcome, then consume the result and next action.

Quick Start

1. Install

npm install -g @sireai/optimus

2. Run setup

optimus setup

Setup creates the ~/.optimus runtime home, registers the first repository, configures Codex authentication, and records Jira, Sentry, and Feishu integration settings. When Jira and Sentry are both enabled, setup also stores the Jira project key used to auto-create Jira issues for Sentry-origin patch publication.

Supported Codex auth modes:

  • openai_api_key
  • codex_cli_login
  • model_provider

3. Run a quick health check

optimus doctor --quick

4. Start the runtime

optimus start

submit sends work to the resident runtime, so start the service after setup.

5. Submit a task

optimus submit --title "Login crash" --description "Crash happens on startup with stack trace"

Common Commands

Base commands:

optimus --help
optimus version
optimus upgrade --check
optimus upgrade
optimus setup
optimus doctor --quick
optimus start
optimus submit --title "..." --description "..."

Task inspection:

optimus retry-task --task-id <taskId>
optimus cancel-task --task-id <taskId>
optimus task-status --task-id <taskId>
optimus task-result --task-id <taskId>
optimus delivery-status --task-id <taskId>
optimus task-events --task-id <taskId>

Repository management:

optimus repo add /path/to/repo --alias mobile-app
optimus repo list
optimus repo doctor

Jira intake:

optimus jira-submit-issue --issue-key MICARAPPI-13178 --repo mobile-app

Sentry intake:

optimus sentry-get-event --event-id 75d361c269bc40598c44e2eec75022f3
optimus sentry-submit-event --event-id 75d361c269bc40598c44e2eec75022f3 --repo mobile-app

More Docs