ワンクリックで
easyskillz-reference
Documentation and best practices for using easyskillz to manage AI agent skills.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Documentation and best practices for using easyskillz to manage AI agent skills.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Audits easyskillz code changes against North Star principles for design integrity and correctness.
Create a new skill and automatically wire it to all registered AI tools.
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-reference |
| description | Documentation and best practices for using easyskillz to manage AI agent skills. |
This project uses easyskillz to manage AI agent skills across multiple tools.
.easyskillz/skills/ and are automatically wired to all AI toolseasyskillz sync after cloning — everything just works.easyskillz/docs/, symlinked to tool locationsIMPORTANT: Never manually create skill files. Always use:
easyskillz add <skill-name>
Why?
.easyskillz/skills/Example workflow:
# Create a new skill
easyskillz add review-pr
# Edit the skill
code .easyskillz/skills/review-pr/SKILL.md
# It's automatically available in all tools!
easyskillz add <name> — Create a new skill and wire it to all registered toolseasyskillz sync — Detect tools, wire all skills, manage instruction fileseasyskillz register <tool> — Add a new tool and wire all existing skills to iteasyskillz docs sync — Force re-scan and centralize instruction fileseasyskillz docs list — Show centralized instruction files and their statuseasyskillz export --target <path> — Copy skills + config to another projectWhen running commands autonomously (without user interaction):
Non-interactive mode (bash/sh):
printf "Y\n1\n1\n" | easyskillz sync # Accept docs (unified) + gitignore (full)
printf "n\n2\n" | easyskillz sync # Decline docs + gitignore (conflict-only)
Machine-readable output:
easyskillz sync --json
easyskillz add my-skill --json
easyskillz docs list --json
When you or a teammate clones this repo:
easyskillz sync
This regenerates all symlinks and wires skills to your local AI tools.
.easyskillz/
skills/ ← Source of truth (committed)
review-pr/
SKILL.md
commit-msg/
SKILL.md
docs/ ← Centralized instruction files (committed)
INSTRUCTION.md ← Unified instruction file
easyskillz.json ← Config (committed)
.claude/skills/ ← Symlinks (gitignored, regenerated on sync)
.cursor/rules/ ← Generated Cursor rules (gitignored, regenerated on sync)
easyskillz add — Never create skills manually.easyskillz/skills/ — This is the source of truth.easyskillz/ — Skills and config go in git.claude/, .cursor/, etc. are machine-localsync after cloning — Regenerates symlinks for your machine