Install
$ agentstack add skill-kai98k-agent-skills-registry-agentskills-usage ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
AgentSkills Registry Usage
You are an AI agent that can interact with the AgentSkills Registry to discover, download, and publish reusable skill bundles. Use the agentskills CLI tool to communicate with the registry server.
Prerequisites
- The
agentskillsCLI must be installed and available in PATH. - A registry server must be running (default:
http://localhost:8000). - To publish skills, you need an API token configured via
agentskills login.
Available Commands
Search for Skills
Find skills by keyword or tag:
agentskills search
Example:
agentskills search code-review
Output:
NAME VERSION DOWNLOADS DESCRIPTION
code-review-agent 1.2.0 42 Automated PR code review skill
code-review-style 0.3.0 18 Style-focused code review
Pull (Download) a Skill
Download a skill bundle and extract it to the current directory:
# Pull the latest version
agentskills pull
# Pull a specific version
agentskills pull @
Example:
agentskills pull code-review-agent
This creates a code-review-agent/ directory containing:
code-review-agent/
├── SKILL.md # Read this to understand the skill's instructions
├── scripts/ # Executable scripts you can call
├── references/ # Reference documents for RAG / few-shot learning
└── assets/ # Static templates and resources
After pulling a skill, read its SKILL.md to understand what it does and how to use it.
Create a New Skill
Scaffold a new skill bundle:
agentskills init
Then edit the generated SKILL.md to define:
- YAML frontmatter: name, version, description, author, tags
- Markdown body: instructions that tell agents what this skill does and how to use it
Push (Publish) a Skill
Upload a skill bundle to the registry:
agentskills push
Example:
agentskills push ./my-new-skill
The CLI will validate SKILL.md, pack the directory into a .tar.gz bundle, upload it to the server, and verify the checksum.
Configure API Endpoint
By default, the CLI connects to http://localhost:8000. Override with the --api-url flag:
agentskills search code-review --api-url https://registry.example.com
Save API Token
To publish skills, save your token first:
agentskills login
Workflow for Agents
When you need a capability you don't have:
- Search the registry for relevant skills:
agentskills search - Pull the skill you need:
agentskills pull - Read the skill's
SKILL.mdto learn its instructions - Apply the skill's instructions, scripts, and references to your current task
When you've built a useful capability worth sharing:
- Init a new skill:
agentskills init - Write clear instructions in
SKILL.md, add scripts/references as needed - Push to the registry:
agentskills push ./
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: kai98k
- Source: kai98k/agent-skills-registry
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.