openvibe 0.58.0 → 0.58.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 +27 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -111,7 +111,33 @@ export default defineExtension({
|
|
|
111
111
|
});
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
-
##
|
|
114
|
+
## 历史记录
|
|
115
|
+
|
|
116
|
+
OpenVibe 自动保存所有会话历史,方便你随时回顾和继续之前的对话。
|
|
117
|
+
|
|
118
|
+
### 查看历史
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
# 列出所有历史会话
|
|
122
|
+
openvibe --history
|
|
123
|
+
|
|
124
|
+
# 查看特定会话
|
|
125
|
+
openvibe --session <session-id>
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### 历史文件位置
|
|
129
|
+
|
|
130
|
+
历史记录保存在 `~/.openvibe/sessions/` 目录下,每个会话以 JSONL 格式存储。
|
|
131
|
+
|
|
132
|
+
### 快捷键
|
|
133
|
+
|
|
134
|
+
在交互模式下管理历史:
|
|
135
|
+
|
|
136
|
+
| 快捷键 | 功能 |
|
|
137
|
+
|--------|------|
|
|
138
|
+
| `Ctrl+R` | 打开历史会话选择器 |
|
|
139
|
+
| `Ctrl+S` | 保存当前会话 |
|
|
140
|
+
| `Ctrl+Shift+S` | 重命名当前会话 |
|
|
115
141
|
|
|
116
142
|
- [扩展开发指南](docs/extensions.md)
|
|
117
143
|
- [SDK 文档](docs/sdk.md)
|