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

@framers/agentos-skills-registry

v0.19.0

Published

Catalog SDK for AgentOS skills — query helpers, lazy loaders, and factory functions for curated SKILL.md prompt modules

Downloads

3,005

Readme

@framers/agentos-skills-registry

Catalog SDK for querying and loading AgentOS skills.

npm

npm install @framers/agentos-skills-registry

For the skill content (SKILL.md files), see @framers/agentos-skills.

Ecosystem

| Package | Role | |---------|------| | @framers/agentos-skills | Content -- 72 SKILL.md files + registry.json | | @framers/agentos-skills-registry | Catalog SDK -- query helpers, lazy loaders, factories | | @framers/agentos | Engine -- SkillLoader, SkillRegistry, SkillSnapshot |

This layout mirrors the extensions ecosystem: @framers/agentos-extensions (content) + @framers/agentos-extensions-registry (SDK).

| Package | Role | What | Runtime Code | Dependencies | | ------------------------------------ | --------------- | ------------------------------------------------------- | :----------: | ------------------------ | | @framers/agentos/skills | Engine | SkillLoader, SkillRegistry, path utils | Yes | yaml | | @framers/agentos-skills | Content | 72 SKILL.md files + registry.json index | No | None | | @framers/agentos-skills-registry | Catalog SDK | SKILLS_CATALOG, query helpers, lazy loaders, factories | Yes | agentos-skills, yaml |

Quick Start

1. Browse the catalog (zero peer deps)

import {
  SKILLS_CATALOG,
  searchSkills,
  getSkillsByCategory,
  getSkillByName,
} from '@framers/agentos-skills-registry/catalog';

// Full-text search
const matches = searchSkills('github');
console.log(matches.map(s => `${s.name}: ${s.description}`));

// By category
const devSkills = getSkillsByCategory('developer');
console.log(`${devSkills.length} developer skills`);

// By name
const gh = getSkillByName('github');
console.log(gh?.requiredSecrets); // ['github.token']

2. Lazy-load a skill on demand

import { loadSkillByName } from '@framers/agentos-skills-registry';

const skill = await loadSkillByName('github');
if (skill) {
  console.log(skill.content); // SKILL.md body for prompt injection
  console.log(skill.metadata?.emoji); // "octopus"
}

3. Build a SkillSnapshot (requires @framers/agentos)

import { createCuratedSkillSnapshot } from '@framers/agentos-skills-registry';

const snapshot = await createCuratedSkillSnapshot({
  skills: ['github', 'web-search', 'notion'],
  platform: 'darwin',
});

// Inject into agent prompt
console.log(snapshot.prompt);

4. Workspace skill discovery

import {
  discoverWorkspaceSkills,
  mergeWithWorkspaceSkills,
  SKILLS_CATALOG,
} from '@framers/agentos-skills-registry';

// Scan .agents/skills/ for workspace-local skills
const workspace = await discoverWorkspaceSkills();

// Merge with curated (workspace takes priority on name collision)
const merged = mergeWithWorkspaceSkills(SKILLS_CATALOG, workspace);

Sub-exports

| Entry Point | What | Peer Deps | |---|---|---| | @framers/agentos-skills-registry | Full API: catalog + factories + workspace discovery | @framers/agentos (optional) | | @framers/agentos-skills-registry/catalog | SKILLS_CATALOG, query helpers, lazy loaders | None | | @framers/agentos-skills-registry/workspace-discovery | Workspace skill scanning + merging | None |

API Reference

Catalog Queries

  • SKILLS_CATALOG -- Sorted array of all curated + community skill entries
  • searchSkills(query) -- Full-text search across names, descriptions, tags
  • getSkillsByCategory(category) -- Filter by category
  • getSkillByName(name) -- Single skill lookup
  • getAvailableSkills(installedTools) -- Filter by available tools
  • getCategories() -- List unique categories
  • getSkillsByTag(tag) -- Filter by tag
  • getCuratedSkills() / getCommunitySkills() / getAllSkills() -- Source filters
  • getSkillEntries(names) -- Filter by name list ('all' | 'none' | string[])

Lazy Loading

  • loadSkillByName(name) -- Load and parse a single SKILL.md by name
  • loadSkillsByNames(names) -- Parallel load multiple skills
  • createLocalSkillProxy(relativePath, displayName) -- Factory for lazy loading

Factory Functions (requires @framers/agentos)

  • createCuratedSkillRegistry(options?) -- Create a live SkillRegistry with selected curated skills
  • createCuratedSkillSnapshot(options?) -- Build a SkillSnapshot ready for prompt injection

Path Helpers

  • getBundledCuratedSkillsDir() -- Absolute path to @framers/agentos-skills/registry/curated/
  • getBundledCommunitySkillsDir() -- Absolute path to @framers/agentos-skills/registry/community/

Workspace Discovery

  • discoverWorkspaceSkills(options?) -- Scan .agents/skills/ for workspace-local skills
  • mergeWithWorkspaceSkills(registry, workspace) -- Merge with priority to workspace
  • parseSkillFrontmatter(content) -- Parse YAML frontmatter from skill content

License

MIT