cc-sessions 1.1.1 → 1.1.2
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 +5 -0
- data/README.md +3 -1
- data/commands/bm.md +11 -8
- 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: '08f5aaa3822c2214d30f6ec9638c598224c9a0e183f0658f38a01e2f67a430a2'
|
|
4
|
+
data.tar.gz: 99647df99dad310ed40b44a2f5006caf6a069c4b5fe72f3cb8bfc65b68d63c93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3139c6b7a3050fc1ee632641cfedf895a1b2df284cce4a1fc8f5c826471b5f2b0521e10ca98b876cac94c302fb96c3acf45d8fdf9bae8ce02ae7b0c482d52c6
|
|
7
|
+
data.tar.gz: abc0b29d3b81eea62d5b21acba5d1973f1e071dfafc59d23ab0f00d6e8a465a039a784bc9d5ccaf58c6dc58fcbc206cd3cea076404c520a83ee865566f1559c7
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -15,6 +15,7 @@ meaningful names and quickly resume them.
|
|
|
15
15
|
## Features
|
|
16
16
|
|
|
17
17
|
- **Bookmark sessions** with `/bm tag1 tag2` inside Claude Code
|
|
18
|
+
- **Check bookmark** with `/bm?` to see current tags
|
|
18
19
|
- **Resume sessions** with `cc tag` from anywhere
|
|
19
20
|
- **Interactive list** with `cc -l` (arrow keys or j/k to navigate)
|
|
20
21
|
- **Delete bookmarks** with `d` in list or `cc -d tag`
|
|
@@ -44,7 +45,8 @@ cd CC-sessions
|
|
|
44
45
|
Inside a Claude Code session, use the `/bm` command:
|
|
45
46
|
|
|
46
47
|
```
|
|
47
|
-
/bm rtfm ruby filemanager
|
|
48
|
+
/bm rtfm ruby filemanager # Bookmark with tags
|
|
49
|
+
/bm? # Show current bookmark status
|
|
48
50
|
```
|
|
49
51
|
|
|
50
52
|
This bookmarks the current session with three tags. You can later resume it
|
data/commands/bm.md
CHANGED
|
@@ -4,22 +4,25 @@ Bookmark the current Claude Code session with tags for easy resumption later.
|
|
|
4
4
|
|
|
5
5
|
## Arguments
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
- `/bm
|
|
9
|
-
- `/bm rtfm ruby filemanager` - multiple tags
|
|
7
|
+
- `/bm tag1 tag2` - Bookmark with tags
|
|
8
|
+
- `/bm?` or `/bm ?` - Show current bookmark status
|
|
10
9
|
|
|
11
10
|
## What to Do
|
|
12
11
|
|
|
13
|
-
|
|
12
|
+
If the argument is `?` or empty after `/bm?`:
|
|
13
|
+
```bash
|
|
14
|
+
cc-bookmark
|
|
15
|
+
```
|
|
14
16
|
|
|
17
|
+
Otherwise, run with the provided tags:
|
|
15
18
|
```bash
|
|
16
19
|
cc-bookmark $TAGS
|
|
17
20
|
```
|
|
18
21
|
|
|
19
22
|
Replace `$TAGS` with the actual tags provided by the user.
|
|
20
23
|
|
|
21
|
-
##
|
|
22
|
-
|
|
23
|
-
User types: `/bm rtfm ruby`
|
|
24
|
+
## Examples
|
|
24
25
|
|
|
25
|
-
Run: `cc-bookmark rtfm ruby`
|
|
26
|
+
- `/bm rtfm ruby` → Run: `cc-bookmark rtfm ruby`
|
|
27
|
+
- `/bm?` → Run: `cc-bookmark` (shows current bookmark)
|
|
28
|
+
- `/bm ?` → Run: `cc-bookmark` (shows current bookmark)
|