ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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