cc-sessions 1.1.0 → 1.1.1

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/README.md +11 -12
  4. data/bin/cc +4 -4
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb7625607c8b67ff39212aed3d7b9bcb8a9cf5fcbae0751a554b1a09427baea1
4
- data.tar.gz: a40ac44c23feca33a5b91eeefb4d7665a0b74a4d7e3fe54f544cb2a1dc01e5e2
3
+ metadata.gz: d34f83cc90a21c4a723bc5a7d1428e7c2e73527c6584284a904ac5a69616fd80
4
+ data.tar.gz: 65d934a5d62a7ea1754d43df31d7b49f9cee8a29b63a59678805f921f7152886
5
5
  SHA512:
6
- metadata.gz: 8516229845736a7311f5d597c3218d6bff92533835b8a0b0f16851e05c503a62c98bbd2c388ee69ab42622961c57ca82efa539539b536f91cccb9d109a14133f
7
- data.tar.gz: aa67d7f92b1d3882b10696f2b3fb4638ce902849d46c8069ce538f49d74aa9ff71ebc632c3e4864efcdd767c8c764c5a92e73b6659b39b7c1b02315118d6eb6b
6
+ metadata.gz: a062e278e1092ea4ccd41380e439a81d6f99c21dbac37f9accd049d9a19b99d3c540525626561d72ae6b7c69c8b717fb83c87858553dba836a2e39c420a99a5b
7
+ data.tar.gz: 2cbf4a763b0b0373ef36dc06433dbe82e9cc04d9ea0713465def275aca9655c97d1c361f16f3233cbc10fa484138c76e616762a6d82a85ce7ba55cedc686c3e9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.1] - 2025-01-23
4
+
5
+ ### Changed
6
+ - Improved help text formatting
7
+ - Updated README with new features
8
+
3
9
  ## [1.1.0] - 2025-01-23
4
10
 
5
11
  ### Added
data/README.md CHANGED
@@ -16,8 +16,10 @@ meaningful names and quickly resume them.
16
16
 
17
17
  - **Bookmark sessions** with `/bm tag1 tag2` inside Claude Code
18
18
  - **Resume sessions** with `cc tag` from anywhere
19
- - **List bookmarks** with `cc -l`
19
+ - **Interactive list** with `cc -l` (arrow keys or j/k to navigate)
20
+ - **Delete bookmarks** with `d` in list or `cc -d tag`
20
21
  - **Auto-install** the `/bm` command and permission on first run
22
+ - **Zero dependencies** - pure Ruby
21
23
 
22
24
  ## Installation
23
25
 
@@ -51,17 +53,11 @@ using any of those tags.
51
53
  ### Resuming Sessions
52
54
 
53
55
  ```bash
54
- # Resume session tagged 'rtfm'
55
- cc rtfm
56
-
57
- # Continue session in current directory (or start new)
58
- cc
59
-
60
- # List all bookmarked sessions
61
- cc -l
62
-
63
- # Show help
64
- cc -h
56
+ cc # Continue session in current dir, or start new
57
+ cc <tag> # Resume session bookmarked with <tag>
58
+ cc -l, --list # Interactive list (↑/↓/j/k, Enter, d=delete, q=quit)
59
+ cc -d, --delete <tag> # Delete bookmark matching <tag>
60
+ cc -h, --help # Show help
65
61
  ```
66
62
 
67
63
  ### First Run
@@ -92,6 +88,9 @@ claude
92
88
 
93
89
  # Later, from anywhere
94
90
  cc rtfm # Instantly back in that session
91
+
92
+ # Or browse all bookmarks
93
+ cc -l # Pick from interactive list
95
94
  ```
96
95
 
97
96
  ## Requirements
data/bin/cc CHANGED
@@ -240,11 +240,11 @@ def show_help
240
240
  Easily bookmark and resume Claude Code sessions with tags.
241
241
 
242
242
  USAGE:
243
- cc Continue session in current directory, or start new
244
- cc <tag> Resume session bookmarked with <tag>
245
- cc -l, --list List all bookmarked sessions (interactive)
243
+ cc Continue session in current dir, or start new
244
+ cc <tag> Resume session bookmarked with <tag>
245
+ cc -l, --list Interactive list of bookmarked sessions
246
246
  cc -d, --delete <tag> Delete bookmark matching <tag>
247
- cc -h, --help Show this help
247
+ cc -h, --help Show this help
248
248
 
249
249
  BOOKMARKING (inside Claude Code):
250
250
  /bm tag1 tag2 Bookmark current session with one or more tags
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cc-sessions
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene