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

maiklubi

v1.3.0

Published

CLI for myclub.fi — built for parents and AI agents

Readme

maiklubi

CLI for myclub.fi — manage your family's sports club events, invoices, and announcements from the terminal or via AI agents.

Disclaimer: maiklubi is an independent, unofficial tool and is not affiliated with, endorsed by, or connected to myClub / myclub.fi. Use it with your own account and credentials, at your own risk.

Install

Requires Node.js 20.17+ (or 22.13+ / 23.5+).

# From npm
npm install -g maiklubi

# Or from source
git clone https://github.com/jannemakela/maiklubi.git
cd maiklubi
npm install
npm run build
npm link   # makes `maiklubi` available globally

Log in

Just run maiklubi (or maiklubi login) and enter your myclub.fi email + password. It logs in, auto-discovers your family's members and clubs, and saves them:

maiklubi        # first run walks you through login
maiklubi login  # log in again / switch account

Credentials are saved to ~/.config/maiklubi/config.json (base64-obfuscated, not encrypted). For scripts/CI you can skip the prompt with environment variables instead:

export MAIKLUBI_EMAIL="[email protected]"
export MAIKLUBI_PASSWORD="yourpassword"

Usage

maiklubi                                   Interactive mode (logs you in on first run)
maiklubi login                             Log in and save your account
maiklubi users list [--json]               List configured family members
maiklubi accounts list [--json]            List accounts from myclub.fi
maiklubi events list [OPTIONS]             List upcoming events
maiklubi events indicate [OPTIONS]         Join or leave an event
maiklubi events participants [OPTIONS]     List event participants
maiklubi events comments [OPTIONS]         Read an event's discussion thread
maiklubi summary [OPTIONS]                 Events + invoices + notifications in one call
maiklubi invoices list [OPTIONS]           List open + paid invoices
maiklubi notifications list [OPTIONS]      List notifications
maiklubi calendar list [--json]            List calendar subscriptions
maiklubi calendar create [OPTIONS]         Create a calendar subscription
maiklubi version [--json]                  Show current version
maiklubi update                            Update to the latest version
maiklubi config clear                      Remove saved config

Options:
  --member <name>      Member name (e.g. Aino, Veikko, Onni)
  --club <name>        Club slug or URL (e.g. ppj, topola)
  --all-members        Run for all configured members and clubs
  --start <YYYY-MM-DD> Filter events from this date (inclusive)
  --end <YYYY-MM-DD>   Filter events up to this date (inclusive)
  --days <n>           Lookahead window in days (summary; default 14)
  --id <eventId>       Event ID
  --status <status>    Indication: yes|no|no_response|maybe
  --with-participants  Show participants for joined events (events list)
  --all-events         Show everything, incl. unjoinable events you haven't responded to
  --joinable-only      Show only events you can still join (drops all unjoinable)
  --limit <n>          Max results (default 20)
  --json               Machine-readable JSON output (for AI agents)

Run maiklubi --help for the full per-command synopsis.

Use with Claude

Run with --json and pipe output to Claude, or use directly in Claude Code:

maiklubi events list --member Aino --json
maiklubi invoices list --all-members --json

License

MIT © Janne Mäkelä