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

@dan323/easier-life-skills

v1.9.1

Published

Install Claude Code skills from the easier-life-skills marketplace

Readme

@dan323/easier-life-skills

CLI installer for the easier-life-skills Claude Code marketplace.

How it works

Every install goes through Claude Code's claude plugin marketplace add + claude plugin install so the plugin lands at ~/.claude/plugins/cache/<marketplace>/<plugin>/<version>/ and is registered in ~/.claude/plugins/installed_plugins.json. From that moment on, claude plugin list, claude plugin update, and claude plugin uninstall all see and operate on it — no parallel install path, no bespoke registry.

The installer routes per source repo:

  • Source repo has .claude-plugin/marketplace.jsonclaude plugin marketplace add <owner>/<repo> (if not already registered) + claude plugin install <pluginName>@<repo>.
  • Source repo is plugin-only (no marketplace.json — e.g. mattpocock/skills) → the installer synthesises a per-plugin shim marketplace at ~/.config/easier-life-skills/shims/<pluginName>/.claude-plugin/marketplace.json whose single plugin entry uses Claude Code's source: { source: "url", url: "https://github.com/<owner>/<repo>" } mechanism. The shim is registered via claude plugin marketplace add <shim-path>, then claude plugin install <pluginName>@<pluginName> pulls the upstream repo through Claude Code's normal install path. The shim marketplace is named after the plugin (so it never collides with the upstream marketplace names) and is the same single file no matter how many times it's installed.

The npx side handles three things on top of those claude plugin calls:

  • Fetching the marketplace's skills_index.json so --list and --search work as fast offline discovery.
  • Caching the marketplace registration list at the start of each run, so already-registered marketplaces are skipped silently.
  • De-duping plugin installs per session, so a bundle that draws 8 skills from one plugin only emits one claude plugin install.

Usage

No install needed — run directly with npx:

# Discovery (does not require claude on $PATH)
npx @dan323/easier-life-skills --list
npx @dan323/easier-life-skills --search logging

# Install (delegates to: claude plugin marketplace add + claude plugin install)
npx @dan323/easier-life-skills --plugin cost-tracker      # hook-only plugin
npx @dan323/easier-life-skills --skill changelog           # resolves to parent plugin
npx @dan323/easier-life-skills --bundle backend-developer

# Update all plugins installed from this marketplace
#   (delegates to: claude plugin list --json + claude plugin update)
npx @dan323/easier-life-skills --update

# Update a single installed plugin
npx @dan323/easier-life-skills --update changelog

# Uninstall an installed plugin
npx @dan323/easier-life-skills --uninstall changelog

# Preview the claude commands without running them
npx @dan323/easier-life-skills --bundle backend-developer --dry-run

# Skip confirmation prompt
npx @dan323/easier-life-skills --skill changelog --yes

What each flag does

| Flag | Delegates to | |--------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | --list | No claude calls (reads skills_index.json only). Shows plugins, skills, and bundles. | | --search <query> | No claude calls. Matches both plugins (by name, description, category, or any entity they ship) and skills (by name, description, keywords). | | --plugin <name> | Install a plugin by name — works for any plugin, including hook/agent/command/MCP-only plugins that don't ship a skill. Same routing as --skill: marketplace add + plugin install (or shim+install for plugin-only sources). | | --skill <name> | If the skill's source has marketplace.json: claude plugin marketplace add <owner>/<repo> (if missing) + claude plugin install <pluginName>@<repo>. If plugin-only: writes a shim marketplace.json under ~/.config/easier-life-skills/shims/<pluginName>/, registers it via claude plugin marketplace add <shim-path>, then claude plugin install <pluginName>@<pluginName>. | | --bundle <id> | Same as --skill but looped over every skill in the bundle. Marketplace registrations and plugin installs are cached per session (8 skills from one plugin → one install). Shim marketplaces are written / registered once per plugin-only repo. | | --update | claude plugin list --json to find plugins from any of the marketplaces this index knows about (real upstream marketplaces plus the synthetic shim marketplaces this installer registered), then claude plugin update <pluginName>@<marketplace> for each. | | --update <name> | Same, but only one plugin (errors with exit 1 if <name> isn't installed from one of the marketplaces this index covers). | | --uninstall <name> | claude plugin list --json to verify the plugin is installed from a marketplace this index knows about, then claude plugin uninstall <pluginName>@<marketplace>. Errors with exit 1 if <name> isn't installed from a known marketplace. | | --dry-run | Prints the claude commands and shim writes that would run, doesn't execute them. | | --yes | Skips the confirmation prompt before any install/update/uninstall. |

Bundles

Run npx @dan323/easier-life-skills --list to see the up-to-date set. Highlights:

| Bundle | Mix of sources | |--------------------------|--------------------------------------------------------------------------------------| | backend-developer | dan323/easier-life-skills only | | open-source-maintainer | dan323/easier-life-skills only | | tdd-practitioner | mattpocock/skills (plugin-only, cloned) + obra/superpowers + anthropics/skills | | planning-and-execution | dan323/easier-life-skills + obra/superpowers | | skill-author | dan323/easier-life-skills + anthropics/skills + mattpocock/skills + obra/superpowers | | frontend-designer | anthropics/skills only |

Requirements

  • Node.js 18+
  • Claude Code — the claude CLI must be on $PATH for --skill, --bundle, and --update. --list and --search work without it.

After Installing

Restart Claude Code to pick up the newly-installed (or updated) plugin. Whether the install went through a real upstream marketplace or a shim marketplace, the plugin is registered in ~/.claude/plugins/installed_plugins.json by the time npx returns and claude plugin list shows it like any other.

To uninstall: run npx @dan323/easier-life-skills --uninstall <pluginName> — the installer looks up the right marketplace and delegates to claude plugin uninstall <pluginName>@<marketplace>. Alternatively, call claude plugin uninstall <pluginName>@<marketplace> directly. The shim marketplace files under ~/.config/easier-life-skills/shims/<plugin>/ are safe to leave in place (they're tiny and idempotent) — re-installing the same plugin reuses the existing shim.