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

foundation-sprint

v0.1.6

Published

Build your startup foundation in one day

Readme

foundation-sprint

Build your startup foundation in one day.

Quick Start

npx foundation-sprint

Install

npm install foundation-sprint

CLI

# Run the full sprint
foundation-sprint

# Start from an idea
foundation-sprint "AI code review for teams"

# Run specific phases
foundation-sprint problem      # Problem definition
foundation-sprint customer     # Customer discovery
foundation-sprint solution     # Solution design
foundation-sprint validate     # Validation plan

# Export deliverables
foundation-sprint export --format md

SDK

import { sprint } from 'foundation-sprint'

// Run complete sprint
const foundation = await sprint.run({
  idea: 'AI code review for teams',
  founder: {
    capabilities: ['ML expertise', '10 years in DevTools'],
    insight: 'Code review is the #1 bottleneck in shipping',
    motivation: 'Hated waiting for reviews as an engineer'
  }
})

// Returns complete foundation
// {
//   problem, customer, solution, mvp,
//   experiments, metrics, risks, nextSteps
// }

// Run individual phases
const problem = await sprint.problem('slow code reviews')
const customer = await sprint.customer(problem)
const solution = await sprint.solution(problem, customer)
const mvp = await sprint.mvp(solution)

The Sprint

┌─────────────────────────────────────────────────────────────────────┐
│  PHASE 1: PROBLEM (1 hour)                                          │
│  ─────────────────────────────────────────────────────────────────  │
│  • What problem are you solving?                                    │
│  • Who has this problem?                                            │
│  • How painful is it? (frequency × severity)                        │
│  • How do they solve it today?                                      │
├─────────────────────────────────────────────────────────────────────┤
│  PHASE 2: CUSTOMER (1 hour)                                         │
│  ─────────────────────────────────────────────────────────────────  │
│  • Who is your ideal customer?                                      │
│  • What's their job to be done?                                     │
│  • What triggers them to seek a solution?                           │
│  • Where do they hang out?                                          │
├─────────────────────────────────────────────────────────────────────┤
│  PHASE 3: SOLUTION (1 hour)                                         │
│  ─────────────────────────────────────────────────────────────────  │
│  • What's your unique approach?                                     │
│  • Why will this work?                                              │
│  • What's the unfair advantage?                                     │
│  • What are the risks?                                              │
├─────────────────────────────────────────────────────────────────────┤
│  PHASE 4: MVP (1 hour)                                              │
│  ─────────────────────────────────────────────────────────────────  │
│  • What's the smallest thing you can build?                         │
│  • What hypothesis does it test?                                    │
│  • What does success look like?                                     │
│  • What will you learn?                                             │
├─────────────────────────────────────────────────────────────────────┤
│  PHASE 5: VALIDATE (1 hour)                                         │
│  ─────────────────────────────────────────────────────────────────  │
│  • What experiments will you run?                                   │
│  • What metrics matter?                                             │
│  • What would make you pivot?                                       │
│  • What are your next 3 steps?                                      │
└─────────────────────────────────────────────────────────────────────┘

Output

The sprint produces a complete foundation document:

interface Foundation {
  problem: {
    statement: string
    severity: number
    frequency: number
    currentSolutions: string[]
  }
  customer: {
    profile: ICP
    jobsToBeDone: string[]
    triggers: string[]
    channels: string[]
  }
  solution: {
    approach: string
    uniqueValue: string
    unfairAdvantage: string
    risks: string[]
  }
  mvp: {
    description: string
    hypothesis: string
    successCriteria: string[]
    timeline: string
  }
  validation: {
    experiments: Experiment[]
    metrics: Metric[]
    pivotTriggers: string[]
    nextSteps: string[]
  }
}

MCP Server

{
  "mcpServers": {
    "foundation-sprint": {
      "command": "npx",
      "args": ["foundation-sprint", "mcp"]
    }
  }
}

"Run a foundation sprint for my startup idea" "Help me define the problem I'm solving" "What experiments should I run to validate this?"

Integration

import { sprint } from 'foundation-sprint'
import { canvas } from 'lean-canvas'
import { story } from 'storybrand'

// Sprint outputs feed other tools
const foundation = await sprint.run({ idea: 'AI code review' })

// Generate lean canvas from foundation
const leanCanvas = canvas.fromFoundation(foundation)

// Generate brand story from foundation
const brandStory = story.fromFoundation(foundation)

License

MIT