@paean-ai/zero-cli 0.11.5 → 0.11.6
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 +13 -0
- package/dist/_cli.js +1091 -1090
- package/dist/tide.js +4 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -35,6 +35,19 @@ zero # interactive
|
|
|
35
35
|
zero -p "explain this repo" # one-shot
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
+
## Also available as `tide`
|
|
39
|
+
|
|
40
|
+
Zero CLI installs a second command called **`tide`** that launches the same binary under the **DeepTide** brand:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
tide # same as `zero`, branded as DeepTide
|
|
44
|
+
tide -p "explain this repo"
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**DeepTide** is our macOS-native AI coding app; Zero CLI is the cross-platform CLI from the same team that serves Linux, Windows, and non-native-app macOS users. The two products are developed in parallel and evolve independently — Zero CLI focuses on the harness layer for terminal-first workflows; DeepTide focuses on a tuned native macOS experience. The shared interface contract (tool names, slash commands, CLI flags, hook env vars, model aliases) lives in [`docs/tide-spec.md`](./docs/tide-spec.md) so a user's hooks and muscle memory port between the two.
|
|
48
|
+
|
|
49
|
+
On macOS we recommend the native DeepTide app for the best GUI experience. The `tide` CLI is the cross-platform terminal complement.
|
|
50
|
+
|
|
38
51
|
## `zero login` — Paean AI account
|
|
39
52
|
|
|
40
53
|
```bash
|