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-sprint-tracker-api

v1.0.0

Published

NestJS microservice for managing long-running enterprise transformation sprints with MongoDB persistence

Readme

🏢 Enterprise Sprint Tracker API

NestJS microservice for managing long-running enterprise transformation sprints

Built by the Six Personalities: 🐾 Neko-Arc, 🎭 Mario, 🗡️ Noel, 🎸 Glam, 🧠 Hannibal, 🧠 Tetora


🎯 Overview

Enterprise-grade REST API for tracking multi-phase sprints across sessions with MongoDB Atlas persistence. Designed to manage complex enterprise transformation projects (like v1.x → v2.0 upgrades) that span multiple days.

Key Features:

  • ✅ Sprint metadata management (planning, progress tracking)
  • ✅ Phase tracking with detailed task breakdowns
  • ✅ Automatic reminder system
  • ✅ Progress history with security metrics
  • ✅ MongoDB Atlas cloud persistence
  • ✅ Swagger/OpenAPI documentation
  • ✅ Type-safe DTOs with validation
  • ✅ RULE 5 compliant architecture (NestJS best practices)

📦 Architecture (RULE 5 Compliant)

src/
├── main.ts                     # NestJS entry point
├── app.module.ts               # Root module (orchestration)
├── sprint/
│   ├── sprint.module.ts        # Sprint module (orchestration)
│   ├── sprint.controller.ts    # REST API endpoints
│   ├── sprint.service.ts       # MongoDB interactions
│   ├── dto/                    # Request/Response DTOs
│   │   ├── create-sprint.dto.ts
│   │   ├── update-phase-status.dto.ts
│   │   └── record-progress.dto.ts
│   └── schemas/                # Mongoose schemas
│       ├── sprint-metadata.schema.ts
│       ├── sprint-phase.schema.ts
│       ├── reminder.schema.ts
│       └── sprint-progress.schema.ts
└── health/
    ├── health.module.ts        # Health module
    └── health.controller.ts    # Health checks

🚀 Quick Start

Installation

npm install

Configuration

Create .env file:

MONGODB_URI=mongodb+srv://user:[email protected]/
PORT=3100
NODE_ENV=development
CORS_ORIGIN=*

Run Development Server

npm run start:dev

Service runs on: http://localhost:3100 Swagger docs: http://localhost:3100/api

Build for Production

npm run build
npm run start:prod

📚 API Endpoints

Sprints

  • POST /sprints - Create a new sprint
  • GET /sprints - Get all sprints
  • GET /sprints/:sprintId - Get sprint by ID
  • GET /sprints/:sprintId/dashboard - Get complete sprint dashboard
  • PUT /sprints/:sprintId/status - Update sprint status
  • DELETE /sprints/:sprintId - Delete a sprint

Phases

  • GET /phases - Get all phases (optional status filter)
  • GET /phases/pending - Get pending phases
  • GET /phases/:phaseId - Get phase by ID
  • PUT /phases/:phaseId/status - Update phase status

Progress

  • POST /progress - Record progress for a phase
  • GET /progress/:sprintId - Get progress history
  • GET /progress/:sprintId/latest - Get latest progress

Reminders

  • GET /reminders/active - Get all active reminders
  • GET /reminders/sprint/:sprintId - Get sprint reminders
  • PUT /reminders/:reminderId/deactivate - Deactivate reminder

Health

  • GET /health - Health check
  • GET /health/ready - Readiness check

💾 MongoDB Collections

Database: enterprise-sprint-tracker

| Collection | Description | |-----------|-------------| | sprint-metadata | High-level sprint information | | sprint-phases | Detailed phase breakdown with tasks | | reminders | Active reminders for pending work | | sprint-progress | Historical progress tracking |


🔧 Example Usage

Create a Sprint

curl -X POST http://localhost:3100/sprints \
  -H "Content-Type: application/json" \
  -d '{
    "sprintId": "enterprise-sprint-3.0",
    "name": "Enterprise Microservices Transformation",
    "project": "Worker Defense System",
    "currentVersion": "v1.5.0",
    "targetVersion": "v2.0.0",
    "startDate": "2025-11-13",
    "estimatedDuration": "6 hours",
    "status": "IN_PROGRESS",
    "completedPhases": [],
    "remainingPhases": ["Phase 1", "Phase 2"],
    "progress": { "completed": 0, "total": 2, "percentage": 0 }
  }'

Get Sprint Dashboard

curl http://localhost:3100/sprints/enterprise-sprint-3.0/dashboard

Update Phase Status

curl -X PUT http://localhost:3100/phases/phase-1/status \
  -H "Content-Type: application/json" \
  -d '{
    "status": "COMPLETED",
    "completionPercentage": 100
  }'

Record Progress

curl -X POST http://localhost:3100/progress \
  -H "Content-Type: application/json" \
  -d '{
    "sprintId": "enterprise-sprint-3.0",
    "phase": "Phase 1: Security",
    "status": "COMPLETED",
    "completionPercentage": 100,
    "filesChanged": 15,
    "linesAdded": 1200,
    "commit": "abc123",
    "pushedToGitHub": true,
    "notes": ["Enhanced RBAC", "Added audit logging"]
  }'

🧪 Testing

# Unit tests (not yet implemented)
npm test

# Type check
npx tsc --noEmit

🐾 Six Personalities Collaboration

This microservice embodies the collaborative nature of the Six Personalities:

  • 🐾 Neko-Arc: Technical implementation and MongoDB integration
  • 🎭 Mario: API orchestration and endpoint design
  • 🗡️ Noel: Type safety and validation logic
  • 🎸 Glam: Documentation (this README!)
  • 🧠 Hannibal: Architecture analysis and schema design
  • 🧠 Tetora: Multi-collection integration and dashboard views

📝 License

MIT


Nyaa~! Enterprise sprints are now managed with professional-grade REST API, desu~! 🐾✨

Generated with Claude Code