소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 3일 09:52
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill my-skill명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| title | Creating Skills |
Skills are folders of instructions that give AI agents new capabilities. This guide helps you create, test, and share a skill with minimal ceremony.
agr init my-skill
Creates my-skill/SKILL.md in your current directory:
my-skill/
└── SKILL.md
If you're adding the skill to this repo, place it under ./skills/:
skills/
└── my-skill/
└── SKILL.md
From there you can:
SKILL.mdagr add ./skills/my-skillagr.toml for team sync (see below)A skill requires YAML frontmatter with name and description:
---
name: my-skill
description: Brief description of what this skill does and when to use it.
---
# My Skill
Instructions for the agent go here.
| Field | Constraints |
|---|---|
name | Max 64 chars. Lowercase letters, numbers, hyphens. Must match directory name. |
description | Max 1024 chars. Describes what the skill does and when to use it. |
| Field | Purpose |
|---|---|
license | License name or reference to bundled file |
compatibility | Environment requirements (tools, packages, network) |
metadata | Key-value pairs (author, version, etc.) |
---
name: code-reviewer
description: Reviews code for bugs, security issues, and best practices. Use when reviewing pull requests or code changes.
license: MIT
metadata:
author: your-username
version: "1.0"
---
# Code Reviewer
You are a code review expert. When reviewing code:
1. Check for bugs and logic errors
2. Identify security vulnerabilities
3. Suggest performance improvements
4. Ensure code follows project conventions
Be specific and actionable in your feedback. Reference line numbers when possible.
For complex skills, add supporting files:
my-skill/
├── SKILL.md
├── references/ # Additional documentation
│ └── style-guide.md
├── scripts/ # Executable code
│ └── validate.py
└── assets/ # Templates, data files
└── template.json
Reference them in your SKILL.md:
See [style guide](references/style-guide.md) for formatting rules.
Run the validation script:
scripts/validate.py
Keep your main SKILL.md under 500 lines. Put detailed reference material in the references/ folder.
Add your local skill and test it:
agr add ./skills/my-skill
(If your skill is elsewhere, point to that path instead.)
Your skill is now available in your configured tool. Test it by starting your agent and invoking the skill.
To share a skill with your team, add it to agr.toml as a local path
dependency:
dependencies = [
{path = "./skills/my-skill", type = "skill"},
]
Teammates run:
agr sync
Push to GitHub. Others install with:
agr add your-username/my-skill
Or from a specific repo:
agr add your-username/my-repo/my-skill