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

@getrheo/rheo-skill

v2.2.0

Published

Rheo agent skill — SDK install guidance and flow manifest import tooling.

Readme

@getrheo/rheo-skill

Current release: 2.1.0 on npm. Public source: getrheo/rheo-skill (mirrored from this private monorepo via pnpm extract:oss-repos).

Source and build tooling for the rheo agent skill — a single, self-contained skill with two sub-skills:

  • rheo/rheo-best-practices — how to install and wire the Rheo SDK (React Native, Expo, SwiftUI), integrations, auth, and implementation best practices. Pure guidance, no scripts.
  • rheo/rheo-flow-import — how to analyze an existing mobile flow and export it as a compliant Rheo FlowManifest, plus self-contained node scripts (audit, scaffold, validate, audit-publish, normalize, summary, profile).

The deliverable is rheo/

The installable artifact is the rheo/ directory. It is fully self-contained: the rheo-flow-import scripts run with plain node and need no pnpm install, because the validation/scaffold engine, zod, @getrheo/contracts, and @getrheo/flow-runtime are bundled into rheo/rheo-flow-import/scripts/lib/rheo-cli.mjs at build time.

rheo/
├── SKILL.md                      # router → rheo-best-practices / rheo-flow-import
├── rheo-best-practices/
│   ├── SKILL.md
│   ├── references/               # install-* , integrations, implement-workflow, troubleshooting
│   └── examples/               # install snippets
└── rheo-flow-import/
    ├── SKILL.md
    ├── references/               # import-workflow, flow-spec, capabilities (generated), manifest-rules,
    │                             #   layer-schema-pitfalls, publish-gates, *-source-patterns, carousel/font/i18n/animation
    ├── examples/                 # valid manifests + flow-spec.example.json
    └── scripts/
        ├── *.mjs                 # thin wrappers (import runCli from lib)
        └── lib/rheo-cli.mjs      # GENERATED self-contained bundle (committed)

Source layout (this package)

  • src/ — TypeScript engine (CLI, audit analyzers, scaffold, publish gates, validation, profile fetch). Source of truth for the bundle.
  • scripts/build-skill.ts — esbuild bundler → rheo/rheo-flow-import/scripts/lib/rheo-cli.mjs.
  • src/capabilities/generateCapabilities.ts — regenerates rheo/rheo-flow-import/references/capabilities.md from @getrheo/contracts.
  • test/ — vitest suite (scaffold structure, publish gates, validation, capabilities drift, bundle smoke test).

Commands

pnpm --filter @getrheo/rheo-skill build          # gen:capabilities + bundle (run before committing)
pnpm --filter @getrheo/rheo-skill gen:capabilities
pnpm --filter @getrheo/rheo-skill bundle
pnpm --filter @getrheo/rheo-skill test
pnpm --filter @getrheo/rheo-skill typecheck
pnpm --filter @getrheo/rheo-skill validate:examples
pnpm --filter @getrheo/rheo-skill validate:skill-format   # agentskills.io frontmatter (skills-ref)

validate:skill-format installs the official skills-ref validator into a local .venv-skills-ref (gitignored) and checks rheo/, rheo/rheo-best-practices/, and rheo/rheo-flow-import/. Requires Python 3.11+. Set SKILLS_REF_SKIP=1 to skip (e.g. environments without Python). The same check runs in pnpm test via test/skillFormat.test.ts.

Run build after any change under src/ or to @getrheo/contracts / @getrheo/flow-runtime. When rheo-skill paths change, CI runs build and fails if rheo-cli.mjs or capabilities.md are not committed (rheo-skill.yml).

Manifest profile

rheo-flow-import fetches the latest LLM-friendly Manifest Agent Profile from https://docs.getrheo.io/docs/md/developer-guide/agent-manifest-profile, falling back to rheo/rheo-flow-import/references/manifest-agent-profile-fallback.md offline.

Compatibility

  • Manifest schema version: 7
  • Supported SDK surfaces: React Native / Expo and SwiftUI
  • Requires Node.js 20+