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

claude-autopm

v3.25.4

Published

Autonomous Project Management Framework for Claude Code - Advanced AI-powered development automation

Readme

ClaudeAutoPM

NPM Version NPM Downloads MIT License GitHub Stars

AI-Powered Project Management Framework for Claude Code

ClaudeAutoPM transforms your development workflow with intelligent automation, specialized AI agents via a plugin system, and complete GitHub/Azure DevOps integration. Install only what you need — pay only for the tokens you use.


Quick Install

npm install -g claude-autopm
cd your-project
autopm install

Choose your scenario during installation:

| Scenario | Agents | Use case | |----------|--------|----------| | Lite | 7 core | Minimal token footprint | | GitHub | 12 | Core + languages for GitHub projects | | Azure | 14 | Core + languages + Azure DevOps | | Docker | 16 | Core + DevOps + containers | | Obsidian | 12 | PM + Obsidian vault integration | | Full | 44+ | All plugins, all agents | | Performance | 44+ | Full + max parallelization |


Architecture

Plugin-Based Agent System

ClaudeAutoPM uses a plugin architecture for token efficiency. Only 7 core agents are loaded by default. Specialized agents are installed on demand via plugins.

autopm/.claude/agents/       ← 7 core agents (always available)
packages/plugin-*/agents/    ← 37+ specialized agents (per plugin)

Token savings: Lite installs use 73% fewer agent tokens vs full.

XML Rules Engine

7 critical rules auto-loaded via @include in XML format:

| Rule | Enforcement | |------|-------------| | tdd.enforcement.xml | Zero-tolerance TDD cycle | | coverage-thresholds.xml | 80/75/80/80 coverage gates | | agent-mandatory.xml | Agent delegation + context strategy | | context7.xml | Context7 MCP before any library code | | github-operations.xml | Repo protection + mandatory issue footer | | naming-conventions.xml | Naming prohibitions + code quality | | command-pipelines.xml | 5 mandatory command sequences |

3 MD operational guides: standard-patterns.md, frontmatter-operations.md, git-strategy.md

Dynamic Agent Registry

agent-registry.xml is generated at install time based on selected plugins:

<!-- Core agents (always present) -->
<agents category="core">
  <agent name="code-analyzer">...</agent>
  <agent name="test-runner">...</agent>
  ...
</agents>

<!-- Plugin agents (injected by installer) -->
<!-- PLUGIN_AGENTS_START -->
<agents category="languages">...</agents>
<agents category="frameworks">...</agents>
<!-- PLUGIN_AGENTS_END -->

Core Agents (Always Available)

| Agent | Purpose | |-------|---------| | agent-manager | Agent lifecycle, registry maintenance | | code-analyzer | Code analysis, bug detection, logic tracing | | test-runner | Test execution with actionable insights | | file-analyzer | Summarize large files, reduce context | | parallel-worker | Multi-agent parallel work streams | | mcp-manager | MCP server install, config, health | | context-optimizer | Context window efficiency, compaction |

Plugin Agents

| Plugin | Agents | Examples | |--------|--------|----------| | plugin-languages | 5 | python-backend-engineer, nodejs-backend-engineer, bash-scripting-expert | | plugin-frameworks | 6 | react-frontend-engineer, tailwindcss-expert, e2e-test-engineer | | plugin-cloud | 8 | aws-cloud-architect, kubernetes-orchestrator, terraform-expert | | plugin-devops | 7 | docker-expert, github-operations-specialist, observability-engineer | | plugin-databases | 5 | postgresql-expert, mongodb-expert, redis-expert | | plugin-ai | 8 | openai-python-expert, gemini-api-expert, langchain-expert | | plugin-data | 3 | airflow-orchestration-expert, kedro-pipeline-expert | | plugin-testing | 2 | frontend-testing-engineer, e2e specialists | | plugin-ml | 2 | ML workflow agents | | plugin-pm | — | 29 PM commands (PRD, epic, issue management) |


Quick Start

All commands run inside Claude Code (not terminal):

# Initialize context and testing
/context:create
/testing:prime

# PM workflow
/pm:issue-start 42
/pm:issue-finish 42

# Working with agents
@python-backend-engineer Build FastAPI endpoint
@test-runner execute all tests
@code-analyzer review recent changes

Features

14 Official Plugins

  • Core — Context management, testing, configuration, MCP
  • PM System — PRD, epics, issues, decomposition, git workflow
  • Obsidian — Read-only vault sync, Dataview frontmatter, diagnostics
  • Azure DevOps — Work items, boards, pipelines, sprints
  • GitHub — Workflows, issues, PRs, automation
  • Languages — Python, JavaScript, Node.js, Bash
  • Frameworks — React, Tailwind, UX, E2E testing, NATS
  • Testing — Frontend unit/integration, E2E
  • DevOps — Docker, Kubernetes, Traefik, SSH, observability
  • Cloud — AWS, Azure, GCP, Terraform, serverless
  • Databases — PostgreSQL, MongoDB, BigQuery, CosmosDB, Redis
  • AI/ML — OpenAI, Gemini, LangChain, HuggingFace
  • Data — Airflow, Kedro, LangGraph

Provider Integration

  • GitHub — Issues, PRs, Actions, Projects
  • Azure DevOps — Work Items, Boards, Pipelines
  • Local — Git-based workflow with markdown tracking

Execution Strategies

  • Sequential — Safe, predictable
  • Adaptive — Intelligent mode selection (default)
  • Hybrid — Maximum parallelization

Documentation


Why ClaudeAutoPM?

| Feature | ClaudeAutoPM | Traditional Tools | |---------|--------------|-------------------| | AI-native | Built for Claude Code | Adapted/retrofitted | | Token-efficient | Plugin system, install what you need | Monolithic | | Agents | 44+ specialized, load on demand | Generic or none | | Rules | 7 XML auto-enforced (TDD, coverage, Context7) | Manual checklists | | Integration | GitHub + Azure DevOps | Limited | | Documentation | Context7-verified, always current | Often outdated |


Contributing

We welcome contributions! See Contributing Guide.

TDD is mandatory — every PR must follow Red-Green-Refactor.


License

MIT License - see LICENSE for details.


Links