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

create-humanet

v1.0.3

Published

CLI tool for creating .humanet folder structures for idea documentation (Platform coming soon)

Readme

create-humanet

Official CLI tool for initializing and managing Humanet idea documentation.

What is Humanet?

Humanet is a platform for structured idea documentation with lifecycle management, AI validation, and knowledge graphs.

Note: The Humanet platform is currently under development. This CLI tool is ready to use for creating .humanet folder structures in your repositories.

📚 View Documentation

Installation

# Run without installing
npx create-humanet

# Or install globally
npm install -g create-humanet

Usage

Initialize new .humanet folder

# Interactive mode (recommended)
humanet init

# Non-interactive mode
humanet init --name "My Idea" \
  --tagline "A brief description" \
  --domains ai-ml dev-tools \
  --username myuser \
  --repo https://github.com/username/repo \
  --license CC-BY-4.0

Validate existing .humanet folder

# Basic validation
humanet validate

# Verbose output with detailed results
humanet validate --verbose

Migrate from legacy format

humanet migrate

Commands

humanet init

Initialize a new .humanet folder in your current directory with the standard structure.

Options:

  • -i, --interactive - Interactive mode with prompts (default)
  • -n, --name <name> - Idea name
  • -t, --tagline <tagline> - One-line description
  • -d, --domains <domains...> - Domains (space-separated)
  • -u, --username <username> - GitHub username
  • -r, --repo <url> - Repository URL
  • -l, --license <license> - License (default: CC-BY-4.0)

Example:

humanet init --name "AI Code Review Assistant" \
  --tagline "Intelligent code review powered by GPT-4" \
  --domains ai-ml dev-tools \
  --username johndoe

humanet validate

Validate the structure and content of your .humanet folder.

Options:

  • -v, --verbose - Show detailed validation results

Checks performed:

  • Required files exist (config.yml, problem_statement.md, idea.md, scope.md)
  • config.yml follows the JSON schema
  • YAML syntax is valid
  • No placeholder text remains
  • Files have minimum content

humanet migrate

Migrate from legacy format to the current .humanet structure (future feature).

What Gets Created

When you run humanet init, the following structure is created:

.humanet/
├── config.yml                    # Core metadata & configuration
├── README.md                     # Documentation guide
├── problem_statement.md          # Required: Problem definition
├── idea.md                       # Required: Solution description
├── scope.md                      # Required: Boundaries & success metrics
├── CHANGELOG.md                  # Idea evolution tracking
├── CONTRIBUTORS.md               # Attribution & roles
├── config.schema.json            # JSON Schema for validation
├── .gitignore                    # Ignore patterns
│
├── diagrams/                     # Visual documentation
│   ├── README.md
│   └── PLACEHOLDER.txt
│
├── research/                     # Supporting materials
│   ├── README.md
│   └── literature-review.md
│
├── discussions/                  # Decision logs & ADRs
│   ├── README.md
│   └── 001-tech-stack-selection.md
│
├── evaluations/                  # AI validation reports
│   └── README.md
│
└── templates/                    # Reusable templates
    ├── README.md
    ├── decision-record.md
    ├── meeting-notes.md
    └── research-summary.md

Next Steps After Initialization

  1. Edit .humanet/problem_statement.md - Define the problem you're solving
  2. Edit .humanet/idea.md - Describe your solution
  3. Edit .humanet/scope.md - Define boundaries and success metrics
  4. Run humanet validate to check everything is correct
  5. Commit and push to GitHub
  6. Share with the community (platform coming soon!)

Available Domains

When initializing, you can choose from these domains:

  • AI & Machine Learning (ai-ml)
  • Blockchain (blockchain)
  • Climate Tech (climate-tech)
  • Developer Tools (dev-tools)
  • Education (education)
  • Finance (finance)
  • Healthcare (healthcare)
  • Knowledge Management (knowledge-management)
  • Productivity (productivity)
  • Research Tools (research-tools)
  • Social Impact (social-impact)
  • Web3 (web3)
  • Other (other)

License Options

  • CC-BY-4.0 - Attribution required (default)
  • CC-BY-SA-4.0 - Attribution + Share-alike
  • MIT - Permissive
  • Unlicense - Public domain
  • Apache-2.0 - Apache License

Requirements

  • Node.js >= 18.0.0

Links

Platform Status: Website and community channels are coming soon! Stay tuned.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT © Humanet Team