{"id":45388079,"url":"https://github.com/jesusgpo/gh-buddy","last_synced_at":"2026-02-27T10:19:20.839Z","repository":{"id":339801871,"uuid":"1162891797","full_name":"jesusgpo/gh-buddy","owner":"jesusgpo","description":"A GitHub CLI extension to create branches and pull requests from issues, following consistent naming conventions.","archived":false,"fork":false,"pushed_at":"2026-02-21T17:37:34.000Z","size":20,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-21T22:46:56.438Z","etag":null,"topics":["developer-tools","gh-extension","gh-extensions","github-cli","github-cli-extension","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jesusgpo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-20T20:32:32.000Z","updated_at":"2026-02-21T18:33:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jesusgpo/gh-buddy","commit_stats":null,"previous_names":["jesusgpo/gh-buddy"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jesusgpo/gh-buddy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jesusgpo%2Fgh-buddy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jesusgpo%2Fgh-buddy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jesusgpo%2Fgh-buddy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jesusgpo%2Fgh-buddy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jesusgpo","download_url":"https://codeload.github.com/jesusgpo/gh-buddy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jesusgpo%2Fgh-buddy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29890926,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T09:48:51.284Z","status":"ssl_error","status_checked_at":"2026-02-27T09:48:43.992Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["developer-tools","gh-extension","gh-extensions","github-cli","github-cli-extension","golang"],"created_at":"2026-02-21T18:07:25.795Z","updated_at":"2026-02-27T10:19:20.827Z","avatar_url":"https://github.com/jesusgpo.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gh-buddy\n\n\u003e Your friendly GitHub CLI extension for branches \u0026 pull requests 🤝\n\nA GitHub CLI extension that helps you create branches and pull requests following consistent naming conventions, directly from GitHub issues.\n\n## Installation\n\n```bash\ngh extension install jesusgpo/gh-buddy\n```\n\n## Usage\n\n```\ngh buddy --help\n\nGitHub CLI Buddy Extension\n\nBuddy helps you create branches and pull requests following\nconsistent naming conventions, directly from GitHub issues.\n\nUsage:\n  buddy [command]\n\nAvailable Commands:\n  create-branch Create a local branch from an issue\n  create-pr     Create a pull request from the current local branch\n  help          Help about any command\n\nFlags:\n  -h, --help      help for buddy\n  -v, --version   version for buddy\n  -y, --yes       use the default proposed fields\n```\n\n### Create a branch\n\n```bash\n# Interactive: select from your assigned issues\ngh buddy create-branch\n\n# From a specific issue\ngh buddy create-branch --issue 42\n\n# With a specific type\ngh buddy create-branch --issue 42 --type bugfix\n\n# From a different base branch\ngh buddy create-branch --issue 42 --base develop\n\n# Non-interactive: use all defaults\ngh buddy create-branch --issue 42 -y\n```\n\nBranch naming convention: `\u003ctype\u003e/GH-\u003cissue-number\u003e-\u003cslugified-title\u003e`\n\nSupported types: `feature`, `bugfix`, `hotfix`, `release`, `chore`, `docs`, `refactor`, `test`\n\n### Create a pull request\n\n```bash\n# Auto-detect issue from branch name\ngh buddy create-pr\n\n# Link to a specific issue\ngh buddy create-pr --issue 42\n\n# Create as a draft\ngh buddy create-pr --draft\n\n# Non-interactive\ngh buddy create-pr -y\n```\n\nThe PR body is auto-generated with:\n- Issue description (if linked)\n- `Closes #N` reference for automatic issue closing\n- Checklist template for unlinked PRs\n\n## Development\n\n```bash\n# Build\nmake build\n\n# Install locally\nmake install\n\n# Run tests\nmake test\n\n# Build for all platforms\nmake release\n```\n\n## How it works\n\n1. **create-branch**: Fetches issue details from GitHub, generates a branch name following `type/number-title` convention, creates the branch from the base, and optionally pushes it.\n\n2. **create-pr**: Detects the issue number from the current branch name (or prompts), fetches issue details, generates title/body, pushes the branch, and creates the PR via `gh`.\n\n## Requirements\n\n- [GitHub CLI](https://cli.github.com/) (`gh`) installed and authenticated\n- Git\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjesusgpo%2Fgh-buddy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjesusgpo%2Fgh-buddy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjesusgpo%2Fgh-buddy/lists"}