claude-starter 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 (3) hide show
  1. package/README.md +6 -6
  2. package/index.js +7 -7
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -15,7 +15,7 @@
15
15
  </p>
16
16
 
17
17
  <p align="center">
18
- <code>git clone</code>&nbsp;&nbsp;→&nbsp;&nbsp;<code>npm link</code>&nbsp;&nbsp;→&nbsp;&nbsp;<code>start-claude</code>
18
+ <code>git clone</code>&nbsp;&nbsp;→&nbsp;&nbsp;<code>npm link</code>&nbsp;&nbsp;→&nbsp;&nbsp;<code>claude-starter</code>
19
19
  </p>
20
20
 
21
21
  <p align="center">
@@ -41,10 +41,10 @@
41
41
 
42
42
  ## 解决方案
43
43
 
44
- **Claude Starter** 是一个精美的终端可视化工具,让你能像浏览网页一样浏览所有 Claude 历史会话。它是你的 **Claude 主页** —— 每次打开终端,`start-claude` 一敲,所有 session 一目了然。
44
+ **Claude Starter** 是一个精美的终端可视化工具,让你能像浏览网页一样浏览所有 Claude 历史会话。它是你的 **Claude 主页** —— 每次打开终端,`claude-starter` 一敲,所有 session 一目了然。
45
45
 
46
46
  ```bash
47
- start-claude
47
+ claude-starter
48
48
  ```
49
49
 
50
50
  精美的分屏 UI,Tokyo Night 配色。左侧列表一目了然,右侧实时预览对话详情。不是 UUID,是你**真正说过的话**。
@@ -85,7 +85,7 @@ npm install
85
85
  npm link
86
86
  ```
87
87
 
88
- 然后运行 `start-claude`,就这么简单。
88
+ 然后运行 `claude-starter`,就这么简单。
89
89
 
90
90
  ## 快捷键
91
91
 
@@ -128,7 +128,7 @@ Good luck finding that session where Claude fixed your auth bug last Tuesday.
128
128
  ## The Solution
129
129
 
130
130
  ```bash
131
- start-claude
131
+ claude-starter
132
132
  ```
133
133
 
134
134
  Beautiful split-pane UI with Tokyo Night colors. The left panel shows every session with project, time, and topic. The right panel previews the full conversation. Not UUIDs — your **actual words**.
@@ -172,7 +172,7 @@ npm link
172
172
  Then run:
173
173
 
174
174
  ```bash
175
- start-claude
175
+ claude-starter
176
176
  ```
177
177
 
178
178
  ## Keyboard Shortcuts
package/index.js CHANGED
@@ -1,14 +1,14 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * Claude Starter (start-claude)
4
+ * Claude Starter (claude-starter)
5
5
  * ──────────────────────────────
6
6
  * A beautiful TUI for starting new and resuming past Claude Code sessions.
7
7
  *
8
8
  * Usage:
9
- * start-claude # Launch interactive TUI
10
- * start-claude --list # Print sessions as a table (no TUI)
11
- * start-claude --list N # Print the latest N sessions
9
+ * claude-starter # Launch interactive TUI
10
+ * claude-starter --list # Print sessions as a table (no TUI)
11
+ * claude-starter --list N # Print the latest N sessions
12
12
  *
13
13
  * Keyboard shortcuts (TUI mode):
14
14
  * ↑/↓ Navigate sessions
@@ -851,9 +851,9 @@ if (args.includes('--help') || args.includes('-h')) {
851
851
  \x1b[36m🚀 Claude Starter\x1b[0m
852
852
 
853
853
  Usage:
854
- start-claude Launch interactive TUI
855
- start-claude --list [N] Print latest N sessions (default: 30)
856
- start-claude --help Show this help
854
+ claude-starter Launch interactive TUI
855
+ claude-starter --list [N] Print latest N sessions (default: 30)
856
+ claude-starter --help Show this help
857
857
 
858
858
  TUI Keyboard Shortcuts:
859
859
  ↑/↓ Navigate sessions
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "claude-starter",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "A beautiful terminal UI for managing Claude Code sessions — start new or resume past conversations",
5
5
  "main": "index.js",
6
6
  "bin": {
7
- "start-claude": "./index.js"
7
+ "claude-starter": "./index.js"
8
8
  },
9
9
  "scripts": {
10
10
  "start": "node index.js"