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

ranker-agentic-workflow

v0.8.0

Published

Minimal but powerful agentic workflow initializer (agents, skills, tasks) for coding teams and AI assistants.

Readme

Ranker Agentic Workflow

A minimal but complete agentic delivery system with strong defaults, real gates, and multi-agent compatibility.

Core Capabilities

  • Multi-agent contracts: AGENTS.md, CLAUDE.md, OPENCODE.md, AI-WORKFLOW.md
  • Baseline + advanced skills for feature delivery
  • Specialized task templates (API, data, UI, performance, incident hotfix)
  • Real execution command with gates: run
  • Team CI command: ci-check
  • Workflow benchmark command: benchmark
  • Upgrade command for existing repos: migrate
  • Dashboard command: status
  • Smart run cache for faster repeated checks
  • Risk engine and policy enforcement
  • Autopilot reliability loop for weaker models
  • Project context indexing (local RAG-ready index)
  • Auto-tuning from run metrics
  • Installation profiles and domain packs

Install

From npm (after package is published):

npx ranker-agentic-workflow init my-project

From GitHub (works immediately, even before npm publish):

npx github:ranker-002/ranker-workflow init my-project

Interactive wizard:

npx ranker-agentic-workflow init my-project --interactive

Advanced install:

npx ranker-agentic-workflow init my-project \
  --agents codex,claude,opencode \
  --profile strict \
  --packs backend,data,security

Troubleshooting Install

If you get npm ERR! 404 Not Found for ranker-agentic-workflow, the package is not published yet on npm.

Use GitHub source directly:

npx github:ranker-002/ranker-workflow init my-project

Use the same GitHub prefix for any command:

npx github:ranker-002/ranker-workflow ci-check .
npx github:ranker-002/ranker-workflow feature auth-hardening --type api
npx github:ranker-002/ranker-workflow run .ultra-workflow/tasks/feature.yml

Tip: once npm publication is confirmed, switch back to npx ranker-agentic-workflow ....

Commands

npx ranker-agentic-workflow feature auth-hardening --type api --title "Harden login API"
npx ranker-agentic-workflow feature --wizard
npx ranker-agentic-workflow run .ultra-workflow/tasks/feature-api.yml --review-approved --docs-updated
npx ranker-agentic-workflow run .ultra-workflow/tasks/feature-api.yml --strict-manual-gates
npx ranker-agentic-workflow run --auto --plan-only
npx ranker-agentic-workflow run --auto --review-approved --docs-updated
npx ranker-agentic-workflow validate .ultra-workflow/tasks
npx ranker-agentic-workflow doctor . --fix
npx ranker-agentic-workflow ci-check . --task .ultra-workflow/tasks/feature.yml
npx ranker-agentic-workflow benchmark .
npx ranker-agentic-workflow migrate .
npx ranker-agentic-workflow migrate . --dry-run
npx ranker-agentic-workflow status .
npx ranker-agentic-workflow autopilot .ultra-workflow/tasks/feature.yml --strict-manual-gates
npx ranker-agentic-workflow index .
npx ranker-agentic-workflow risk .ultra-workflow/tasks/feature-api.yml
npx ranker-agentic-workflow tune . --apply

Strict Manual Gates

When using --strict-manual-gates, review/docs gates require evidence directly in task files:

review_evidence:
  approver: "team-handle"
  reference: "PR-123 or review URL"
docs_evidence:
  updated_files:
    - "README.md"

Packs

  • backend
  • data
  • frontend
  • security
  • performance

Operator Docs

  • .ultra-workflow/references/operator-guide.md
  • .ultra-workflow/references/cookbook.md
  • .ultra-workflow/references/failure-modes.md
  • .ultra-workflow/references/packs.md

CI

Template workflow is provided at .github/workflows/ranker-agentic-ci.yml. Additional templates:

  • .gitlab-ci.yml
  • bitbucket-pipelines.yml

Go-To-Production

Operational launch pack:

  • docs/go-to-production/README.md
  • docs/go-to-production/01-release-checklist.md
  • docs/go-to-production/02-kpis.md
  • docs/go-to-production/03-roadmap-30-days.md
  • docs/go-to-production/04-oss-launch-plan.md
  • docs/go-to-production/05-npm-publish.md

Demo Video (Remotion)

npm run video:preview
npm run video:render
npm run video:render:v2
npm run video:render:v3
npm run video:render:v3:vertical

Project files:

  • video/remotion/

License

MIT

Release

  • CI workflow: .github/workflows/ci.yml
  • npm release workflow: .github/workflows/release.yml
  • Required secret for publish: NPM_TOKEN
  • Local preflight: npm run release:preflight