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

@sonim1/preqstation

v0.1.55

Published

PREQSTATION dispatcher with OpenClaw and Telegram-host support

Readme


Current surface version is recorded in VERSION.

The npm package is @sonim1/preqstation, and the installed command is preqstation. The OpenClaw plugin id is preqstation-dispatcher.

What this repo owns

This repository is the durable public PREQ CLI and dispatcher surface for PreqStation. It prepares an operator host, configures request entrypoints, maps local projects, runs health checks, and can launch Claude Code, Codex, or Gemini directly or through integrations such as OpenClaw and Hermes.

  • bin/preqstation.mjs exposes the platform-neutral CLI
  • src/core/ owns project mapping, git worktree preparation, instruction rendering, and detached engine launch
  • src/adapters/openclaw/ owns the OpenClaw before_dispatch hook and /preqstation
  • src/adapters/hermes/ owns optional Hermes payload normalization for deferred webhook experiments

OpenClaw still loads this package through openclaw.plugin.json and root index.mjs. Worker lifecycle actions now run through the preqstation CLI rendered into .preqstation-instructions.txt; preqstation-skill is legacy optional worker support that status, doctor, update, and uninstall can inspect or clean up.

What It Does

The dispatcher receives PREQ intent, resolves a local project checkout on the dispatcher host, creates or reuses an isolated git worktree, writes .preqstation-instructions.txt, and launches the selected engine as a detached process, including detached Codex runs. This is intentionally not the old PTY/background session model: it does not rely on OpenClaw background:true exec or process action:poll / process action:log for the dispatched coding run.

Supported engines:

  • claude-code
  • codex
  • gemini-cli

Hermes is not an engine. Hermes can be a Telegram host that wakes this dispatcher.

Usage

Quick Start

npx -y @sonim1/preqstation@latest install
npx -y @sonim1/preqstation@latest status

preqstation install is the default setup path. It opens an interactive wizard for request entrypoints, agent runtimes, CLI server URL config, and project setup. Native PREQ runtime MCP registration is now a legacy opt-in via preqstation install --with-mcp. See INSTALLATION.md for detailed install, update, uninstall, project setup, and local development flows.

Command Reference

| Command | Description | | --- | --- | | preqstation install | Interactive setup for entrypoints, agent runtimes, CLI config, and project mappings. | | preqstation install --with-mcp | Legacy opt-in for native PREQ runtime MCP registration. | | preqstation status | Read-only installed-state summary for entrypoints, runtimes, CLI auth, legacy MCP, and project mappings. | | preqstation doctor | Read-only health check for dispatcher configuration and runtime availability. | | preqstation auth login | Store the PREQSTATION server URL and create the shared OAuth cache. | | preqstation auth status | Read-only CLI auth readiness check, including the inspected home and OAuth path. | | preqstation task get PROJ-123 | Read task lifecycle data through the CLI JSON contract. | | preqstation comment reply --comment-id ID --body-file reply.md | Reply to task comments without native MCP tool calls. | | preqstation project settings --project PROJ | Read deployment/project settings through the CLI JSON contract. | | preqstation setup auto | Discover local projects and save shared PREQ project mappings. | | preqstation mcp disable codex | Remove only a legacy PREQ MCP registration for a runtime. | | preqstation run | Dispatch a PREQ task or project objective directly from the CLI. | | preqstation uninstall | Remove installed entrypoints, legacy worker support, legacy MCP, or project mappings. |

Documentation