Community index of installable Agent Skills for OpenHuman.
OpenHuman's skill browser fetches index.json from this repo to populate the catalog. Each entry points to a SKILL.md file that follows the Agent Skills specification.
- Create a directory under
skills/with your skill slug (lowercase, hyphens only). - Add a
SKILL.mdfollowing the agentskills.io spec. - Add an entry to
index.jsonwith thedownload_urlpointing to the raw GitHub URL. - Open a PR.
{
"skills": [
{
"id": "my-skill",
"name": "My Skill",
"description": "What it does and when to use it.",
"format": "agentskills",
"author": "your-name",
"version": "1.0.0",
"tags": ["tag1", "tag2"],
"download_url": "https://raw.githubusercontent.com/tinyhumansai/skill-registry/main/skills/my-skill/SKILL.md"
}
]
}