gh-manager-cli 1.28.0 โ 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +21 -3
- package/dist/index.js +19 -4
- package/package.json +19 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.30.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.29.0...v1.30.0) (2025-09-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add workflow to auto-release on any version change ([f89c237](https://github.com/wiiiimm/gh-manager-cli/commit/f89c2378c6427fb3762e160294ddd0681d29ea80))
|
|
7
|
+
|
|
8
|
+
# [1.29.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.28.0...v1.29.0) (2025-09-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* enhance messaging to position as GitHub web UI alternative ([5c4a802](https://github.com/wiiiimm/gh-manager-cli/commit/5c4a80252848dd1f85604c5fae9ec1f2945e1e9b))
|
|
14
|
+
|
|
1
15
|
# [1.28.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.27.0...v1.28.0) (2025-09-05)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
<
|
|
2
|
-
<img src="docs/assets/logo-horizontal.png" alt="gh-manager-cli logo" width="400" />
|
|
3
|
-
</p>
|
|
1
|
+
<img src="docs/assets/logo-horizontal.png" alt="gh-manager-cli logo" width="400" />
|
|
4
2
|
|
|
5
3
|
# gh-manager-cli
|
|
6
4
|
|
|
@@ -16,6 +14,26 @@ Interactive terminal app to browse and manage your personal GitHub repositories.
|
|
|
16
14
|
|
|
17
15
|
๐ **Visit our website:** [gh-manager-cli.dev](https://gh-manager-cli.dev) | [Source](https://github.com/wiiiimm/gh-manager-cli-site) | Hosted on [Vercel](https://vercel.com)
|
|
18
16
|
|
|
17
|
+
## ๐งน Clean Up Your GitHub Account in Minutes
|
|
18
|
+
|
|
19
|
+
**Stop clicking through GitHub's slow web interface.** Managing dozens of repos on github.com means endless page loads, multiple clicks per action, and no keyboard shortcuts.
|
|
20
|
+
|
|
21
|
+
`gh-manager-cli` replaces tedious web clicking with powerful terminal commands:
|
|
22
|
+
|
|
23
|
+
### โ GitHub Website Pain Points โ โ
Our Solution
|
|
24
|
+
- **Slow pagination** (20 repos/page) โ View all repos instantly with smooth scrolling
|
|
25
|
+
- **Multiple clicks per action** โ Single keypress for any operation
|
|
26
|
+
- **No bulk operations** โ Archive, delete, or modify multiple repos at once
|
|
27
|
+
- **Buried settings menus** โ Direct keyboard shortcuts for everything
|
|
28
|
+
- **Page refresh after each action** โ Instant updates with no reload
|
|
29
|
+
|
|
30
|
+
Perfect for:
|
|
31
|
+
- **Spring cleaning**: Archive old projects and delete forgotten forks
|
|
32
|
+
- **Professional profiles**: Keep only your best work visible
|
|
33
|
+
- **Fork management**: Identify and sync outdated forks
|
|
34
|
+
- **Consistent naming**: Bulk rename repositories with patterns
|
|
35
|
+
- **Quick decisions**: See all metadata at a glance to decide what stays
|
|
36
|
+
|
|
19
37
|
<p align="center">
|
|
20
38
|
<img src="docs/app-demo.gif" alt="Interactive demo of gh-manager-cli" width="900" />
|
|
21
39
|
<br />
|
package/dist/index.js
CHANGED
|
@@ -31,9 +31,9 @@ var require_package = __commonJS({
|
|
|
31
31
|
"package.json"(exports, module) {
|
|
32
32
|
module.exports = {
|
|
33
33
|
name: "gh-manager-cli",
|
|
34
|
-
version: "1.
|
|
34
|
+
version: "1.30.0",
|
|
35
35
|
private: false,
|
|
36
|
-
description: "
|
|
36
|
+
description: "TUI terminal app to manage GitHub repos. Clean up your account in 5 minutes. Archive, delete, rename repos with keyboard shortcuts. Alternative to clicking through github.com",
|
|
37
37
|
license: "MIT",
|
|
38
38
|
main: "dist/index.js",
|
|
39
39
|
bin: {
|
|
@@ -52,7 +52,22 @@ var require_package = __commonJS({
|
|
|
52
52
|
"management",
|
|
53
53
|
"terminal",
|
|
54
54
|
"tui",
|
|
55
|
-
"react-ink"
|
|
55
|
+
"react-ink",
|
|
56
|
+
"github-cli",
|
|
57
|
+
"github-manager",
|
|
58
|
+
"repo-manager",
|
|
59
|
+
"repository-cleanup",
|
|
60
|
+
"github-cleanup",
|
|
61
|
+
"archive-repos",
|
|
62
|
+
"delete-repos",
|
|
63
|
+
"github-api",
|
|
64
|
+
"developer-tools",
|
|
65
|
+
"productivity",
|
|
66
|
+
"github-tools",
|
|
67
|
+
"terminal-ui",
|
|
68
|
+
"interactive-cli",
|
|
69
|
+
"ink",
|
|
70
|
+
"graphql"
|
|
56
71
|
],
|
|
57
72
|
type: "module",
|
|
58
73
|
scripts: {
|
|
@@ -106,7 +121,7 @@ var require_package = __commonJS({
|
|
|
106
121
|
bugs: {
|
|
107
122
|
url: "https://github.com/wiiiimm/gh-manager-cli/issues"
|
|
108
123
|
},
|
|
109
|
-
homepage: "https://
|
|
124
|
+
homepage: "https://gh-manager-cli.dev",
|
|
110
125
|
release: {
|
|
111
126
|
branches: [
|
|
112
127
|
"main"
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gh-manager-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.30.0",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "TUI terminal app to manage GitHub repos. Clean up your account in 5 minutes. Archive, delete, rename repos with keyboard shortcuts. Alternative to clicking through github.com",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"bin": {
|
|
@@ -21,7 +21,22 @@
|
|
|
21
21
|
"management",
|
|
22
22
|
"terminal",
|
|
23
23
|
"tui",
|
|
24
|
-
"react-ink"
|
|
24
|
+
"react-ink",
|
|
25
|
+
"github-cli",
|
|
26
|
+
"github-manager",
|
|
27
|
+
"repo-manager",
|
|
28
|
+
"repository-cleanup",
|
|
29
|
+
"github-cleanup",
|
|
30
|
+
"archive-repos",
|
|
31
|
+
"delete-repos",
|
|
32
|
+
"github-api",
|
|
33
|
+
"developer-tools",
|
|
34
|
+
"productivity",
|
|
35
|
+
"github-tools",
|
|
36
|
+
"terminal-ui",
|
|
37
|
+
"interactive-cli",
|
|
38
|
+
"ink",
|
|
39
|
+
"graphql"
|
|
25
40
|
],
|
|
26
41
|
"type": "module",
|
|
27
42
|
"scripts": {
|
|
@@ -75,7 +90,7 @@
|
|
|
75
90
|
"bugs": {
|
|
76
91
|
"url": "https://github.com/wiiiimm/gh-manager-cli/issues"
|
|
77
92
|
},
|
|
78
|
-
"homepage": "https://
|
|
93
|
+
"homepage": "https://gh-manager-cli.dev",
|
|
79
94
|
"release": {
|
|
80
95
|
"branches": [
|
|
81
96
|
"main"
|