@howler/cli 0.1.0

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 +40 -0
  2. package/dist/bin.js +31380 -0
  3. package/package.json +56 -0
package/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # @howler/cli
2
+
3
+ Terminal UI client for [Howler](https://howler.pages.dev) encrypted messaging.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @howler/cli
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ howler # Launch TUI (opens browser for login on first run)
15
+ howler --logout # Sign out
16
+ ```
17
+
18
+ ### Keyboard shortcuts
19
+
20
+ | Key | Action |
21
+ |-----|--------|
22
+ | `Tab` / `Shift+Tab` | Switch between panels |
23
+ | `↑` / `↓` | Navigate list or scroll messages |
24
+ | `Enter` | Select chat / send message |
25
+ | `Escape` | Return to chat list |
26
+ | `1` `2` `3` `4` | Filter: All, 1:1, Groups, AI |
27
+ | `l` | Load older messages |
28
+
29
+ ### Slash commands
30
+
31
+ | Command | Description |
32
+ |---------|-------------|
33
+ | `/vault <query>` | Search your Obsidian vault |
34
+ | `/agent <goal>` | Create an agent task (bot chats only) |
35
+ | `/bot <name> <message>` | Send a message to a named bot |
36
+
37
+ ## Requirements
38
+
39
+ - Node.js 18+
40
+ - A Howler account (sign up at howler.pages.dev)