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

memrise-cli

v1.1.0

Published

CLI for Memrise teaching

Readme

memcli

A CLI for interacting with Memrise community courses

Install

npm install -g memcli
# or
bun add -g memcli

Configuration

Set your Memrise credentials via environment variables:

export MEMRISE_USERNAME="your_username"
export MEMRISE_PASSWORD="your_password"
# Optional
export MEMRISE_CLIENT_ID="your_client_id"

Alternatively, you can pass credentials explicitly with --username and --password flags.

Usage as agent skill

  • add dvcrn/skills as skill repository which should discover the memrise skill
  • or add the SKILL.md from this repo to your agent

Examples

List your teaching courses:

memcli courses

List words in a course:

memcli words 123456

List words in a specific level (limit to 10 items):

memcli words 123456 --level 1 --limit 10

Add a new word to a course:

memcli add-to-course 123456 --field "1=Hello" --field "2=Bonjour"

Search a pool for existing items:

memcli search-pool 7778482 --field "1=Hello"

Output Mode

The CLI defaults to a human-readable text output. For scripting, use JSON:

memcli courses --output json

Commands

  • courses / my-courses – List your teaching courses
    • --limit <n>
    • --offset <n>
  • course-by-id <course-id> – Fetch course details by ID
  • course-by-slug <slug> – Fetch course details by slug
  • course-levels <course-id> – List levels in a course
  • course-columns <course-id> – Show course column configuration
  • words <course-id> – List words/items
    • --level <index> – List items in a specific level (1-based index)
    • --limit <n> – Limit number of items
  • learnable <learnable-id> – Fetch a single learnable item by ID
  • get-pool <pool-id> – Fetch pool information
  • search-pool <pool-id> – Search a pool
    • --field <key>=<value> (repeatable)
    • --exclude <learnable-id> (repeatable)
    • --original-only
  • add-to-course <course-id> – Add a thing to a course (defaults to first level)
    • --field <key>=<value> (repeatable)
    • --level-index <n> (default 0)
  • add-to-level <level-id> – Add a thing to a specific level ID
    • --field <key>=<value> (repeatable)

You can also pass --columns '{"1":"value"}' as a JSON string instead of repeated --field flags.