gabrielkoerich Skills

Installing Skills on Your Agent

Each skill follows the Agent Skills open standard (SKILL.md + optional scripts/resources), so it works with any agent that supports it.

Quickest way: Send your agent this repository and ask it to install the skill you need. It will handle the setup automatically. Just remember to run ./setup.sh <skill-name> afterwards to configure dependencies and environment variables.

Claude Code

Copy or symlink the skill directory into your Claude Code skills folder:

# Personal (available across all projects)
cp -r github-secrets ~/.claude/skills/github-secrets

# Or project-level (available in this project only)
cp -r github-secrets .claude/skills/github-secrets

Then run setup for dependencies and API keys:

./setup.sh github-secrets
source .env

Codex (OpenAI)

Copy or symlink the skill directory into your Codex skills folder:

# Project-level
cp -r github-secrets .agents/skills/github-secrets

# Or user-level
cp -r github-secrets ~/.agents/skills/github-secrets

Then run setup:

./setup.sh github-secrets
source .env

OpenClaw

Paste this repository's URL into your OpenClaw chat and ask it to install the skill, or copy manually into your workspace skills folder:

# Find your workspace path
cat ~/.openclaw/openclaw.json | grep workspace

# Copy into your workspace skills folder
cp -r github-secrets <workspace>/skills/github-secrets

Then run setup:

./setup.sh github-secrets
source .env

Other Agents

For any agent that supports SKILL.md files, copy the skill directory into the agent's skills folder and run the setup script to configure dependencies and environment variables.