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

@moyeranqianzhi/acx

v0.128.0-win32-x64

Published

<p align="center"><code>npm i -g @moyeranqianzhi/acx</code></p> <p align="center"><strong>ACX</strong> is an enhanced version of <a href="https://github.com/openai/codex">OpenAI Codex CLI</a> with built-in <a href="https://github.com/MoYeRanqianzhi/AutoCo

Readme

ACX — AutoContinue + Codex


What is ACX?

ACX = AutoContinue + CodeX

Built on top of OpenAI Codex CLI, ACX embeds the core logic of AutoContinue to provide:

  • Auto-Continue: Automatically sends a continue prompt after each turn completes — no manual intervention needed
  • Smart Retry: Retries with exponential backoff on transient errors (rate limits, server overload, connection failures, etc.), capped at 5 minutes
  • Auto-Stop on Fatal Errors: Permanent errors like context exceeded or auth failure stop immediately without wasting retries
  • Extensible Stop Hooks: Stop based on round count, wall-clock time, duration, or custom commands
  • /acx-stop Command: Manually stop auto-continue at any time from the TUI

All original Codex CLI features are fully preserved.

Installation

npm install -g @moyeranqianzhi/acx

After installation, use the acx command. Auto-continue is enabled by default — no extra flags needed.

Usage

# Auto-continue is enabled by default
acx "your task description"

# Custom continue prompt and delay
acx --continue-prompt "Keep iterating" --sleep-time 10 "refactor the project"

# With stop conditions
acx --stop-when "<round=5>" --stop-when "<duration=3600>" "optimize the codebase"

# Stop manually during a session: type /acx-stop in the TUI

ACX Flags

| Flag | Short | Description | Default | |------|-------|-------------|---------| | --continue-prompt | -cp | Continue prompt text | "Continue" | | --continue-prompt-io | -cpio | Continue prompt IO file (re-read each time) | — | | --continue-prompt-pipe | -cpp | Continue prompt pipe command | — | | --sleep-time | -st | Base delay in seconds (exponential backoff on errors) | 15 | | --stop-when | -sw | Preset stop condition (repeatable) | — | | --stop-hook | -sh | Custom stop hook command (repeatable) | — |

Stop Condition Examples

--stop-when "<round=10>"       # Stop after 10 rounds
--stop-when "<error>"           # Stop on any error (no retry)
--stop-when "<duration=3600>"   # Stop after 1 hour
--stop-when "<time=2026-01-01T08:00:00>"  # Stop at a specific time

Supported Platforms

| Platform | Architecture | Status | |----------|-------------|--------| | Linux | x86_64, ARM64 | ✅ | | macOS | ARM64 (Apple Silicon) | ✅ | | Windows | x86_64, ARM64 | ✅ |

Upstream Sync

ACX automatically syncs with openai/codex upstream updates every hour via GitHub Actions. ACX modifications follow a minimal-insertion principle (marked with // [ACX] comments), with core logic encapsulated in a standalone codex-auto-continue crate to minimize merge conflicts.

Acknowledgements

License

This project is licensed under the Apache-2.0 License, consistent with upstream Codex.

Documentation