sessioner 0.1.4 → 0.1.6

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 (2) hide show
  1. package/README.md +1 -3
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  ## 💡 Why
16
16
 
17
- Claude Code supports native forking from specific points, but loses context like thoughts, references, choices, and subagents. It also provides no built-in way to search, browse, merge, prune, or trim the `.jsonl` session files stored in `~/.claude/projects`.
17
+ Claude Code supports native forking from specific points, but can loses context like thoughts, references, choices, and subagents. It also provides no built-in way to search, browse, merge, prune, or trim the `.jsonl` session files stored in `~/.claude/projects`.
18
18
 
19
19
  **Sessioner** gives you a keyboard-driven interface to manage those sessions directly, including a **full fork** that preserves subagents and all session data:
20
20
 
@@ -215,8 +215,6 @@ sessioner
215
215
 
216
216
  - <kbd>Up</kbd> / <kbd>Down</kbd>: move cursor
217
217
  - <kbd>Enter</kbd>: confirm selection
218
- - <kbd>y</kbd>: yes
219
- - <kbd>n</kbd>: no
220
218
  - <kbd>1</kbd>: yes
221
219
  - <kbd>2</kbd>: no
222
220
 
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "sessioner",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "✨ An interactive CLI to navigate and manage Claude Code sessions from the terminal.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
+ "main": "lib/bin/index.js",
7
8
  "bin": {
8
9
  "sessioner": "lib/bin/index.js"
9
10
  },