my-skills

Install for Claude Code

These skills use the official Claude Code Agent Skill format: a folder with a SKILL.md (frontmatter name + description, plus the instructions). Claude Code discovers them automatically.

1. Get the repository

git clone https://github.com/andredarcie/my-skills.git
cd my-skills

(or download the ZIP from GitHub and extract it)

2. Choose the scope

3. Copy the skill(s)

Linux / macOS / Git Bash — install all of them globally:

mkdir -p ~/.claude/skills
cp -r code-review dotnet-backend ef-core-sqlserver kafka-idempotency ~/.claude/skills/

Windows (PowerShell):

New-Item -ItemType Directory -Force ~\.claude\skills | Out-Null
Copy-Item -Recurse code-review, dotnet-backend, ef-core-sqlserver, kafka-idempotency ~\.claude\skills\

For project scope, change the destination to <your-project>/.claude/skills/. To install a single skill, copy only its folder (e.g. cp -r code-review ~/.claude/skills/).

4. Use it

Run claude in your project. Skills are detected automatically — type / to see them.