my-skills

Install for OpenCode

OpenCode doesn’t use the SKILL.md folder format — its equivalent is a command: a single markdown file whose body is the prompt. So we copy each SKILL.md into a command file.

1. Get the repository

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

2. Choose the scope

3. Copy each SKILL.md as a command

Linux / macOS / Git Bash:

mkdir -p ~/.config/opencode/commands
for s in code-review dotnet-backend ef-core-sqlserver kafka-idempotency; do
  cp "$s/SKILL.md" ~/.config/opencode/commands/"$s".md
done

Windows (PowerShell):

New-Item -ItemType Directory -Force ~\.config\opencode\commands | Out-Null
foreach ($s in 'code-review','dotnet-backend','ef-core-sqlserver','kafka-idempotency') {
  Copy-Item "$s\SKILL.md" ~\.config\opencode\commands\"$s.md"
}

4. Use it

Invoke with /code-review, /dotnet-backend, /ef-core-sqlserver, or /kafka-idempotency. OpenCode reads the description frontmatter field; the name field is ignored (the command name comes from the filename).