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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ideal-customer-profile

v0.1.6

Published

Know exactly who you're selling to

Readme

ideal-customer-profile

Know exactly who you're selling to.

Quick Start

npx ideal-customer-profile

Install

npm install ideal-customer-profile

CLI

# Interactive wizard
ideal-customer-profile

# Generate from product description
ideal-customer-profile "AI code review tool"

# Generate persona
ideal-customer-profile persona "engineering manager at Series A startup"

# Export
ideal-customer-profile export --format md

SDK

import { icp } from 'ideal-customer-profile'

// Define your ICP
const profile = icp.create({
  // Firmographics
  company: {
    size: '10-200 employees',
    stage: 'Series A to Series C',
    industry: ['SaaS', 'Fintech', 'Developer Tools'],
    revenue: '$1M-$50M ARR',
    techStack: ['GitHub', 'Slack', 'Modern CI/CD']
  },

  // Role
  buyer: {
    title: ['Engineering Manager', 'VP Engineering', 'CTO'],
    reports: '5-20 engineers',
    experience: '5+ years in engineering'
  },

  // Pain points
  problems: [
    'Code reviews blocking shipping',
    'Inconsistent review quality',
    'Senior engineers spending too much time reviewing'
  ],

  // Goals
  goals: [
    'Ship faster without sacrificing quality',
    'Scale the team without scaling bottlenecks',
    'Keep senior engineers focused on architecture'
  ],

  // Buying behavior
  buying: {
    budget: '$500-$5000/month',
    decisionProcess: 'Bottom-up with manager approval',
    evaluationCriteria: ['Easy GitHub integration', 'Accuracy', 'Speed']
  }
})

// Generate from product
const generated = await icp.generate('AI code review tool for teams')

// Create buyer persona
const persona = await icp.persona(profile)
// { name: 'Engineering Emma', day-in-life, challenges, goals, objections }

// Score a lead against ICP
const score = icp.score(profile, leadData)
// { score: 85, matches: [...], gaps: [...] }

The Framework

┌─────────────────────────────────────────────────────────────────────┐
│  FIRMOGRAPHICS - The Company                                        │
│  ─────────────────────────────────────────────────────────────────  │
│  Size: How many employees?                                          │
│  Stage: Seed? Series A? Enterprise?                                 │
│  Industry: What verticals?                                          │
│  Revenue: How much are they making?                                 │
│  Tech stack: What tools do they use?                                │
├─────────────────────────────────────────────────────────────────────┤
│  BUYER - The Person                                                 │
│  ─────────────────────────────────────────────────────────────────  │
│  Title: What's their role?                                          │
│  Reports: How big is their team?                                    │
│  Experience: What's their background?                               │
├─────────────────────────────────────────────────────────────────────┤
│  PROBLEMS - Why They Buy                                            │
│  ─────────────────────────────────────────────────────────────────  │
│  What keeps them up at night?                                       │
│  What are they trying to fix?                                       │
├─────────────────────────────────────────────────────────────────────┤
│  GOALS - What Success Looks Like                                    │
│  ─────────────────────────────────────────────────────────────────  │
│  What are they trying to achieve?                                   │
│  How do they measure success?                                       │
├─────────────────────────────────────────────────────────────────────┤
│  BUYING BEHAVIOR - How They Buy                                     │
│  ─────────────────────────────────────────────────────────────────  │
│  Budget: What can they spend?                                       │
│  Process: Who else is involved?                                     │
│  Criteria: What matters most?                                       │
└─────────────────────────────────────────────────────────────────────┘

Lead Scoring

// Score leads against your ICP
const leads = [
  { company: 'Acme Inc', size: 50, stage: 'Series A', ... },
  { company: 'BigCorp', size: 5000, stage: 'Public', ... }
]

const scored = leads.map(lead => ({
  ...lead,
  icpScore: icp.score(profile, lead)
}))

// Filter to best-fit leads
const bestFit = scored.filter(l => l.icpScore.score >= 70)

MCP Server

{
  "mcpServers": {
    "icp": {
      "command": "npx",
      "args": ["ideal-customer-profile", "mcp"]
    }
  }
}

"Create an ICP for my developer tool" "Score this lead against my ICP" "Create a buyer persona for my product"

License

MIT