원클릭으로
manage-skills
Help users search, install, create, and manage agent skills
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Help users search, install, create, and manage agent skills
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guide users through agent.yaml configuration, SOUL.md writing, and directory structure
Help users install gitagent and create their first agent from scratch
Help users register their agent on the gitagent public registry at registry.gitagent.sh
Help users export agents to other frameworks and import from existing tools
Help users run agents with different adapters — Claude, OpenAI, Lyzr, GitHub Models, and more
| name | manage-skills |
| description | Help users search, install, create, and manage agent skills |
| license | MIT |
| metadata | {"author":"gitagent","version":"1.0.0","category":"skills"} |
When a user wants to find skills, install them, create new ones, or understand the skills system.
# 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 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
# Show all discovered skills (local + global)
gitagent skills list -d ./my-agent
# Only agent-local skills
gitagent skills list -d ./my-agent --local
gitagent skills info code-review -d ./my-agent
Shows: name, description, license, allowed tools, metadata, optional directories.
skills/<name>/SKILL.md with frontmatter:---
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 instructions for using this skill.
Keep under ~5000 tokens / ~20000 characters.]
agent.yaml:skills:
- my-skill
gitagent validate -d ./my-agent
Skills are found in this order (first match wins):
| Priority | Path |
|---|---|
| 1 | <agent>/skills/ |
| 2 | <agent>/.agents/skills/ |
| 3 | <agent>/.claude/skills/ |
| 4 | <agent>/.github/skills/ |
| 5 | ~/.agents/skills/ |
scripts/ — Executable scripts the skill can referencereferences/ — Reference documentsassets/ — Images, static filesagents/ — Skill-specific sub-agents