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

mrvn-cli

v0.7.0

Published

AI-powered software product development assistant with Product Owner, Delivery Manager, and Technical Lead personas

Readme

Marvin CLI

AI-powered product development assistant. Marvin provides three expert personas — Product Owner, Delivery Manager, and Technical Lead — that help teams manage features, epics, tasks, sprints, decisions, actions, questions, meetings, and reports through an interactive CLI backed by Claude.

Quick Start

# Install globally
npm install -g mrvn-cli

# Set your Anthropic API key
export ANTHROPIC_API_KEY=sk-ant-...

# Initialize a project
marvin init

# Start a chat session
marvin chat --as po     # Product Owner
marvin chat --as dm     # Delivery Manager
marvin chat --as tl     # Technical Lead

How It Works

Marvin stores project governance data as Markdown files with YAML frontmatter inside a .marvin/ directory — human-readable, Git-friendly, and Obsidian-compatible. Each artifact gets an auto-incrementing ID (F-001, E-001, SP-001, D-001, etc.).

When you start a chat session, Marvin loads a persona-specific system prompt, exposes your project data as MCP tools that Claude can call, and starts an interactive conversation where the agent reads, creates, and updates artifacts on your behalf.

.marvin/
├── config.yaml              # Project configuration
├── sessions.yaml            # Saved chat sessions
├── skills/                  # Custom skills
├── sources/                 # Source documents for ingestion
└── docs/
    ├── features/            # F-001.md, F-002.md, ...
    ├── epics/               # E-001.md, E-002.md, ...
    ├── tasks/               # T-001.md, T-002.md, ...
    ├── sprints/             # SP-001.md, SP-002.md, ...
    ├── decisions/           # D-001.md, D-002.md, ...
    ├── actions/             # A-001.md, A-002.md, ...
    ├── questions/           # Q-001.md, Q-002.md, ...
    ├── meetings/            # M-001.md, M-002.md, ...
    └── ...

Personas

| Short | Full Name | Focus | |-------|-----------|-------| | po | Product Owner | Product vision, feature prioritization, stakeholder needs, acceptance criteria | | dm | Delivery Manager | Sprint planning, epic scheduling, risk management, governance, meeting facilitation | | tl | Technical Lead | Architecture, epic/task scoping, code quality, technical decisions |

Each persona has a tuned system prompt and access to governance tools for managing artifacts — plus methodology-specific tools when a plugin is active.

Key Features

Structured workflow — Product Owner defines features, Tech Lead breaks them into epics and tasks, Delivery Manager plans sprints and tracks progress. Hard validation enforces that epics link to approved features.

Two methodologies — Generic Agile (default) for standard agile, and SAP Application Extension Methodology for SAP BTP projects with use cases, tech assessments, and extension designs.

Skills — Composable capabilities that extend any persona: Jira integration (bidirectional sync), PRD generation (for Claude TaskMaster or Claude Code), and governance review. Create custom skills with the SKILL.md format.

Source ingestion — Drop PDFs, markdown, or text files into .marvin/sources/ and run marvin ingest --all to extract governance artifacts using AI analysis.

Web dashboardmarvin web launches a local dashboard with persona-specific views, sprint boards, GAR reports, and artifact detail pages.

MCP servermarvin serve starts a standalone MCP server for Claude Desktop or Claude Code, giving Claude direct access to all governance tools.

Git sync — Version and share governance data independently from your codebase with marvin sync.

Reports — GAR (Green/Amber/Red) status reports, health checks, and AI-powered sprint summaries.

Documentation

Full documentation is in the docs/ directory:

For users:

For contributors:

Development

npm run build        # Build with tsup
npm run dev          # Run via tsx (no build needed)
npm test             # Run tests with Vitest
npm run typecheck    # Type check
npm run lint         # ESLint
npm run format       # Prettier check

Tech Stack

TypeScript (ESM, Node 20+), Claude Agent SDK, Commander.js, Markdown + YAML frontmatter storage, Vitest, tsup.

License

MIT License with Commons Clause. You can use, modify, and distribute Marvin freely — the Commons Clause restricts selling Marvin itself as a service or product.