gh-manager-cli 1.24.3 → 1.25.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 +7 -0
- package/README.md +6 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.25.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.24.3...v1.25.0) (2025-09-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* update demo assets and documentation ([84242cc](https://github.com/wiiiimm/gh-manager-cli/commit/84242cc1cb14d58d5f8777e8d2ca20fb158839cb))
|
|
7
|
+
|
|
1
8
|
## [1.24.3](https://github.com/wiiiimm/gh-manager-cli/compare/v1.24.2...v1.24.3) (2025-09-05)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -14,8 +14,10 @@
|
|
|
14
14
|
|
|
15
15
|
Interactive terminal app to browse and manage your personal GitHub repositories. Built with Ink (React for CLIs) and the GitHub GraphQL API.
|
|
16
16
|
|
|
17
|
+
🌐 **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
|
+
|
|
17
19
|
<p align="center">
|
|
18
|
-
<img src="docs/
|
|
20
|
+
<img src="docs/app-demo.gif" alt="Interactive demo of gh-manager-cli" width="900" />
|
|
19
21
|
<br />
|
|
20
22
|
<em>Fast, keyboard-first GitHub repo management from your terminal</em>
|
|
21
23
|
</p>
|
|
@@ -60,6 +62,8 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
|
|
|
60
62
|
- **Repository Actions**:
|
|
61
63
|
- View detailed info (`I`) - Shows repository metadata, language, size, and timestamps
|
|
62
64
|
- Open in browser (Enter/`O`)
|
|
65
|
+
- Rename repository (`Ctrl+R`) with inline validation and automatic cache update
|
|
66
|
+
- Copy repository URL to clipboard (`C`) with SSH/HTTPS options
|
|
63
67
|
- Delete repository (`Del` or `Backspace`) with secure two-step confirmation
|
|
64
68
|
- Archive/unarchive repositories (`Ctrl+A`) with confirmation prompts
|
|
65
69
|
- Change repository visibility (`Ctrl+V`) - Switch between Public, Private, and Internal (enterprise only)
|
|
@@ -107,7 +111,7 @@ npx gh-manager-cli@latest
|
|
|
107
111
|
Install globally for persistent `gh-manager-cli` command:
|
|
108
112
|
|
|
109
113
|
```bash
|
|
110
|
-
npm install -g gh-manager-cli
|
|
114
|
+
npm install -g gh-manager-cli@latest
|
|
111
115
|
gh-manager-cli
|
|
112
116
|
```
|
|
113
117
|
|
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ 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.25.0",
|
|
35
35
|
private: false,
|
|
36
36
|
description: "Interactive CLI to manage your GitHub repos (personal) with Ink",
|
|
37
37
|
license: "MIT",
|