Curated registry of agent skills for Agent Skill Manager (asm).
This repository serves as the central registry for discovering and installing agent skills via asm install <skill-name>. Each skill is represented by a JSON manifest that points to its source repository and commit.
schema/
manifest.v1.json # JSON Schema for manifest validation
manifests/
<author>/
<skill-name>.json # One manifest per skill
index.json # Auto-generated index of all skills
# Install by bare name
asm install code-review
# Install by scoped name
asm install luongnv89/skill-auditor# From your skill repository
asm publishOr submit manually — see CONTRIBUTING.md for the full guide.
Each manifest follows schema/manifest.v1.json. Key fields:
| Field | Description |
|---|---|
name |
Lowercase skill name ([a-z0-9-]) |
author |
GitHub username of the publisher |
repository |
Source repo URL |
commit |
Pinned commit SHA (40 hex chars) |
version |
Semantic version |
description |
One-line description |
tags |
Categorization tags |
security_verdict |
Result of security audit |
- validate-pr.yml — Runs on every PR: schema validation, author identity check, duplicate detection, typosquat detection, and independent security scan.
- rebuild-index.yml — Runs on merge to main: rebuilds
index.jsonfrom all manifests.
MIT