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

nimblco

v0.2.2

Published

Portable agentic coding workflow layer. Embed into any repo to give AI coding agents structured task briefs, specs, plans, and handoff packs.

Readme

Nimblco — Agentic Workflow Layer

npm version npm downloads MIT License

A portable workflow layer you can embed into any repository — new or existing, any language or stack — to give AI coding agents a consistent operating model.

The goal is to keep durable context, planning artifacts, and task state in the repository so people and coding agents can resume work from the repo itself instead of relying on chat history.

The three layers

1. Reusable workflow layer

This starter provides the shared operating model:

  • AGENTS.md as the repo playbook
  • docs/ai/commands.md and docs/ai/standards.md as the always-read baseline
  • docs/specs/, docs/plans/, and docs/ai/tasks/ as the continuity artifacts
  • docs/ai/subagents/ for planner, implementer, reviewer, and tester role definitions
  • scripts/bootstrap.*, scripts/check.*, and the workflow CLI as reusable helpers
  • thin tool adapters for Codex, Claude Code, GitHub Copilot, Gemini, Antigravity, and similar tools
  • skills/ directory with agentskills.io-compliant skill definitions — installable into any compatible agent tool via npx skills add Nimblco/nimblco

Preserve this layer unless you are intentionally changing how the workflow works.

2. Product-owned layer

After installing, teams replace the starter placeholders with their actual product context:

  • docs/ai/project-context.md for durable product facts
  • docs/ai/architecture.md for current system shape and boundaries
  • docs/ai/decisions.md for durable engineering decisions
  • docs/ai/future-work.md for deferred work and known gaps

This is where the repo should start sounding like the real product instead of the starter.

3. Execution layer

Active work lives in committed workflow artifacts:

  • docs/specs/ for approved behavior, architecture, or workflow specs
  • docs/plans/ for implementation steps
  • docs/ai/tasks/ for current task status, handoff notes, and validation state

This layer changes often. Archive or replace it as work moves forward.

How teams use this starter

  1. Read AGENTS.md and the always-read docs in docs/ai/.
  2. Use docs/ai/quickstart.md for the practical workflow onboarding, including how to run the spec/plan/task loop.
  3. Replace the starter placeholders in the product-owned layer with real product context.
  4. For behavior, architecture, workflow, or multi-step work, create or update a spec in docs/specs/.
  5. Create or update the matching plan in docs/plans/.
  6. Create or update a task brief in docs/ai/tasks/ for every non-trivial change.
  7. Run the documented validation commands before handoff or review.

Tool portability

The workflow layer is designed to stay portable across tools. Keep the shared guidance in AGENTS.md, and keep tool-specific files as adapters rather than separate workflow systems.

  • CLAUDE.md and .claude/rules/ cover Claude Code compatibility
  • GEMINI.md stays minimal for Gemini-compatible tools
  • .github/copilot-instructions.md, .github/instructions/, and .github/prompts/ cover GitHub Copilot
  • .agent/ holds Antigravity rules and workflows

Quick start

Install into an existing or new repo

Prerequisite: Node.js >= 18 is required to run the installer, but the installed workflow layer works in any repository regardless of language or stack.

npx nimblco <target-directory>

This runs the interactive setup wizard, copies the workflow layer into your target repo, and injects the workflow scripts into your existing package.json if one is present.

Flags:

| Flag | Description | |------|-------------| | -y, --yes | Accept all defaults (non-interactive) | | -f, --force | Overwrite existing files | | --include-archives | Copy archived task/spec/plan history | | --tools=<list> | Comma-separated AI tools to install adapters for (e.g. claude,copilot,cursor) | | -h, --help | Show help |

Use the workflow CLI in your repo

# Pre-flight check: verify the workflow layer is installed correctly
pnpm workflow doctor

# Create a task brief + spec + plan for a new piece of work
pnpm workflow scaffold --slug <topic> --artifacts bundle

# Validate the active task brief and linked artifacts
pnpm workflow check

# Show the active task brief summary
pnpm workflow status

# Export a portable handoff pack for another AI tool
pnpm workflow pack --to gemini

# Export a pack with a compressed codebase snapshot
pnpm workflow pack --compress

# Print a copy-pasteable resume prompt
pnpm workflow handoff

# Archive a completed bundle
pnpm workflow finalize

# Install skills into a compatible agent tool
pnpm workflow skill add Nimblco/nimblco

See docs/ai/quickstart.md for the full workflow onboarding guide.

Develop or contribute to this repo

This repo does not require Corepack. If pnpm is not installed globally, run it through npm exec --yes -- pnpm ... instead.

npm exec --yes -- pnpm install
./scripts/check.sh
npm.cmd exec --yes -- pnpm install
powershell -ExecutionPolicy Bypass -File .\scripts\check.ps1

License

MIT