Skip to content

framersai/agentos-skills

Repository files navigation

AgentOS     Frame.dev

@framers/agentos-skills

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

npm

npm install @framers/agentos-skills

This is the content package. It contains 88 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 88 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 — 88 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 88 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


AgentOS     Frame.dev

Built by Manic Agency LLC / Frame.dev
Contact: [email protected]

About

Community registry of skills for AgentOS (SKILL.md prompt modules).

Resources

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors