A public collection of generic coding-agent workflows installable with skills.sh.
These skills are written for Codex, Claude Code, OpenCode, Cursor, other skills.sh-compatible agents, and T3 Code when routed through Codex or Claude backends.
Repository: https://github.com/SebastianMihali/agent-workflow-skills
investigate-issue- inspect a reported bug or task and produce an actionable investigation, only when explicitly requested.investigate-pr- inspect a pull request and summarize intent, risk, and follow-up work, only when explicitly requested.code-review- review a diff for bugs, regressions, missing tests, and maintainability risks, only when explicitly requested.commit-message- generate a Conventional Commit message and create the commit.pr-generate- generate pull request content and create the PR.release-notes- turn commits, tags, or diffs into user-facing release notes, only when explicitly requested.context-summary- compress current work context for another agent or future session.branch-name- generate a standard branch name and rename the current branch.cbp- commit the full worktree, optionally rename the branch, then push after confirmation.
Mutating skills:
commit-messagemay rungit add -Awhen nothing is staged and always creates a commit.pr-generatemay push the current branch and creates a GitHub pull request.branch-namerenames the current branch.cbpstages the full worktree, creates a commit, and asks before pushing.
# List skills
npx skills add github:SebastianMihali/agent-workflow-skills --list
# Install all globally
npx skills add github:SebastianMihali/agent-workflow-skills -g --skill '*'
# Install only CBP
npx skills add github:SebastianMihali/agent-workflow-skills -g --skill cbp
# Install to specific agents
npx skills add github:SebastianMihali/agent-workflow-skills -g --skill '*' -a codex -a claude-code -a opencodenpx skills add . --list
npx skills add . -a codex -a claude-code -a opencode --skill '*'MIT