Loading...
Loading...
Create and manage GitHub repositories, branches, commits, and PRs via local git commands and GitHub MCP. Use when the user asks to create a repo, push code, get repo info, manage branches, open PRs, or work with GitHub repositories.
npx skill4agent add fanthus/agent-skills github-repo-managementgit push --forcegit branch -Dmainmasterfeat:fix:docs:create_repositorynamedescriptionprivategit remote add origin https://github.com/<owner>/<repo>.gitorigingit init
git remote add origin https://github.com/<owner>/<repo>.gitgit push -u origin mainmaingit statusgit initgit remote -vorigingit statusgit add <paths>git add -Agit commit -m "type(scope): description"git push origin <branch>maingit push -u origin maingit remote get-url origingit checkout -b <branch-name>git push -u origin <branch-name>git checkout <branch>git switch <branch>git branch -d <branch>git push origin --delete <branch>headbasemaintitlebodytype(scope): short description| Type | Use for |
|---|---|
| New feature |
| Bug fix |
| Documentation only |
| Formatting, no code change |
| Code change, no feature/fix |
| Adding or updating tests |
| Build, tooling, deps |
feat(auth): add login endpointfix(api): correct date parsingdocs: update README setup stepsmain