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

omp-codex-computer

v0.1.6

Published

OMP extension for using OpenAI Codex Computer Use through Codex app-server

Readme

omp-codex-computer

Local OMP extension that exposes OpenAI Codex Computer Use through codex app-server.

Requirements

  • macOS
  • Codex CLI on PATH as codex
  • ChatGPT desktop app with Codex Computer Use enabled/available
  • OMP installed
  • Accessibility and Screen Recording permissions granted when Codex Computer Use asks
  • computer-use MCP server exposed by codex app-server

Installation

Install the npm package through OMP:

omp install omp-codex-computer

For private pre-release testing from GitHub over SSH:

omp install [email protected]:mastertyko/omp-codex-computer.git

For local development, link the working tree into OMP and keep checks green:

omp install .
bun install
bun run check

Inside OMP:

/codex-computer status
/codex-computer diagnose

The extension registers computer_use_* tools for native macOS app inspection and interaction through Codex Computer Use, plus a local computer_use_resolve_app diagnostic tool that helps identify bad app targets before control actions.

Use omp-dev -e . for a local smoke test without installing the package.

Uninstallation

Uninstall the OMP plugin by package/plugin name:

omp plugin uninstall omp-codex-computer

Use omp plugin list to confirm the plugin is no longer installed.

Commands

  • /codex-computer status — checks the Codex CLI, app-server, required MCP tools, and reports additional upstream MCP tools not exposed by this adapter.
  • /codex-computer diagnose — prints the same detailed readiness/update report.
  • /codex-computer enable — enables the computer_use_* tools.
  • /codex-computer disable — disables the computer_use_* tools and shuts down the runtime.
  • /codex-computer restart
  • /codex-computer hide-status — hides the 💻 codex: … footer status for the current extension instance.
  • /codex-computer show-status — shows the footer status again.

Set OMP_CODEX_COMPUTER_STATUS=off before starting OMP to default the footer status to hidden.

Safety

The extension does not automate the desktop directly. It calls Codex app-server, which owns the Computer Use server lifecycle and permission flow. Permission requests fail closed when OMP has no UI available.

Desktop tasks should start with read-only discovery such as computer_use_list_apps, computer_use_resolve_app, or computer_use_get_app_state. If get_app_state returns Invalid app, the adapter enriches the error with target-resolution guidance for cases like unbundled local GUI processes launched as raw executables. Mutating tools are registered with write approval, and the bundled codex-computer skill tells the model to verify after clicks, typing, scrolling, dragging, and value changes.

Contributing and security

  • See CONTRIBUTING.md for the local development workflow and pull request expectations.
  • See SECURITY.md for supported versions and responsible disclosure guidance.

Verification

Local automated checks:

bun run check

Local OMP smoke:

omp-dev -e .
/codex-computer diagnose

Verified on 2026-07-10 with OMP v16.3.14 and Codex CLI 0.144.1:

  • bun run check passed with 95 tests.
  • The thread-scoped readiness check reported all 10 required Computer Use MCP tools.
  • A direct adapter smoke listed available apps and read the ChatGPT app state.