Public repository of skills authored by ReByte.
Each top-level directory is a skill: a SKILL.md plus any supporting scripts, references, or templates. Skills are packaged as .skill ZIPs and distributed to agents running in Rebyte's cloud VMs.
Each skill follows the Anthropic SKILL.md convention:
---
name: my-skill
description: One line of what this skill does and when to use it.
---
# My Skill
Instructions for the agent…rebyte-skills/
├── _common/ # Shared SKILL.md includes (e.g. auth patterns)
├── pdf/
│ └── SKILL.md
├── deep-research/
│ └── SKILL.md
└── …
Any skill may reference a fragment from _common/ using:
{{include:auth.md}}
Includes are expanded when the skill is packaged.
catalog.json is the single-file index an agent fetches to know what is available. Each entry has a name (= the directory) and a description, so the agent can pick relevant skills and install them via the skill-installer.
Raw URL:
https://raw.githubusercontent.com/ReByteAI/rebyte-skills/main/catalog.json
Inside the Rebyte platform, skills from this repo are referenced as rebyteai/<slug>. Outside Rebyte, clone this repository and point your skill loader at any directory that contains a SKILL.md.
Apache License 2.0 — see LICENSE.