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

delegation-kit

v0.26.1

Published

User-directed model delegation for Claude Code and Codex with personal model configuration, technical adapter controls and optional review.

Readme

delegation-kit

User-directed model delegation for Claude Code and Codex. Configure the models you want through existing native adapters or any supported OpenAI-compatible text endpoint. No kit qualification or benchmark is required to use a model.

Every dispatch requires an explicit user request. Authorization never silently extends to retries, fallback, review or more workers. The lead verifies results before integration. Review is optional by default, with required and cross-family policies available.

Quick start

./install.sh
# Inspect and edit the personal configuration, then validate it:
delegation-config show
delegation-config validate
delegation-config apply
delegation-route resolve --lane builder --json

The installer initializes the personal configuration only if absent and backs up a legacy installation before migration. Profiles live outside projects at ${XDG_CONFIG_HOME:-$HOME/.config}/delegation-kit/config.json, with an explicit DELEGATION_CONFIG_FILE override. Never put credential values in profiles.

Configuration examples and migration include an existing provider and a local endpoint, parameter support, model identity, review policies and output schemas. Selection is read-only and grants no permission. Run a selected profile only when the user explicitly requests it:

delegation-run --profile PROFILE --lane builder \
  --prompt-file /tmp/task.txt --output /tmp/result.txt --workdir /path/to/repo

Capabilities and evidence

Native adapters retain sandbox and file-access controls. Text adapters only send the supplied prompt and return text or a patch; assigning a builder role cannot grant worktree access. No automatic provider substitution or retry.

Metrics distinguish requested model identity from provider-reported identity. An absent identity is usable as requested-only; an incompatible response model fails unless its alias was explicitly configured. Provider reports are not independent certification.

The kit ships no routing gates, benchmark evidence, or qualification machinery. config/presets.json holds the starting profiles, adapters own their roles and efforts, and evaluation/ is a frozen archive of earlier qualification runs that no command reads.

Current release: 0.26.1

Version 0.26.1 corrects the 0.26.0 compatibility snapshot. Version 0.26.0 removes every dispatch timeout the kit imposed on its own: a run has no time limit unless the profile sets timeout, which now bounds the whole run on every adapter, native CLIs included. The --allow-provisional no-op is gone. Version 0.25.2 trimmed the kimi-k3 preset to the roles its runner implements. Version 0.25.1 fixed the installer so a key file the uninstaller backed up is restored instead of asked for again, and cleans the last gate-era wording out of the configuration docs. Version 0.25.0 removed the qualification machinery that 0.24.0 had demoted to history: the central and executable routing gates, the executor contract, the evidence snapshot and Epoch importer, the schema compiler, and the runners' --evaluation and --preflight-only modes are gone, together with roughly 13,000 lines of code, records, tests, and documentation. The starting profiles now live in config/presets.json; each runner's check reports the adapter's roles and efforts; delegation-route is a read-only discovery over the personal configuration. Explicit per-dispatch authorization, sandboxes, model identity checks, and the patch trust boundary are unchanged. See CHANGELOG.md for details and full history.

Documentation

Testing

./run-tests.sh
npm test

The suites use isolated fixtures and simulated providers. Tests do not authorize or prove live provider behavior. Releases and live paid tests are separate work.

npm package

npx delegation-kit runs the installer from a verified release checkout. The npm package is an installer wrapper, not a second runtime implementation.

License

MIT. See LICENSE.