gh-manager-cli 1.20.0 → 1.22.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 CHANGED
@@ -1,3 +1,17 @@
1
+ # [1.22.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.21.0...v1.22.0) (2025-09-03)
2
+
3
+
4
+ ### Features
5
+
6
+ * reorganize main UI footer into 4 logical groups ([bf61102](https://github.com/wiiiimm/gh-manager-cli/commit/bf61102745487cc79cf346d8b71bd5361893cc4c))
7
+
8
+ # [1.21.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.20.0...v1.21.0) (2025-09-03)
9
+
10
+
11
+ ### Features
12
+
13
+ * add repository URL copying modal with interactive selection ([#24](https://github.com/wiiiimm/gh-manager-cli/issues/24)) ([45998e9](https://github.com/wiiiimm/gh-manager-cli/commit/45998e966805da7277a5fa6506e2b94c0d8dde39))
14
+
1
15
  # [1.20.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.19.2...v1.20.0) (2025-09-03)
2
16
 
3
17
 
package/README.md CHANGED
@@ -60,8 +60,10 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
60
60
  - **Repository Actions**:
61
61
  - View detailed info (`I`) - Shows repository metadata, language, size, and timestamps
62
62
  - Open in browser (Enter/`O`)
63
+ - Copy repository URLs (`C`) - Interactive modal to copy SSH or HTTPS clone URLs with keyboard navigation
63
64
  - Delete repository (`Del` or `Backspace`) with secure two-step confirmation
64
65
  - Archive/unarchive repositories (`Ctrl+A`) with confirmation prompts
66
+ - Rename repository (`Ctrl+R`) with real-time validation
65
67
  - Change repository visibility (`Ctrl+V`) - Switch between Public, Private, and Internal (enterprise only)
66
68
  - Sync forks with upstream (`Ctrl+S`) with automatic conflict detection
67
69
 
@@ -87,13 +89,6 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
87
89
 
88
90
  ## Installation
89
91
 
90
- ### Homebrew (macOS/Linux)
91
-
92
- ```bash
93
- brew tap wiiiimm/tap
94
- brew install gh-manager-cli
95
- ```
96
-
97
92
  ### NPX (Recommended - No Installation Required)
98
93
 
99
94
  Run instantly without installing:
@@ -102,6 +97,13 @@ Run instantly without installing:
102
97
  npx gh-manager-cli
103
98
  ```
104
99
 
100
+ ### Homebrew (macOS/Linux)
101
+
102
+ ```bash
103
+ brew tap wiiiimm/tap
104
+ brew install gh-manager-cli
105
+ ```
106
+
105
107
  ### NPM Global Install
106
108
 
107
109
  Install globally for persistent `gh-manager-cli` command:
@@ -257,7 +259,15 @@ Launch the app, then use the keys below:
257
259
  ### Repository Actions
258
260
  - **Repository info**: `I` to view detailed metadata (size, language, timestamps)
259
261
  - **Cache info**: `K` to inspect Apollo cache status
262
+ - **Copy URLs**: `C` to open interactive modal for copying SSH or HTTPS clone URLs
263
+ - SSH selected by default with visual indicators (▶)
264
+ - Up/Down arrows to select between SSH and HTTPS
265
+ - Enter to copy selected URL, or use `S`/`H` shortcuts
266
+ - Multiple close options: Esc, Q, C
260
267
  - **Archive/Unarchive**: `Ctrl+A` with confirmation prompt
268
+ - **Rename repository**: `Ctrl+R` to rename (with real-time validation)
269
+ - Enter new name → confirm (Enter)
270
+ - Cancel: press Esc
261
271
  - **Change visibility**: `Ctrl+V` to change repository visibility (Public/Private/Internal)
262
272
  - **Delete repository**: `Del` or `Backspace` (with two-step confirmation modal)
263
273
  - Type confirmation code → confirm (Y/Enter)
@@ -306,7 +316,7 @@ Project layout:
306
316
  - `src/ui/App.tsx` — token bootstrap, renders `RepoList`
307
317
  - `src/ui/RepoList.tsx` — main list UI with modal management
308
318
  - `src/ui/components/` — modular components (modals, repo, common)
309
- - `modals/` — DeleteModal, ArchiveModal, SyncModal, InfoModal, LogoutModal
319
+ - `modals/` — DeleteModal, ArchiveModal, RenameModal, SyncModal, InfoModal, LogoutModal
310
320
  - `repo/` — RepoRow, FilterInput, RepoListHeader
311
321
  - `common/` — SlowSpinner and shared UI elements
312
322
  - `src/ui/OrgSwitcher.tsx` — organization switching component
@@ -423,7 +433,9 @@ For the up-to-date task board, see [TODOs.md](./TODOs.md).
423
433
  Recently implemented:
424
434
  - ✅ OAuth login flow as an alternative to Personal Access Token
425
435
  - ✅ Density toggle for row spacing (compact/cozy/comfy)
426
- - ✅ Repo actions (archive/unarchive, delete, change visibility) with confirmations
436
+ - ✅ Repo actions (archive/unarchive, delete, rename, change visibility) with confirmations
437
+ - ✅ Repository renaming with real-time validation (`Ctrl+R`)
438
+ - ✅ Repository URL copying modal (`C`) with interactive SSH/HTTPS selection
427
439
  - ✅ Organization support and switching (press `W`) with enterprise detection
428
440
  - ✅ Enhanced server-side search with improved UX and organization context support
429
441
  - ✅ Smart infinite scroll with 80% prefetch trigger
@@ -435,7 +447,6 @@ Recently implemented:
435
447
  Highlights on deck:
436
448
  - Optional OS keychain storage via `keytar`
437
449
  - Bulk selection and actions
438
- - Repository renaming
439
450
 
440
451
  ## License
441
452