herm-tui 1.0.0-dev.3 → 1.0.0-dev.5
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 +8 -4
- package/index.js +448 -6675
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,19 +7,23 @@ Herm is a tabbed, mouse-aware TUI built with [OpenTUI](https://github.com/anomal
|
|
|
7
7
|
|
|
8
8
|
## What it does
|
|
9
9
|
|
|
10
|
-
- **Chat** with streaming, markdown,
|
|
11
|
-
- **Tabs** for sessions, context, agents, skills, cron, toolsets,
|
|
10
|
+
- **Chat** with streaming, markdown, inline images (chafa), LaTeX→unicode, diff chips, tool-call expansion, and an animated ASCII avatar
|
|
11
|
+
- **Tabs** for sessions, context, agents, analytics, skills, cron, toolsets, config, env, memory, kanban
|
|
12
|
+
- **Profile switching** — hop between Hermes profiles without leaving the TUI
|
|
12
13
|
- **Command palette** (`Ctrl+K`), **slash popover**, **@-refs** for file/diff context
|
|
13
|
-
- **Fully rebindable keys** (`/keys
|
|
14
|
+
- **Fully rebindable keys** (`/keys`, opencode-compatible) and theme picker
|
|
14
15
|
|
|
15
16
|
## Install
|
|
16
17
|
|
|
17
18
|
Herm needs a working [Hermes Agent](https://github.com/NousResearch/hermes-agent) install and [Bun](https://bun.sh).
|
|
18
19
|
|
|
19
20
|
```bash
|
|
21
|
+
bunx herm-tui # try without installing
|
|
20
22
|
bun add -g herm-tui # stable
|
|
23
|
+
npm i -g herm-tui # also fine
|
|
21
24
|
bun add -g herm-tui@next # bleeding edge (every dev push)
|
|
22
|
-
herm
|
|
25
|
+
herm # fresh session
|
|
26
|
+
herm -c # resume last session
|
|
23
27
|
```
|
|
24
28
|
|
|
25
29
|
Or from source:
|