echoes-vault-opencode 1.0.26 → 1.0.27

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/package.json +1 -1
  2. package/tui.tsx +8 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "echoes-vault-opencode",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "EchoesVault — persistent memory plugin for OpenCode. Obsidian-style knowledge base with daily logs, encyclopedia pages, and session resumption.",
5
5
  "type": "module",
6
6
  "main": "index.ts",
package/tui.tsx CHANGED
@@ -7,13 +7,16 @@ const tui: TuiPlugin = async (api) => {
7
7
  sidebar_content() {
8
8
  return (
9
9
  <box flexDirection="column" padding={1}>
10
- <text color="cyan">EchoesVault Controls</text>
10
+ <text color="primary">EchoesVault Controls</text>
11
11
 
12
12
  {/* Здесь ИИ может добавить твои кнопки, например через <button> или перехват событий клавиатуры, в зависимости от API кнопок OpenTUI */}
13
- <text>• Start Session</text>
14
- <text>• End Session</text>
15
- <text>• Init</text>
16
- <text>• Status</text>
13
+ <text color="secondary">• Start Session</text>
14
+ <text color="accent">• End Session</text>
15
+ <text color="error">• Init</text>
16
+ <text color="warning">• Status</text>
17
+ <text color="success">• Success</text>
18
+ <text color="info">• Info</text>
19
+ <text color="textMuted">• Muted</text>
17
20
  </box>
18
21
  )
19
22
  },