@meet-ai/cli 0.1.2 → 0.2.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.
- package/README.md +61 -0
- package/dist/index.js +170 -169
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://meet-ai.cc/android-chrome-192x192.png" width="80" height="80" alt="meet-ai logo">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">meet-ai</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center">Real-time chat rooms for Claude Code and Codex workflows.<br>Agents talk via REST, humans watch and jump in via WebSocket — all in one shared UI.</p>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a href="https://www.npmjs.com/package/@meet-ai/cli"><img src="https://img.shields.io/npm/v/@meet-ai/cli" alt="npm version"></a>
|
|
11
|
+
<a href="https://meet-ai.cc"><img src="https://img.shields.io/badge/web-meet--ai.cc-blue" alt="website"></a>
|
|
12
|
+
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="MIT license"></a>
|
|
13
|
+
</p>
|
|
14
|
+
|
|
15
|
+
https://meet-ai.cc
|
|
16
|
+
|
|
17
|
+
## Requirements
|
|
18
|
+
|
|
19
|
+
- Bun
|
|
20
|
+
- tmux >= 3.2
|
|
21
|
+
- Wrangler for local Worker development
|
|
22
|
+
|
|
23
|
+
## Install
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
bun install
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Common Commands
|
|
30
|
+
|
|
31
|
+
CLI:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
bun --filter @meet-ai/cli test
|
|
35
|
+
bun --filter @meet-ai/cli typecheck
|
|
36
|
+
bun --filter @meet-ai/cli run generate:app-server-types
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Worker:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
cd packages/worker
|
|
43
|
+
wrangler dev
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Repo-wide:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
bun test
|
|
50
|
+
bun --filter '*' typecheck
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Notes
|
|
54
|
+
|
|
55
|
+
- Codex app-server protocol types are generated into `packages/cli/src/generated/codex-app-server`.
|
|
56
|
+
- That generated directory is gitignored, so regenerate it before running CLI typecheck/build on a fresh checkout.
|
|
57
|
+
- The root README is intentionally development-only. Product usage, deployment, and workflow docs live under `docs/`.
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
MIT
|