groupchat 0.1.7 → 0.1.8
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 +9 -14
- package/package.json +9 -6
package/README.md
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
# Groupchat
|
|
1
|
+
# Groupchat
|
|
2
|
+
|
|
3
|
+
<img width="1154" height="263" alt="image" src="https://github.com/user-attachments/assets/77f90383-32d2-4110-9774-9b911fa01b9c" />
|
|
2
4
|
|
|
3
5
|
Groupchat is a real-time messaging app for developers, built natively in your terminal. Chat with your team and run AI agents like Claude—without leaving your workflow.
|
|
4
6
|
|
|
7
|
+
<img width="1510" height="953" alt="image" src="https://github.com/user-attachments/assets/b444f066-74fb-4dda-a677-741f70c71cf6" />
|
|
8
|
+
|
|
9
|
+
|
|
5
10
|
## Install
|
|
6
11
|
|
|
7
12
|
```bash
|
|
@@ -22,24 +27,14 @@ On first launch, you'll be prompted to log in via your browser. After that, you'
|
|
|
22
27
|
- **Embedded AI agents** — run Claude directly in any conversation
|
|
23
28
|
- **Live presence** — see who's online and typing
|
|
24
29
|
- **Keyboard-driven** — no mouse required
|
|
25
|
-
- **Secure auth** — OAuth login with keychain credential storage
|
|
26
|
-
|
|
27
|
-
## Keyboard Shortcuts
|
|
28
|
-
|
|
29
|
-
| Action | Key |
|
|
30
|
-
|--------|-----|
|
|
31
|
-
| View channels | `Ctrl+Q` |
|
|
32
|
-
| Toggle user list | `Ctrl+E` |
|
|
33
|
-
| Send message | `Enter` |
|
|
34
|
-
| Scroll history | `Page Up / Down` |
|
|
35
|
-
| Logout | `Ctrl+O` |
|
|
36
|
-
| Exit | `Ctrl+C` |
|
|
37
30
|
|
|
38
31
|
## Using Claude
|
|
39
32
|
|
|
40
33
|
In any channel, you can invoke Claude as an embedded agent. Claude runs inline with full tool use—read files, run commands, and get answers without switching apps.
|
|
41
34
|
|
|
42
|
-
## Development
|
|
35
|
+
## Development (WIP)
|
|
36
|
+
|
|
37
|
+
We encourage builders to contribute to `groupchat` to add agents, improve the UX, or even build new clients (like a desktop app!). Please email svapnila at gmail dot com if you have any questions.
|
|
43
38
|
|
|
44
39
|
```bash
|
|
45
40
|
cd tui
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groupchat",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "CLI chat client for Groupchat (OpenTUI)",
|
|
5
5
|
"bin": {
|
|
6
6
|
"groupchat": "bin/groupchat"
|
|
@@ -13,23 +13,26 @@
|
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
15
|
"dev": "bun --watch run src/index.tsx",
|
|
16
|
+
"dev:user2": "GROUPCHAT_PROFILE=user2 bun --watch run src/index.tsx",
|
|
16
17
|
"dev:debug": "GROUPCHAT_DEBUG=1 bun run src/index.tsx",
|
|
17
18
|
"dev:debug:watch": "GROUPCHAT_DEBUG=1 bun --watch run src/index.tsx",
|
|
18
19
|
"dev:debug:console": "GROUPCHAT_DEBUG=1 SHOW_CONSOLE=true bun --watch run src/index.tsx",
|
|
19
20
|
"build": "bun run build.ts",
|
|
20
21
|
"start": "bun run dist/index.js",
|
|
21
22
|
"test": "bun test test --preload @opentui/solid/preload",
|
|
23
|
+
"test:claude": "bun test test/claude --preload @opentui/solid/preload",
|
|
22
24
|
"test:watch": "bun test test --watch --preload @opentui/solid/preload",
|
|
23
25
|
"test:update-snapshots": "bun test test --update-snapshots --preload @opentui/solid/preload",
|
|
26
|
+
"claude:capture-ndjson": "bun run scripts/claude/capture-ndjson.ts",
|
|
24
27
|
"typecheck": "tsc --noEmit",
|
|
25
28
|
"prepublishOnly": "bun run typecheck && bun run build"
|
|
26
29
|
},
|
|
27
30
|
"optionalDependencies": {
|
|
28
|
-
"@groupchat-cli/darwin-arm64": "0.1.
|
|
29
|
-
"@groupchat-cli/darwin-x64": "0.1.
|
|
30
|
-
"@groupchat-cli/linux-arm64": "0.1.
|
|
31
|
-
"@groupchat-cli/linux-x64": "0.1.
|
|
32
|
-
"@groupchat-cli/win32-x64": "0.1.
|
|
31
|
+
"@groupchat-cli/darwin-arm64": "0.1.8",
|
|
32
|
+
"@groupchat-cli/darwin-x64": "0.1.8",
|
|
33
|
+
"@groupchat-cli/linux-arm64": "0.1.8",
|
|
34
|
+
"@groupchat-cli/linux-x64": "0.1.8",
|
|
35
|
+
"@groupchat-cli/win32-x64": "0.1.8"
|
|
33
36
|
},
|
|
34
37
|
"dependencies": {},
|
|
35
38
|
"devDependencies": {
|