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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/README.md +3 -1
  4. data/commands/bm.md +11 -8
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d34f83cc90a21c4a723bc5a7d1428e7c2e73527c6584284a904ac5a69616fd80
4
- data.tar.gz: 65d934a5d62a7ea1754d43df31d7b49f9cee8a29b63a59678805f921f7152886
3
+ metadata.gz: '08f5aaa3822c2214d30f6ec9638c598224c9a0e183f0658f38a01e2f67a430a2'
4
+ data.tar.gz: 99647df99dad310ed40b44a2f5006caf6a069c4b5fe72f3cb8bfc65b68d63c93
5
5
  SHA512:
6
- metadata.gz: a062e278e1092ea4ccd41380e439a81d6f99c21dbac37f9accd049d9a19b99d3c540525626561d72ae6b7c69c8b717fb83c87858553dba836a2e39c420a99a5b
7
- data.tar.gz: 2cbf4a763b0b0373ef36dc06433dbe82e9cc04d9ea0713465def275aca9655c97d1c361f16f3233cbc10fa484138c76e616762a6d82a85ce7ba55cedc686c3e9
6
+ metadata.gz: c3139c6b7a3050fc1ee632641cfedf895a1b2df284cce4a1fc8f5c826471b5f2b0521e10ca98b876cac94c302fb96c3acf45d8fdf9bae8ce02ae7b0c482d52c6
7
+ data.tar.gz: abc0b29d3b81eea62d5b21acba5d1973f1e071dfafc59d23ab0f00d6e8a465a039a784bc9d5ccaf58c6dc58fcbc206cd3cea076404c520a83ee865566f1559c7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.2] - 2025-01-23
4
+
5
+ ### Added
6
+ - `/bm?` command to check current bookmark status
7
+
3
8
  ## [1.1.1] - 2025-01-23
4
9
 
5
10
  ### 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
- The user provides space-separated tags after `/bm`. For example:
8
- - `/bm rtfm` - one tag
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
- Run the cc-bookmark command with the provided tags:
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
- ## Example
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)
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.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene