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

biotonomy

v0.2.7

Published

Codex-native autonomous development loop CLI

Downloads

691

Readme

Biotonomy

Biotonomy (bt) is a CLI for running a Codex-driven development workflow in a repo:

spec -> research -> plan-review -> implement -> review -> fix -> pr

It supports both:

  • manual stage-by-stage execution
  • a one-command iterative loop with bt loop

Quickstart

Prereqs: Node.js >= 18, git, Codex CLI available as codex (or set BT_CODEX_BIN).

# Install
npm i -g biotonomy

# In your project repo
bt bootstrap

# Create a feature scaffold
FEATURE=hello-world
bt spec "$FEATURE"

# Loop requires an approved plan review verdict first
cat > "specs/$FEATURE/PLAN_REVIEW.md" <<'MD'
Verdict: APPROVED_PLAN
MD

# Run autonomous implement/review/fix iterations (with gates)
bt loop "$FEATURE" --max-iterations 3

bt loop

bt loop <feature> [--max-iterations N] runs:

  1. preflight quality gates
  2. implement
  3. review
  4. fix only when review verdict is NEEDS_CHANGES
  5. repeat until verdict is APPROVE/APPROVED and gates pass, or max iterations is reached

Loop hard-requires an approved specs/<feature>/PLAN_REVIEW.md verdict (APPROVE_PLAN or APPROVED_PLAN).

Artifacts And State

Biotonomy writes feature state under specs/<feature>/:

  • SPEC.md
  • RESEARCH.md
  • PLAN_REVIEW.md
  • REVIEW.md
  • history/ stage snapshots (###-<stage>.md) and loop iteration snapshots (*-loop-iter-###.md)
  • loop-progress.json loop summary and per-iteration status
  • progress.txt append-only stage log
  • .artifacts/ Codex logs and command artifacts (for example codex-implement.log, codex-review.log, codex-fix.log)
  • gates.json feature gate results when running bt gates <feature>

Global gate state is written to .bt/state/gates.json when running bt gates without a feature.

Manual Commands

bt bootstrap
bt spec <feature|issue#>
bt research <feature>
bt plan-review <feature>
bt implement <feature>
bt review <feature>
bt fix <feature>
bt loop <feature> [--max-iterations N]
bt gates [feature]
bt status
bt pr <feature> [--run]

Configuration

Project config lives in .bt.env (created by bt bootstrap). Common overrides:

BT_SPECS_DIR=specs
BT_STATE_DIR=.bt
BT_GATE_LINT="npm run lint"
BT_GATE_TYPECHECK="tsc --noEmit"
BT_GATE_TEST="npm test"
BT_CODEX_BIN="/path/to/codex"

Release

Run the release readiness checks:

npm run release:ready

That script runs tests, lint, pack verification, and npm pack --dry-run.