├── .github ├── .gh-prx.yaml ├── pull_request_template.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .golangci.yaml ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── assets ├── gh-prx-checkout-new-issue.gif ├── gh-prx-checkout-new.gif ├── gh-prx-create.gif └── logo.png ├── dist └── config.yaml ├── go.mod ├── go.sum ├── main.go ├── pkg ├── ai │ └── summarizer.go ├── branch │ ├── branch.go │ └── branch_test.go ├── cmd │ ├── checkout-new.go │ ├── create.go │ ├── root.go │ └── setup │ │ ├── provider.go │ │ └── setup.go ├── config │ ├── env.go │ ├── repository_config.go │ └── setup_config.go ├── models │ ├── branch.go │ ├── issue.go │ └── pr.go ├── pr │ └── pr.go ├── providers │ ├── github.go │ ├── jira.go │ ├── linear.go │ └── provider.go └── utils │ ├── file.go │ ├── os.go │ ├── string.go │ ├── template.go │ └── term.go └── tools └── tools.go /.github/.gh-prx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/.github/.gh-prx.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/README.md -------------------------------------------------------------------------------- /assets/gh-prx-checkout-new-issue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/assets/gh-prx-checkout-new-issue.gif -------------------------------------------------------------------------------- /assets/gh-prx-checkout-new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/assets/gh-prx-checkout-new.gif -------------------------------------------------------------------------------- /assets/gh-prx-create.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/assets/gh-prx-create.gif -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/assets/logo.png -------------------------------------------------------------------------------- /dist/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/dist/config.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/main.go -------------------------------------------------------------------------------- /pkg/ai/summarizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/ai/summarizer.go -------------------------------------------------------------------------------- /pkg/branch/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/branch/branch.go -------------------------------------------------------------------------------- /pkg/branch/branch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/branch/branch_test.go -------------------------------------------------------------------------------- /pkg/cmd/checkout-new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/cmd/checkout-new.go -------------------------------------------------------------------------------- /pkg/cmd/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/cmd/create.go -------------------------------------------------------------------------------- /pkg/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/cmd/root.go -------------------------------------------------------------------------------- /pkg/cmd/setup/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/cmd/setup/provider.go -------------------------------------------------------------------------------- /pkg/cmd/setup/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/cmd/setup/setup.go -------------------------------------------------------------------------------- /pkg/config/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/config/env.go -------------------------------------------------------------------------------- /pkg/config/repository_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/config/repository_config.go -------------------------------------------------------------------------------- /pkg/config/setup_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/config/setup_config.go -------------------------------------------------------------------------------- /pkg/models/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/models/branch.go -------------------------------------------------------------------------------- /pkg/models/issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/models/issue.go -------------------------------------------------------------------------------- /pkg/models/pr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/models/pr.go -------------------------------------------------------------------------------- /pkg/pr/pr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/pr/pr.go -------------------------------------------------------------------------------- /pkg/providers/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/providers/github.go -------------------------------------------------------------------------------- /pkg/providers/jira.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/providers/jira.go -------------------------------------------------------------------------------- /pkg/providers/linear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/providers/linear.go -------------------------------------------------------------------------------- /pkg/providers/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/providers/provider.go -------------------------------------------------------------------------------- /pkg/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/utils/file.go -------------------------------------------------------------------------------- /pkg/utils/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/utils/os.go -------------------------------------------------------------------------------- /pkg/utils/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/utils/string.go -------------------------------------------------------------------------------- /pkg/utils/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/utils/template.go -------------------------------------------------------------------------------- /pkg/utils/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/pkg/utils/term.go -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilaif/gh-prx/HEAD/tools/tools.go --------------------------------------------------------------------------------