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

@mallocfeng/openclaw-codex-app-server-lite

v0.0.2

Published

Minimal OpenClaw plugin for listing Codex App Server projects/threads and binding Telegram or Feishu conversations.

Readme

OpenClaw Codex App Server Lite

Minimal OpenClaw plugin for Telegram and Feishu Codex thread binding and message relay.

This plugin lets a Telegram or Feishu conversation bind to a local Codex thread, then continue sending normal messages into that thread through codex app-server.

The latest version supports both Telegram and Feishu. Feishu support is the main focus of this update.

Compatibility

  • Adapted for the latest OpenClaw 2026.4.5
  • Version 0.0.1 was verified against OpenClaw 2026.4.5
  • Supports Telegram and Feishu

Install

From npm:

openclaw plugins install --dangerously-force-unsafe-install @mallocfeng/openclaw-codex-app-server-lite

From a local checkout:

openclaw plugins install --link "/absolute/path/to/openclaw-codex-app-server-lite"

After installing, updating, or relinking the plugin, run:

openclaw gateway restart

so OpenClaw reloads the plugin code.

Uninstall

openclaw plugins uninstall openclaw-codex-app-server-lite
openclaw gateway restart

Commands

  • /codex_start: list threads, create a thread, or bind the current Telegram or Feishu conversation
  • /codex_stop: detach the current Telegram or Feishu conversation from the bound Codex thread

Config

  • command: Codex CLI command to run, defaults to codex
  • args: extra args passed to codex app-server
  • defaultWorkspaceDir: default workspace used when creating or resuming threads
  • defaultModel: preferred model for new threads
  • inheritHostAuthEnv: when true, forward host auth env vars like OPENAI_API_KEY into codex app-server

inheritHostAuthEnv defaults to false. That is intentional. On machines where OpenClaw uses provider env vars like OPENAI_API_KEY=ollama, forwarding the host auth env into Codex can override Codex OAuth login and break normal thread replies.

Latest Update

Version 0.0.1 includes the OpenClaw 2026.4.5 compatibility refresh, the auth-environment fix for post-bind message failures, and the new Feishu conversation flow.

The main focus of this release is Feishu support.

  • Stop forwarding host provider auth env vars such as OPENAI_API_KEY, OPENAI_BASE_URL, and OLLAMA_API_KEY into codex app-server by default.
  • Preserve a manual escape hatch with inheritHostAuthEnv=true for setups that intentionally use env-based auth.
  • Improve turn failure messaging so Codex auth conflicts are reported clearly instead of surfacing the raw upstream 401 error.
  • Add Feishu support for /codex_start and /codex_stop.
  • Add Feishu text-menu interaction so project and thread selection can continue by replying with numbers.
  • Fix Feishu private-chat and group-chat binding so selection menus stay interactive until the conversation is bound.

Troubleshooting

If Telegram returns:

Codex authentication failed on this machine. A host OPENAI_API_KEY is overriding Codex login. Clear that env var or set inheritHostAuthEnv=true only if you intentionally want env-based auth.

check these items in order:

  1. Confirm Codex is logged in on the machine:

    codex login
  2. Remove the conflicting host auth environment variables:

    launchctl unsetenv OPENAI_API_KEY
    launchctl unsetenv OPENAI_BASE_URL
    launchctl unsetenv OPENAI_API_BASE
  3. Restart OpenClaw so the plugin process picks up the cleaned environment, then bind the conversation again.

Release

Publish a new npm version with:

npm version patch
npm publish --access public