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

mogscore-skill

v0.1.4

Published

Host-specific agent skills for running the MogScore free AI Face Rating preview.

Readme

MogScore Skill

Agent skills for running the official MogScore free AI Face Rating preview from https://mogscore.ai/mog-rating?mode=upload.

The workflow must use a visible, headed browser. Do not run it in headless Chrome; local face scan can fail with scanner_unavailable when browser graphics capabilities are missing.

Install With npx

Install the skill into a local agent runtime:

npx mogscore-skill install codex
npx mogscore-skill install claude-code
npx mogscore-skill install hermes
npx mogscore-skill install openclaw

Options:

npx mogscore-skill install codex --dir /custom/skills/mog-rating-preview
npx mogscore-skill install codex --force
npx mogscore-skill install codex --dry-run --json
npx mogscore-skill install codex --skip-deps

Default destinations:

  • Codex: ${CODEX_HOME:-~/.codex}/skills/mog-rating-preview
  • Claude Code: ~/.claude/skills/mog-rating-preview
  • Hermes: ~/.agents/skills/mog-rating-preview
  • OpenClaw local: ./skills/mog-rating-preview

The installer copies the selected skill and runs:

npm install --omit=dev --ignore-scripts --fund=false --audit=false

inside the installed skill folder. The package uses playwright-core, so this does not download Playwright's bundled Chromium. Pass --skip-deps when the host runtime already provides dependencies.

Install From ClawHub

After the OpenClaw skill is published:

clawhub install @mogscore/mog-rating-preview

Publish manually:

clawhub login
clawhub skill publish openclaw/mog-rating-preview \
  --slug mog-rating-preview \
  --name "Mog Rating Preview" \
  --owner mogscore

The repository also includes .github/workflows/clawhub-publish.yml, which uses OpenClaw's reusable workflow. Configure the CLAWHUB_TOKEN repository secret before enabling real publishes.

Install With skills.sh

The repository exposes a platform-neutral skill at skills/mog-rating-preview for skills.sh:

npx skills add roooo-798/mogscore-skill --skill mog-rating-preview

To preview without installing:

npx skills add roooo-798/mogscore-skill --list

Submit To SkillsLLM

SkillsLLM accepts public GitHub repositories through its submit page. The repository includes SKILL.md files in subdirectories and uses the MIT-0 license. SkillsLLM currently asks submitters to sign in with GitHub and expects public repos with at least 100 stars.

Runtime Use

Each variant exposes the same workflow contract:

  1. Open https://mogscore.ai/mog-rating?mode=upload.
  2. Attach a local image to the input labeled Selfie image.
  3. Click Get Score or Get my score.
  4. Capture the POST /api/reports JSON response.

If the host browser cannot upload files or capture response bodies, run the fallback script from the installed skill folder:

node scripts/run-mog-rating-preview.mjs \
  --browser-executable "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
  --headed \
  --image /absolute/path/to/photo.jpg

Development

npm install
npm test
npm run check
npm pack --dry-run
npm publish --dry-run --access public

Push source:

gh repo create roooo-798/mogscore-skill --public --source . --remote origin --push

End-to-end smoke tests require a user-supplied, non-sensitive, authorized 18+ portrait photo and a headed browser.