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

v0.5.0

Published

Curated SKILL.md prompt modules for AgentOS — 72 staff-verified skills with machine-readable registry index

Readme

@framers/agentos-skills

Curated SKILL.md prompt modules for AgentOS — 72 staff-verified skills with a machine-readable registry index.

npm

npm install @framers/agentos-skills

This is the content package. It contains 72 curated SKILL.md files and the auto-generated registry.json index — no runtime code, no dependencies.

For the catalog SDK (query helpers, lazy loading, factory functions), see @framers/agentos-skills-registry.

For the runtime engine (SkillLoader, SkillRegistry, path utilities), see @framers/agentos (@framers/agentos/skills).

What's Inside

This package bundles 72 curated SKILL.md files organized under registry/curated/:

| Category | Skills | | -------------- | ---------------------------------------------------------------------- | | Developer | github, git, coding-agent, code-safety, structured-output | | Social | twitter-bot, instagram-bot, linkedin-bot, facebook-bot, threads-bot, bluesky-bot, mastodon-bot, youtube-bot, tiktok-bot, pinterest-bot, reddit-bot, blog-publisher, social-broadcast | | Research | web-search, web-scraper, deep-research, summarize, company-research | | Productivity | notion, obsidian, trello, apple-notes, apple-reminders, spotify-player | | Communication | slack-helper, discord-helper, email-intelligence | | Voice | voice-conversation, whisper-transcribe, streaming-stt-*, streaming-tts-*, vosk, piper, porcupine, openwakeword, diarization | | Creative | image-gen, image-editing, audio-generation, video-generation, content-creator | | AI/ML | vision-ocr, multimodal-rag, ml-content-classifier, endpoint-semantic, grounding-guard, topicality, emergent-tools, pii-redaction | | Infrastructure | cloud-ops, site-deploy, healthcheck | | Security | 1password | | Other | memory-manager, account-manager, agent-config, seo-campaign, weather |

Each skill is a Markdown file with YAML frontmatter:

---
name: github
version: '2.0.0'
description: Full GitHub API integration
author: Wunderland
category: developer
tags: [github, git, repository]
requires_secrets: [github.token]
requires_tools: [github_search, github_repo_list]
metadata:
  agentos:
    emoji: "🐙"
    primaryEnv: GITHUB_TOKEN
    requires:
      bins: ['gh']
    install:
      - id: brew-gh
        kind: brew
        formula: gh
        bins: [gh]
---

# GitHub

[Markdown instructions for the agent...]

Ecosystem

@framers/agentos/skills               ← Engine (SkillLoader, SkillRegistry, path utils)
@framers/agentos-skills               ← Content (you are here — 72 SKILL.md files + registry.json)
@framers/agentos-skills-registry      ← Catalog SDK (SKILLS_CATALOG, query helpers, factories)

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

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

Usage

Direct JSON import

import registry from '@framers/agentos-skills/registry.json';

console.log(`${registry.stats.totalSkills} skills available`);
for (const skill of registry.skills.curated) {
  console.log(`  ${skill.metadata?.emoji ?? '📦'} ${skill.name} — ${skill.description}`);
}

Via the catalog SDK (recommended)

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

const matches = searchSkills('github');
const skill = await loadSkillByName('github');
console.log(skill?.content); // SKILL.md body ready for prompt injection

Via the runtime engine

import { SkillRegistry } from '@framers/agentos/skills';

const registry = new SkillRegistry();
await registry.loadFromDirs(['/path/to/agentos-skills/registry/curated']);
const snapshot = registry.buildSnapshot({ platform: 'darwin', strict: true });
console.log(snapshot.prompt);

Contributing

See CONTRIBUTING.md for guidelines on adding new skills.

License

MIT