Github
A society of AI agents with impeccable standards and zero tolerance for 'fix stuff' commits.
npx -y skills add fworks-tech/agenthood --skill githubAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manage GitHub repositories via the gh CLI. Use when working with issues, PRs, releases, or repository settings.
SKILL.md
1.3 KB, as published. Nobody here has run it
gh
Use gh to interact with GitHub.
Common Commands
Issues
- List issues:
gh issue list - View issue:
gh issue view <number> - Create issue:
gh issue create --title "Title" --body "Description" - Close issue:
gh issue close <number>
Pull Requests
- List PRs:
gh pr list - View PR:
gh pr view <number> - Create PR:
gh pr create --title "Title" --body "Description" - Checkout PR:
gh pr checkout <number> - Merge PR:
gh pr merge <number> --merge - Review PR:
gh pr review <number> --approve
Repositories
- Clone:
gh repo clone <owner>/<repo> - View repo:
gh repo view - Create repo:
gh repo create <name> --public
Releases
- List releases:
gh release list - Create release:
gh release create v1.0.0 --title "Release" --notes "Notes"
Notes
- Requires
gh auth loginfor authentication - Use
--jsonflag for machine-readable output