These are my personal skills used in my projects and day-to-day work. They are public as references, and I may change, delete, or add to them as my needs evolve.
Portable agent skills for multiple coding assistants. Each skill follows the SKILL.md standard so it can be used across Claude Code, OpenCode, Codex, and Amp.
Skills are markdown files that describe a repeatable workflow. Agents can auto-apply them or you can call them directly with /skill-name.
| Skill | Description |
|---|---|
| bug-issue | Diagnose and fix a GitHub issue with a reproduction-first workflow. |
| commit | Generate a conventional commit message from staged changes and commit safely. |
| draft-issue | Research and draft a high quality GitHub issue before creating it. |
| empower-sync | Sync a commit from the gemini remote into sync-upstream for empower-site. |
| feature-issue | Implement a feature from a GitHub issue with a structured, review-first workflow. |
| git-branch-cleanup | Safely clean merged and stale git branches with explicit confirmations. |
| laravel-simplifier | Simplify and refine PHP/Laravel code for clarity and maintainability without changing behavior. |
| pr-review | Review a GitHub pull request, run targeted checks, and provide a decision-ready summary. |
| prd-discovery | Interview the user and write a PRD for Ralph in .prd/prd-.md. |
| prd-to-json | Convert .prd PRD markdown into .prd/prd.json with validation. |
| wp-plugin-changelog | Generate a WordPress plugin changelog focused on user value and update readme.txt when requested. |
| wp-plugin-tag | Create, verify, list, or delete WordPress plugin version tags safely. |
| wp-plugin-version | Analyze changes and update WordPress plugin version references safely. |
skills/
<skill-name>/
SKILL.md
templates/
scripts/
Recommended: symlink into each agent's skills directory.
# Claude Code
ln -s /path/to/skills/skills ~/.claude/skills
# OpenCode
ln -s /path/to/skills/skills ~/.config/opencode/skills
# Codex
ln -s /path/to/skills/skills ~/.codex/skills
# Amp
ln -s /path/to/skills/skills ~/.config/agents/skillsInvoke directly:
/commit
/feature-issue 123
/pr-review 456
General behavior guidance is stored in GUIDELINES.md.