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

@godriftless/driftless-orchestrator

v0.4.0

Published

Public Driftless orchestrator — run coding agents against your own repos, driven by the Driftless task board.

Downloads

207

Readme

driftless-orchestrator

Public NPM package that lets you run coding agents (OMP or Claude Code) against your own repos, driving work from the Driftless task board. The orchestrator runs on your local computer — Driftless hosts zero compute. You bring your own inference (BYOK).

Install

npm install -g @godriftless/driftless-orchestrator

Quick start

driftless run

On first launch, if config is missing or incomplete, the setup wizard runs automatically. It prompts for:

  1. Driftless API key — from your agent settings page on app.godriftless.ai (this is the only credential you need)
  2. Coding agent runtime — OMP or Claude Code

If OMP is selected, the wizard writes the Driftless MCP config and copies the driftless-task-execution-protocol skill file into ~/.omp/agent/. Then run omp separately to log in to your model provider and select a default model — the orchestrator keeps polling, no restart needed.

Repo and workspace paths are configured at the agent settings level in Driftless (not locally). The orchestrator reads them from the Driftless API at dispatch time.

Commands

| Command | Description | | --- | --- | | driftless run | Validate config (run setup wizard if missing), then enter the poll loop. | | driftless status | Show config and last poll timestamp. | | driftless tasks | List currently assigned tasks. |

run is the only command you need. The setup wizard is embedded — no separate setup command.

How it works

The orchestrator is a persistent polling binary:

  • Polls the Driftless API for assigned tasks every 5 minutes (configurable via POLL_INTERVAL_MS).
  • Picks the highest-priority assigned task (skipping blocked-by dependencies).
  • Dispatches your configured coding agent with the task directive.
  • Captures agent stdout, filters OMP JSON events for readable console output, streams live log lines to the Driftless UI via Socket.IO.
  • Parses OMP phase progress and persists it to the Driftless API in real-time.
  • Extracts cost data from OMP output and reports it as BYOK (actual cost on the task for analytics, billable cost to Driftless is zero).
  • Pushes the captured log to S3 via a presigned URL from the Driftless API (permanent audit trail, viewable in the task History tab).
  • Continues polling for new assigned work.

Configuration

Config lives at ~/.driftless-orchestrator.env with file permissions 0600. Server endpoint is hardcoded to https://app.godriftless.ai — not configurable. Agent ID and org ID are resolved automatically from the API key via the agents/me endpoint; you only provide the API key.

Security

  • The client holds zero infrastructure credentials — only your Driftless API key plus local git credentials.
  • No DB connection strings, no Redis strings, no AWS credentials on the client.
  • S3 uploads use presigned URLs from the Driftless API.
  • Coding agent runs locally as your own process; Driftless never touches inference.

Requirements

  • Node.js 22+
  • A coding agent installed locally (OMP or Claude Code)
  • A Driftless account with an agent and API key (app.godriftless.ai)