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

agentplane

v0.6.23

Published

CLI-first operational workflows and traces for AI agents.

Downloads

2,077

Readme

AgentPlane CLI

Git-native infrastructure for traceable AI work.

agentplane is a local-first CLI that turns Claude Code, Codex, Cursor, Aider, and similar coding-agent changes into reviewable Git evidence: task intent, approved plan, verification, finish state, and Agent Change Record.

Use any coding agent. Keep the review trail in your repository.

npm Downloads GitHub stars License: MIT Node.js 24+

SLSA v1 provenance Trusted publisher Recipes signed: Ed25519

Install in 30 seconds

npm i -g agentplane
agentplane init
agentplane quickstart

Prefer no global install:

npx agentplane init
npx agentplane quickstart

Requirements: Node.js 24+, Git, and a local terminal.

Experimental agent shorthand:

ap next
ap show <task-id>
ap vshow <task-id>

ap is an agent-optimized entrypoint for compact, non-interactive command use. Keep public docs and human-facing setup on agentplane; use ap only when the installed package exposes it.

What you get after agentplane init

AGENTS.md or CLAUDE.md   Policy gateway for the repository
.agentplane/            Repo-local workflow workspace
.agentplane/WORKFLOW.md Current workflow/config contract
.agentplane/agents/     Installed agent profiles
.agentplane/tasks/      Per-task records and evidence
.agentplane/workflows/  Last-known-good workflow snapshot

AgentPlane records the task trail inside the repository you already review.

One task loop

agentplane task new --title "Fix parser edge case" --description "Reject empty labels." --owner <agent-id> --tag code
agentplane task plan set <task-id> --text "Add a fixture, tighten validation, and run focused tests." --updated-by <agent-id>
agentplane task plan approve <task-id> --by <reviewer-id>
agentplane task start-ready <task-id> --author <agent-id> --body "Start: implementing parser validation with focused tests."
# Run Claude Code, Codex, Cursor, Aider, or edit manually.
agentplane task verify-show <task-id>
agentplane verify <task-id> --ok --by <agent-id> --note "Focused tests passed."
agentplane finish <task-id> --author <agent-id> --result "Parser rejects empty labels." --commit <git-rev>

The visible output is the point: a reviewer can inspect task intent, plan, verification, closure, and ACR from Git-visible files.

Agent IDs are configurable profiles. See Agents.

Agent Change Record

Every task can produce an Agent Change Record (ACR), a commit-safe JSON evidence projection of intent, accepted plan, Git commits, policy decisions, verification result, and merge readiness.

agentplane acr generate <task-id> --work-commit HEAD --write
agentplane acr validate <task-id> --mode local
agentplane acr check <task-id> --mode ci
agentplane acr explain <task-id>

Schema: https://agentplane.org/schemas/acr-v0.1.schema.json

Workflow modes

  • direct keeps work in the current checkout for fast local loops.
  • branch_pr creates per-task branches, worktrees, PR artifacts, and integration handoff.

Not another agent

AgentPlane does not replace your coding agent, editor, terminal, Git, CI, or PR review. It records the evidence around the tools you already use.

Compatible with

Claude Code, Codex CLI, Cursor agent, Aider, GitHub Actions agent runners, and MCP-driven workflows. AgentPlane does not replace them; it records what they did and whether your gates passed.

Recipes

Recipes are optional signed behavior modules. Start with the task -> plan -> verify -> ACR flow first; add recipes only when you need reusable profiles, prompt modules, skills, or repository mapping:

agentplane recipes list-remote
agentplane recipes install code-map --refresh --yes

Start with Code Map.

Docs

Repository

https://github.com/basilisk-labs/agentplane

License

MIT