A collection of skills for AI coding agents (Claude Code, OpenCode, and others) that enhance your development workflow.
Create git commits with conventional commit messages.
Triggers: commit, /commit, make a commit
Features:
- Analyzes staged changes and generates conventional commit messages
- Follows
type(scope): messageformat (feat, fix, docs, style, refactor, test, chore) - Matches your repository's existing commit style
- Handles staging, branch protection warnings, and push in one flow
Create or update GitHub pull requests.
Triggers: pr, /pr, create pr, open pr, pull request
Features:
- Analyzes all commits since branching from main
- Generates PR title and description
- Respects
.github/PULL_REQUEST_TEMPLATE.mdif present - Handles push, draft PRs, reviewers, and labels
- Requires
ghCLI
Guidelines for writing secure and maintainable GitHub Actions workflows.
Triggers: workflow, github actions, CI/CD, actions yaml
Features:
- Security best practices (pinned actions, least-privilege permissions)
- Performance patterns (caching, parallel execution, fail-fast)
- Shell scripting guidelines
- Reference docs for API calls, matrix builds, and reusable workflows
- Integrates with
actionlintfor validation
npx skills add LuisUrrutia/skillsClone the repository and symlink to your agent's skills directory:
git clone https://github.com/LuisUrrutia/skills.git
cd skills
# For Claude Code
ln -s $(pwd)/commit ~/.config/claude/skills/commit
ln -s $(pwd)/pr ~/.config/claude/skills/pr
ln -s $(pwd)/github-actions ~/.config/claude/skills/github-actions
# For OpenCode
ln -s $(pwd)/commit ~/.config/opencode/skills/commit
ln -s $(pwd)/pr ~/.config/opencode/skills/pr
ln -s $(pwd)/github-actions ~/.config/opencode/skills/github-actions