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

enterprise-superpowers

v0.4.0

Published

CLI tool that scaffolds AI coding assistant plugins for enterprise teams. Generate Claude Code plugins with company branding, integrations, and enterprise-ready defaults.

Readme

Enterprise Superpowers

CLI tool that scaffolds AI coding assistant plugins for enterprise teams.

Generate Claude Code plugins with your company's branding, tool integrations, and enterprise-ready defaults in minutes.

Quick Start

npx enterprise-superpowers init my-company

This interactive command will:

  1. Ask for your company's design assets (logo, icon/favicon, fonts, color palette)
  2. Optionally point to a folder of example documents (PDFs, PowerPoints, etc.) that showcase your brand in use
  3. Let you select integrations — or install all (recommended, default)
  4. Generate a fully compliant Claude Code plugin with skills, agents, hooks, rules, and MCP configs

Installation

# Run directly with npx (no install needed)
npx enterprise-superpowers init <company-name>

# Or install globally
npm install -g enterprise-superpowers
enterprise-superpowers init <company-name>

Commands

# Scaffold a new enterprise plugin
enterprise-superpowers init <company-name>

# Add an integration to an existing plugin
enterprise-superpowers add <integration>

# Update company design assets
enterprise-superpowers update-styles

# List available integrations
enterprise-superpowers list

# Remove a generated plugin
enterprise-superpowers destroy [path]

Available Integrations (30)

By default, all integrations are installed. You can customize during init.

| Category | Integrations | |----------|-------------| | Project Management | Jira (MCP + skill + agent) | | Collaboration & Docs | Confluence (MCP), Notion (MCP), Draw.io / Excalidraw | | Cloud & Infrastructure | AWS (MCP + skill + agent), Azure / GCP, IaC (Terraform / CDK) | | Development | Git (Lab/Hub), Go, DevOps, PR/MR Workflows, Language Servers, Observability (Grafana + Sentry MCP) | | Quality & Security | Security (hooks + agent + rules), Code Quality & Coverage (TDD + hooks) | | Frontend & Design | Frontend Patterns, Frontend Slides, Visual Companion | | Backend | Backend Patterns, Django, Java / Spring Boot | | Data & Analytics | Databases (PostgreSQL + migrations), Snowflake, SAP | | AI & Machine Learning | ML Tools, ML Engineering, Agentic Engineering | | Meta & Tooling | Skills Creator, Content Creation, Debugging & Workflow |

Generated Plugin Structure

my-company-superpowers/
  .claude-plugin/
    plugin.json
  skills/
    company-design-system/SKILL.md
    security-review/SKILL.md
    tdd-workflow/SKILL.md
    finishing-a-development-branch/SKILL.md
    ...  (~70 skills)
  agents/
    security-reviewer.md
    code-reviewer.md
    planner.md
    ...  (~15 agents)
  commands/
    code-review.md
    tdd.md
    orchestrate.md
    ...  (~27 commands)
  rules/
    common/
    typescript/
    python/
    golang/
  hooks/
    hooks.json
    scripts/
  .mcp.json
  assets/
    logos/
    fonts/
    examples/         # branded PDFs, PPTX, images (optional)
  config/
    design-system.json
    integrations.json
  README.md

What's Included

Skills (~70)

Battle-tested skills from Everything Claude Code and Superpowers, covering security, TDD, frontend/backend patterns, database optimization, DevOps, agentic engineering, Django, Spring Boot, Go, and more.

Agents (~15)

Specialized agents for code review, security analysis, TDD guidance, database review, build error resolution, Go/Python review, planning, and more.

Commands (~27)

Slash commands for TDD, code review, E2E testing, orchestration, multi-model workflows, build fixes, refactoring, and documentation updates.

Rules (~24)

Coding style, security, testing, git workflow, and language-specific rules for TypeScript, Python, and Go.

Hooks (~20)

Quality gates, auto-formatting, TypeScript checking, console.log detection, git push reminders, and session management hooks.

MCP Servers (~30 configs)

Pre-configured MCP server definitions for GitHub, AWS, Terraform, Notion, Slack, Confluence, Grafana, Sentry, Supabase, ClickHouse, Playwright, and more.

After Generation

Once init completes, follow the steps in the generated plugin's README.md:

  1. Load the pluginclaude --plugin-dir ./<company>-superpowers
  2. Configure MCP credentials — Open .mcp.json and replace YOUR_*_HERE placeholders with your actual API tokens (GitHub PAT, Slack bot token, AWS profile, etc.)
  3. Remove unused MCP servers — Keep under 10 active to preserve context window
  4. Review hooks — Check hooks/hooks.json and disable any hooks you don't need
  5. Test — Run /tdd, /code-review, or /plan in a Claude Code session to verify

Design System

Enterprise Superpowers bakes your company's visual identity into every generated artifact. When Claude creates presentations, HTML prototypes, or documentation, it uses your:

  • Logos — Primary logo and icon/favicon stored in assets/logos/, included in headers, title slides, and footers
  • Color palette — Brand colors (primary, secondary, accent, background, text) applied consistently via CSS variables
  • Fonts — Corporate typography enforced across all generated content
  • Style guidelines — Design tokens in config/design-system.json for all visual outputs
  • Brand examples (optional) — Real company documents (PDFs, PowerPoints, images) in assets/examples/ that Claude studies to match your actual visual identity, layout patterns, and tone

Development

# Clone and install
git clone https://github.com/idiaz01/enterprise-superpowers.git
cd enterprise-superpowers
npm install

# Development
npm run dev          # Watch mode
npm run build        # Build
npm run test         # Run tests
npm run lint         # Lint
npm run typecheck    # Type check

Attribution

Enterprise Superpowers includes content adapted from these open-source projects:

  • Everything Claude Code by Affaan Mustafa — Skills, agents, commands, rules, hooks, and MCP configs (MIT)
  • Superpowers by Jesse Vincent — Development workflow skills, debugging, and planning (MIT)
  • Official MCP Servers — AWS, Terraform (HashiCorp), Notion, Slack, Grafana, Sentry, GitHub

See content/CREDITS.md for full attribution details.

Roadmap

  • [x] Claude Code plugin generation
  • [x] 30 integrations with real content
  • [x] Official MCP server configurations
  • [ ] Cursor rules/plugin support
  • [ ] Codex agent generation
  • [ ] GitHub marketplace distribution
  • [ ] Plugin validation and doctor commands
  • [ ] Community integration marketplace

Contributing

See CONTRIBUTING.md for development setup and guidelines.

License

MIT