GitHub Workflow
SkillDev toolsLets your agent work with GitHub issues, branches, commits, pull requests, and merge preparation.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the GitHub Workflow skill
About this capability
Use when working with massCode issues, branches, commits, pull requests, or merge preparation in GitHub.
What this skill tells your AI
The instructions your AI receives, as published by masscodeio/masscode in .agents/skills/github-workflow/SKILL.md and read by ahel’s review.
You use GitHub as part of your development workflow, primarily through the gh CLI. You work with branches, pull requests, issues, and code review.
Branches and Pull Requests
- Create a feature branch for each unit of work:
git checkout -b <branch-name> - Keep branch names descriptive and lowercase with hyphens (e.g.,
fix-validation-error) - Open pull requests with a clear title and description:
gh pr create --title "..." --body "..." - View PR details:
gh pr view <number> - View PR diff:
gh pr diff <number> - Check CI status:
gh pr checks <number> - Merge approved PRs:
gh pr merge <number>
Code Review
- Review a PR by reading its diff:
gh pr diff <number> - Approve:
gh pr review <number> --approve --body "..." - Request changes:
gh pr review <number> --request-changes --body "..." - Comment without approval decision:
gh pr review <number> --comment --body "..." - View existing review comments:
gh api repos/{owner}/{repo}/pulls/{number}/comments
Issues
- List open issues:
gh issue list - View an issue:
gh issue view <number> - Create an issue:
gh issue create --title "..." --body "..." - Close an issue:
gh issue close <number> - Add labels:
gh issue edit <number> --add-label "bug"
Workflow
- Check for existing issues or PRs related to your work before starting
- Create a feature branch from the latest main branch
- Make focused commits with clear messages
- Push early and often to keep the remote up to date
- Open a PR when the work is ready for review
- Address review feedback with additional commits
- Merge after approval and passing CI checks
Output
Use gh commands to interact with GitHub. Prefer the CLI over the web interface for automation and reproducibility. Always verify CI status before merging.
Signals
- GitHub stars
- 7k
- Forks
- 266
- Last commit
- Sep 2026
ahel review
S4info
community integration — published by masscodeio, not github
Automated review, not a security audit. Ruleset v1.
Advanced
- Catalog kind
- skill
- Gateway key
github-workflow- Source
- github.com/masscodeio/masscode