@howler/cli 0.2.0 → 0.2.2
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 +0 -3
- package/dist/bin.js +11 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,9 +49,7 @@ Type `/` in the message input to see autocomplete suggestions.
|
|
|
49
49
|
|
|
50
50
|
| Command | Description |
|
|
51
51
|
|---------|-------------|
|
|
52
|
-
| `/vault <query>` | Search your Obsidian vault |
|
|
53
52
|
| `/agent <goal>` | Create an agent task (bot chats only) |
|
|
54
|
-
| `/bot <name> <message>` | Send a message to a named bot |
|
|
55
53
|
| `/addmember @username` | Add a member to the current group |
|
|
56
54
|
| `/change-branch` | Switch branch in repo bot chats |
|
|
57
55
|
| `/current-branch` | Show the active branch |
|
|
@@ -63,7 +61,6 @@ Type `/` in the message input to see autocomplete suggestions.
|
|
|
63
61
|
- **Real-time** — messages appear instantly via Supabase subscriptions
|
|
64
62
|
- **Multi-device** — works alongside the web app on the same account
|
|
65
63
|
- **Bot/agent support** — interact with AI agents, view branch-based conversations
|
|
66
|
-
- **Vault search** — query your Obsidian vault from the terminal
|
|
67
64
|
|
|
68
65
|
## Requirements
|
|
69
66
|
|
package/dist/bin.js
CHANGED
|
@@ -31314,10 +31314,17 @@ function TwoPanel({ userId }) {
|
|
|
31314
31314
|
setActivePanel("list");
|
|
31315
31315
|
}, []);
|
|
31316
31316
|
const handleInputSend = useCallback8((text) => {
|
|
31317
|
+
if (activePanel === "list") {
|
|
31318
|
+
if (text.trim().toLowerCase() === "/exit") {
|
|
31319
|
+
exit();
|
|
31320
|
+
return;
|
|
31321
|
+
}
|
|
31322
|
+
return;
|
|
31323
|
+
}
|
|
31317
31324
|
if (activePanel === "conversation" && panelRef.current) {
|
|
31318
31325
|
panelRef.current.send(text);
|
|
31319
31326
|
}
|
|
31320
|
-
}, [activePanel]);
|
|
31327
|
+
}, [activePanel, exit]);
|
|
31321
31328
|
const handleFilterChange = useCallback8((text) => {
|
|
31322
31329
|
setFilterText(text);
|
|
31323
31330
|
}, []);
|
|
@@ -31436,7 +31443,9 @@ function TwoPanel({ userId }) {
|
|
|
31436
31443
|
onSend: handleInputSend,
|
|
31437
31444
|
prefix: "\u{1F50D} ",
|
|
31438
31445
|
placeholder: "filter contacts...",
|
|
31439
|
-
onChange: handleFilterChange
|
|
31446
|
+
onChange: handleFilterChange,
|
|
31447
|
+
onAutocompleteChange: setAutocompleteActive,
|
|
31448
|
+
onAutocompleteData: handleAutocompleteData
|
|
31440
31449
|
}
|
|
31441
31450
|
) : /* @__PURE__ */ jsx4(
|
|
31442
31451
|
MessageInput,
|