用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill my-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
基于 SOC 职业分类
正在显示 SKILL.md
| 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