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

@adlc/copilot

v1.11.0

Published

Native ADLC plugin for the GitHub Copilot CLI: skills, hooks, MCP tools, and read-only prosecution agents.

Readme

ADLC for GitHub Copilot CLI

Native Agentic Development Lifecycle integration for the GitHub Copilot CLI — the 7th ADLC harness. Operate ADLC gates from inside Copilot with progressive-disclosure skills, rail-protecting hooks, allowlisted MCP gate tools, and read-only prosecution agents.

Requires the gate toolkit: npm i -g @adlc/cli.

Install

copilot plugin marketplace add voodootikigod/adlc
copilot plugin install adlc-copilot@adlc

What it wires

| Primitive | Copilot surface | Notes | | --- | --- | --- | | Rail protection | preToolUse hook | Denies edits to a frozen ticket's rails. | | Build-gate context fitness | preToolUse hook | Runs after rails-guard. | | Ticket / gate context | sessionStart, preCompact, subagentStart/Stop | Advisory narration. | | Flail detection | postToolUse hook | Advisory repeated-failure notice. | | Gate evidence + review trigger | agentStop hook | Advisory. | | Gate tools | .mcp.jsonadlc mcp-server | adlc_gate, adlc_prosecute. | | Prosecution lenses | agents/*.agent.md | Read-only tool allowlists. | | Phase routing / bootstrap | skills/ | adlc, adlc-init, adlc-ticket, adlc-prosecute, adlc-distill, adlc-maintain. |

Enforcement posture (read this)

The preToolUse rails-guard hook denies a frozen-rail edit by emitting {"reason":"…"} on stdout — the deny shape verified end-to-end against Copilot CLI 1.0.73 (the #240 live deny-proof; see docs/integrations/copilot-probe-appendix.md).

The deny is a permission ask, not a hard block — and that ask enforces the rail unless you run with --allow-all-tools. Verified live:

  • Default / explicit --allow-tool <tool> (even --allow-tool edit): the ask can't be answered headless, so it defaults to deny and blocks the tool, overriding the tool allowlist. The rail is protected.
  • --allow-all-tools / --yolo: an allow-all override auto-approves the hook's ask, so the edit proceeds — the hook is neutered. Do not run Copilot with --allow-all-tools if you want in-session rail protection (the fleet adapter defaults to an explicit --allow-tool allowlist for this reason).
  • Crash / timeout: no ask is raised → fail-open. The adapter never throws (internal errors convert to a deny, written synchronously to fd 1), so the only crash window is an OS-level kill or a blown timeoutSec.

The unbypassable guarantee is the CI diff gate (rails-guard-ci), which covers the --allow-all-tools and crash fail-open windows — treat it, not the in-session hook, as the hard enforcement boundary.

The rail-decision logic is a verbatim port of the canonical @adlc/core classifier; test/shell-drift.test.mjs pins it so there is no divergent re-implementation.