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.
- package/README.md +6 -6
- package/index.js +7 -7
- 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> → <code>npm link</code> → <code>
|
|
18
|
+
<code>git clone</code> → <code>npm link</code> → <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 主页** —— 每次打开终端,`
|
|
44
|
+
**Claude Starter** 是一个精美的终端可视化工具,让你能像浏览网页一样浏览所有 Claude 历史会话。它是你的 **Claude 主页** —— 每次打开终端,`claude-starter` 一敲,所有 session 一目了然。
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
|
|
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
|
-
然后运行 `
|
|
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
|
-
|
|
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
|
-
|
|
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 (
|
|
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
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
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
|
-
|
|
855
|
-
|
|
856
|
-
|
|
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.
|
|
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
|
-
"
|
|
7
|
+
"claude-starter": "./index.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"start": "node index.js"
|