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

docks-kit

v0.8.0

Published

Portable AI coding agent config kit — SoT sync engine + typed CLI for Claude Code, Codex, and universal agent skills

Readme

docks-kit

Portable configuration kit for AI coding agents. Per-tool Single Source of Truth (SoT) directories are deployed to each tool's user-config location — clone once, sync everywhere, get a consistent AI-assisted dev environment on every machine. Tuned for token efficiency without sacrificing quality.

Supported tools: Claude Code, Codex, and any agent consuming agentskills.io universal skills.

Quick start

git clone https://github.com/DocksDocks/public.git ~/projects/public
cd ~/projects/public
./docks-kit sync            # deploy everything (Claude Code + Codex + skills)
./docks-kit status          # doctor view: drift, toolchain, plugins, skills

The ./docks-kit launcher prefers a compiled binary (cli/dist/) only when its version matches the checkout, then runs from source via Bun — auto-installing Bun and dependencies when missing. Stale ignored build artifacts cannot mask newer checkout code.

Other install paths (global bun add -g docks-kit, curl installer) — see ./docks-kit docs install.

No-Bun recovery path:

Download the platform release binary from GitHub Releases and run it directly. The executable carries the generated sync payload; no checkout or adjacent SoT/ directory is required.

Prerequisites for source/global installs: Bun; Node/npm for npm-global tools. jq is optional doctor/test tooling. curl is used only at requested POSIX RTK/Bun download boundaries, not as a global sync prerequisite.

CLI

docks-kit sync [claude] [codex] [agents]   deploy the SoT (default: all three)
docks-kit update [--no-sync]               self-update the kit (autodetects checkout vs global install), then sync
docks-kit model <claude|codex> [value]     get/set the DEPLOYED model (TTY picker)
docks-kit models [claude|codex|workflow]   model and workflow-role catalogs (`--json`)
docks-kit toolchain [check|ensure <tool>]  verified-version floors for external tools
docks-kit status [--json]                  deployed-vs-SoT drift + toolchain + counts
docks-kit plugins list [--json]            enabledPlugins tri-state vs installed
docks-kit skills list [--json]             universal skills vs manifest
docks-kit docs [topic]                     self-documentation (9 topics)
--help --version --wizard --completions    built-in

The CLI is a typed front-end (Effect-TS on Bun); all mutation runs through EngineNative in cli/src/engine-native/, with golden-regression coverage for dry-run output, mutation snapshots, and argv logs.

Key flags (docks-kit sync)

| Flag | Effect | |------|--------| | --dry-run | Preview without applying | | --reconcile | Reconcile kit-owned settings toward SoT (user-only keys preserved) | | --prune | Uninstall kit-managed plugins/marketplaces/skills not in SoT | | --claude-model=<m> | Deploy-time modifier: deployed Claude model | | --claude-compact-window=<n> | Deploy-time modifier: autocompact window (680k) | | --claude-permissive | Deploy-time modifier: empty ask/deny (sandboxes only) | | --claude-plugin=<name> | Sticky opt-in plugin (supabase, n8n) | | --codex-model=<m> | Deploy-time modifier: deployed Codex model | | --skip-rtk | Skip optional tool bootstrap | | --skip-plugin-refresh | Install missing plugins but skip refresh-only updates (used automatically by docks-kit update) | | --yes | Auto-accept toolchain prompts (CI/containers) |

Deploy-time modifiers change deployed config only — the SoT is untouched and a later flag-less sync reverts them. Full reference: docks-kit docs flags (includes the old→new rename table for the pre-CLI sync.sh flags).

Docks workflow roles (root flags)

| Flag | Effect | |------|--------| | --model-orchestrator=<selector> | Override the Docks orchestrator candidate/profile | | --model-reviewer=<selector> | Override the Docks reviewer candidate/profile | | --model-implementer=<selector> | Override the Docks implementer candidate/profile | | --review-min-score=<0..100> | Override the completion-review target | | --review-max-rounds=<1..10> | Bound completion-review batches |

Selectors are strict profile:<name> or <tool>:<model>@<effort>[+fast] values from docks-kit models workflow; +fast is Codex-only. A selector without +fast means Standard, while +fast writes a schema-2 candidate with service_tier: "fast". These root flags update only the identical compact record in ~/.claude/CLAUDE.md and ~/.codex/AGENTS.md; omitted fields retain their current valid values, while a later flag-less sync restores all defaults.

How syncing works

  • Additive by default — user-only settings keys, plugins, and skills survive a plain sync. Reconciliation toward the SoT is explicit (--reconcile / --prune).
  • Idempotent — every step is safe to re-run; no-change syncs are no-ops.
  • Toolchain floors — external tools (RTK, bun, agent-browser, effect-solutions, …) install/upgrade against SoT/toolchain.json: versions above the kit-verified pin prompt before installing (--yes accepts; non-TTY falls back to the pinned verified version when possible). docks-kit toolchain check shows the full table.
  • Model catalogSoT/models.json is the research-verified source for model validation, listings, pickers, and the Docks workflow-role registry.
  • Claude runtime — sync materializes three dependency-free Bun .mjs programs for statusline, SessionStart, and Notification. Quota display uses Claude's native rate_limits; there is no OAuth fetch, shared usage cache, or Stop hook. If Bun cannot be resolved or bootstrapped, sync preserves a working legacy hook/statusline setup and reports that migration is deferred.

Repository map

| Path | Purpose | |------|---------| | SoT/.claude/ | Claude Code SoT (settings template, Bun runtime programs, CLAUDE.md) | | SoT/.codex/ | Codex SoT (config.toml, rules, AGENTS.md, marketplace) | | SoT/.agents/ | Universal-skill manifest | | SoT/models.json | Kit-verified model and Docks workflow-role catalog | | SoT/toolchain.json | Verified-version floors | | cli/src/engine-native/ | EngineNative sync/model/toolchain implementation | | cli/src/generated/sotPayload.ts | Generated in-memory payload used by standalone and npm installs | | cli/ | docks-kit CLI (Effect-TS on Bun) + bundled docs topics | | docks-kit | Launcher (binary → bun-from-source) | | install.sh | Global installer (Bun bootstrap + bun add -g) | | docs/plans/ | Multi-commit work-item plans | | AGENTS.md / CLAUDE.md | Agent-facing engineering rules / Claude Code specifics |

Platform support

| Platform | CLI | Sync engine | |----------|-----|-------------| | Linux | ✅ native | ✅ native | | macOS (x64/arm64) | ✅ native | ✅ native | | Windows | ✅ native binary (.exe and bun add -g CI-verified) | ✅ EngineNative (TS, default engine — no Git Bash); real-machine verified 2026-07-09 — RTK hooks are native too (rtk ≥0.37.2) |

Details: docks-kit docs platforms.

Releases

Tagging cli-v* builds five standalone binaries (+ SHA256SUMS) and attaches them to the GitHub release; npm publish runs when the NPM_TOKEN secret is configured. Package bundles the CLI + generated payload, so npm releases are versioned config snapshots without shipping the authoring SoT/ tree.

Deeper docs

  • docks-kit docs <topic> — overview, sync-layers, flags, modifiers, models, toolchain, plugins, install, platforms (works offline, bundled with the CLI)
  • AGENTS.md — engineering rules for agents working on the kit
  • CLAUDE.md — Claude Code specifics: env vars, session management, permission mode, open concerns