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

codxline

v0.1.0

Published

A Codex MCP desktop status island for Windows.

Readme

Codex Island

Minimal Windows desktop prototype for showing Codex work status.

What it does

  • top-centered always-on-top capsule window
  • borderless liquid-glass style pill UI
  • automatic local Codex activity sensing from .codex file timestamps
  • local status bridge over http://127.0.0.1:8765/status
  • fallback file state in status.json
  • no external dependencies; uses Python standard library only

Run

python app.py

Close with Esc, Ctrl+Q, or right click. Drag the pill with the mouse if you want to reposition it.

By default it watches recent changes under %USERPROFILE%\.codex. The status light follows this table:

  • green: executing
  • yellow: waiting for your confirmation
  • red: error
  • gray: idle

The automatic file watcher can infer executing and idle. waiting and error are available through the local status bridge when Codex integration sends those states.

Run manual-only mode if you only want external updates:

python app.py --source manual

Send a status update

python simulate_status.py --detail "Editing files" --state working
python simulate_status.py --detail "Waiting for approval" --state waiting
python simulate_status.py --detail "Tool failed" --state error
python simulate_status.py --detail "Waiting for next message" --state idle

In default auto mode, automatic Codex activity may overwrite manual updates on the next refresh. Use --source manual for demos or external integrations.

Integration shape

Any future Codex bridge only needs to POST JSON to:

{
  "title": "Codex",
  "detail": "Running tests",
  "state": "working"
}

Supported keys today:

  • title
  • detail
  • state

accent and updated_at are generated by the app from state.

Codex MCP autostart

Install from npm

After this package is published as codxline, other users can install and register it with one command:

npx -y codxline install

That command installs codxline globally, checks codex and python, then registers the MCP server with Codex.

Requirements on the target PC:

  • Windows
  • Node.js/npm
  • Python 3 in PATH
  • OpenAI Codex CLI in PATH

Useful commands:

codxline status
codxline uninstall

This project includes a stdio MCP server:

python mcp_server.py

It starts or reuses the desktop island as soon as Codex launches the MCP server. When Codex closes the MCP connection, the island is closed too. It also exposes one tool:

  • show_codex_island

The server is registered globally with Codex as:

codex mcp add codex-island -- python C:\Users\32676\CodexIsland\mcp_server.py

Check it with:

codex mcp get codex-island

Remove autostart with:

codex mcp remove codex-island