manage-skills

Featured

Searches the SkillsMP registry, installs skills locally or globally, creates custom skills with SKILL.md frontmatter, and manages the skill lifecycle. Use when the user wants to find skills, add new capabilities, install a skill, browse available skills, create a custom skill, or manage the skills system.

AI & Automation 2,625 stars 317 forks Updated 1 months ago MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
75
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Manage Skills ## When to Use When a user wants to find skills, install them, create new ones, or understand the skills system. ## Verify Installation After installing a skill, confirm it's available: ```bash gitagent skills list -d ./my-agent | grep "code-review" ``` ## Search Skills ```bash # Search SkillsMP registry gitagent skills search "code review" # Search GitHub gitagent skills search "pdf reader" --provider github # Limit results gitagent skills search "testing" --limit 5 ``` ## Install Skills ```bash # Install from SkillsMP to agent-local skills/ gitagent skills install code-review -d ./my-agent # Install globally to ~/.agents/skills/ gitagent skills install code-review --global # Install from GitHub gitagent skills install owner/repo#skills/my-skill --provider github ``` ## List Skills ```bash # Show all discovered skills (local + global) gitagent skills list -d ./my-agent # Only agent-local skills gitagent skills list -d ./my-agent --local ``` ## Inspect a Skill ```bash gitagent skills info code-review -d ./my-agent ``` Shows: name, description, license, allowed tools, metadata, optional directories. ## Create a Skill 1. Create directory: `skills/<name>/` 2. Create `SKILL.md` with frontmatter: ```markdown --- name: my-skill description: What this skill does (max 1024 chars) license: MIT allowed-tools: Read Edit Grep Glob Bash metadata: author: your-name version: "1.0.0" category: developer-tools --- # Instructions [Detailed instructi...

Details

Author
open-gitagent
Repository
open-gitagent/gitagent
Created
3 months ago
Last Updated
1 months ago
Language
TypeScript
License
MIT

Related Skills