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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +11 -12
- data/bin/cc +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d34f83cc90a21c4a723bc5a7d1428e7c2e73527c6584284a904ac5a69616fd80
|
|
4
|
+
data.tar.gz: 65d934a5d62a7ea1754d43df31d7b49f9cee8a29b63a59678805f921f7152886
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a062e278e1092ea4ccd41380e439a81d6f99c21dbac37f9accd049d9a19b99d3c540525626561d72ae6b7c69c8b717fb83c87858553dba836a2e39c420a99a5b
|
|
7
|
+
data.tar.gz: 2cbf4a763b0b0373ef36dc06433dbe82e9cc04d9ea0713465def275aca9655c97d1c361f16f3233cbc10fa484138c76e616762a6d82a85ce7ba55cedc686c3e9
|
data/CHANGELOG.md
CHANGED
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
|
-
- **
|
|
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
|
-
#
|
|
55
|
-
cc
|
|
56
|
-
|
|
57
|
-
|
|
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
|
|
244
|
-
cc <tag>
|
|
245
|
-
cc -l, --list
|
|
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
|
|
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
|