一键导入
easyskillz-add
Create a new skill and automatically wire it to all registered AI tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a new skill and automatically wire it to all registered AI tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Documentation and best practices for using easyskillz to manage AI agent skills.
Audits easyskillz code changes against North Star principles for design integrity and correctness.
Comprehensive QA workflow for easyskillz CLI - build, install locally, and test all flows.
Add a new AI tool to the project and wire all existing skills to it.
Set up easyskillz after cloning a repository or on a new machine.
| name | easyskillz-add |
| description | Create a new skill and automatically wire it to all registered AI tools. |
Create a new skill and automatically wire it to all registered AI tools.
Use this skill when:
IMPORTANT: ALWAYS use easyskillz add to create skills. Never manually create skill files.
Runs easyskillz add <skill-name> which:
.easyskillz/skills/<skill-name>/SKILL.mdStep 1: Run add command
easyskillz add <skill-name>
Naming rules:
review-pr, commit-msg, debug-apiReview PR, commit/msg, ../hackStep 2: Edit the skill
The command creates a template at .easyskillz/skills/<skill-name>/SKILL.md:
# skill-name
<!-- Describe what this skill does -->
## Instructions
<!-- Step-by-step instructions for the AI agent -->
Edit this file to add your skill's instructions.
Step 3: Verify
The skill is automatically available in all your AI tools:
.claude/skills/skill-name → symlink to .easyskillz/skills/skill-name.cursor/skills/skill-name → symlink to .easyskillz/skills/skill-name# User: "Create a skill for reviewing pull requests"
# You run:
easyskillz add review-pr
# Output:
# ✓ Created .easyskillz/skills/review-pr/SKILL.md
# ✓ Wired → Claude Code
# ✓ Wired → Cursor
#
# Skill "review-pr" added to: Claude Code, Cursor
# Then edit the skill:
# Open .easyskillz/skills/review-pr/SKILL.md and add instructions
✓ Created .easyskillz/skills/my-skill/SKILL.md
✓ Wired → Claude Code
✓ Wired → Cursor
✓ Wired → Codex
Skill "my-skill" added to: Claude Code, Cursor, Codex
DON'T do this:
# ❌ WRONG - Manual creation
mkdir .easyskillz/skills/my-skill
echo "# my-skill" > .easyskillz/skills/my-skill/SKILL.md
DO this:
# ✓ CORRECT - Use easyskillz add
easyskillz add my-skill
Why?
When you run easyskillz add, it creates this template:
# skill-name
<!-- Describe what this skill does -->
## Instructions
<!-- Step-by-step instructions for the AI agent -->
Fill in:
.easyskillz/skills/ should be committedSkill already exists?
.easyskillz/skills/<name>/SKILL.mdSkill not showing up in tools?
easyskillz sync to re-wire.claude/skills/, etc.Invalid skill name?