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

den-github-manager

v1.0.2

Published

CLI tool to setup GitHub Projects automatically - Analyze, generate backlog, and configure milestones, issues, and project boards in minutes

Readme

🦁 Den GitHub Manager

Automate your GitHub Projects setup in minutes. Analyze projects, generate backlogs, and configure milestones, issues, and project boards - all from the command line.

npm version npm downloads License: MIT GitHub stars

✨ Features

  • 🔍 Smart Analysis - Automatically analyzes your project structure
  • 📋 Auto-Generate Backlog - Creates backlog from your codebase if none exists
  • 🎨 Multiple Templates - Simple, Startup MVP, Agile, Enterprise
  • 🚀 One Command Setup - Configure everything in minutes
  • 💾 Reusable - Works with any project, new or existing
  • 🤖 GitHub Integration - Creates milestones, issues, labels automatically
  • 🦾 AI Agent Friendly - Non-interactive mode for Claude, ChatGPT, Cursor

🚀 Quick Start

Install

# Global installation
npm install -g den-github-manager

# Or use with npx (no installation needed)
npx den-github-manager init

Basic Usage

# Navigate to your project
cd my-project

# Interactive mode (asks questions)
den init

# Non-interactive mode (perfect for AI agents)
den init --template startup --auto

🤖 Using with AI Agents (Claude, ChatGPT, Cursor)

Perfect for AI coding assistants! Tell your AI agent:

Run: den init --template startup --auto

This will set up GitHub Projects without any prompts.

See AI Agent Usage Guide for complete documentation.

📖 Usage

Initialize Project Setup

# Interactive mode (recommended for first time)
den init

# Use specific template
den init --template startup

# Auto mode (no prompts, use defaults)
den init --auto

# Dry run (see what would be done)
den init --dry-run

Analyze Project

# Get detailed project analysis
den analyze

# Output as JSON
den analyze --json

List Templates

# See available templates
den templates --list

# Show template details
den templates --show startup

Configuration

# List all configuration
den config --list

# Set config value
den config --set defaultTemplate=agile

# Get config value
den config --get defaultTemplate

🎨 Templates

📦 Simple

  • Best for: Personal projects, side projects
  • Milestones: 3 (Foundation, Core, Polish)
  • Issues: ~10
  • Duration: Flexible

🚀 Startup MVP

  • Best for: Startups, product development
  • Milestones: 4 (Foundation, MVP Core, User Testing, Production)
  • Issues: ~30
  • Duration: 2-3 months

🏃 Agile/Scrum

  • Best for: Teams using Agile/Scrum
  • Milestones: Sprint-based (recurring)
  • Issues: ~50
  • Duration: 2-week sprints

🏢 Enterprise

  • Best for: Large organizations, complex projects
  • Milestones: 5+ phases (Discovery, Design, Development, Testing, Deployment)
  • Issues: 50+
  • Duration: 6+ months

📊 What Gets Created

When you run den init, it creates:

Milestones

  • Organized phases/sprints with descriptions
  • Properly configured (open/closed based on completion)

Labels

  • Priority: P0:Critical, P1:High, P2:Medium
  • Status: in-progress, completed
  • Story Points: 3, 5, 8
  • Epics: Custom based on your project

Issues

  • Structured user stories
  • Acceptance criteria
  • Labels and milestones assigned
  • Story points estimated

Documentation

  • docs/backlog.md - Complete backlog
  • .den-config.json - Project configuration

🔧 Requirements

  • Node.js >= 18.0.0
  • GitHub CLI (gh) installed and authenticated
  • Git repository initialized

Setup GitHub CLI

# Install gh CLI
brew install gh  # macOS
# or visit: https://cli.github.com/

# Authenticate
gh auth login

💡 Examples

New Project

$ cd my-new-app
$ den init

🦁 Den GitHub Manager - Project Setup

🔍 Analyzing project...
✓ Project analyzed

❌ No backlog found

? How would you like to proceed?
  ❯ 📋 Use a template (recommended)
    🤖 Generate from project structure
    ✍️  Create manually later

? Select a template:
  ❯ 🚀 Startup MVP (4 milestones, ~30 issues)

✓ Backlog generated
✓ GitHub client ready
✓ Created 4 milestones
✓ Labels created
✓ Created 28 issues

✅ Setup Complete!

📊 View: https://github.com/user/my-new-app/milestones

Existing Project with Backlog

$ cd existing-project
$ den init

🦁 Den GitHub Manager - Project Setup

🔍 Analyzing project...
✓ Found backlog: docs/backlog.md
✓ Detected structure:
  - 4 milestones
  - 32 user stories

? Proceed with this structure? Yes

✓ Created 4 milestones
✓ Labels created
✓ Created 32 issues

✅ Setup Complete!

🎯 Use Cases

| Project Type | Recommended Template | Setup Time | |--------------|---------------------|------------| | Personal side project | Simple | 2 min | | Startup MVP | Startup | 3 min | | Team project (Agile) | Agile | 5 min | | Enterprise application | Enterprise | 10 min | | Open source library | Simple/Agile | 3 min |

🤝 Contributing

Contributions are welcome! Please read our Contributing Guide for details.

# Clone repository
git clone https://github.com/wolfcito/den-github-manager.git
cd den-github-manager

# Install dependencies
npm install

# Run locally
npm start -- init

# Run tests
npm test

# Lint code
npm run lint

📚 Documentation

🐛 Troubleshooting

GitHub CLI not authenticated

gh auth login

Permission denied

Make sure gh CLI has necessary scopes:

gh auth refresh -s project,repo

Template not found

List available templates:

den templates --list

🗺️ Roadmap

  • [x] v1.0 - Core functionality
  • [ ] v1.1 - Project board auto-creation
  • [ ] v1.2 - AI-powered backlog generation
  • [ ] v1.3 - Multi-repo support
  • [ ] v2.0 - Web UI

📄 License

MIT © wolfcito

🙏 Acknowledgments

Built with:

🌟 Star History

If this tool helps you, consider giving it a star! ⭐

📞 Support


Made with ❤️ by wolfcito