@andocorp/cli 0.1.0 → 0.1.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 +5 -51
- package/dist/index.js +13911 -0
- package/package.json +6 -11
- package/src/adapters.test.ts +0 -50
- package/src/adapters.ts +0 -215
- package/src/args.test.ts +0 -28
- package/src/args.ts +0 -98
- package/src/cli-helpers.test.ts +0 -82
- package/src/cli-helpers.ts +0 -149
- package/src/client.test.ts +0 -235
- package/src/client.ts +0 -378
- package/src/components/prompt-line.ts +0 -179
- package/src/components/transcript-pane.test.ts +0 -26
- package/src/components/transcript-pane.ts +0 -457
- package/src/config.ts +0 -53
- package/src/emoji-suggestions.ts +0 -152
- package/src/format.test.ts +0 -54
- package/src/format.ts +0 -611
- package/src/help.test.ts +0 -13
- package/src/help.ts +0 -48
- package/src/index.ts +0 -466
- package/src/interactive.ts +0 -832
- package/src/test-helpers.ts +0 -207
- package/src/types.ts +0 -24
package/README.md
CHANGED
|
@@ -4,67 +4,21 @@
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
###
|
|
8
|
-
|
|
9
|
-
```sh
|
|
10
|
-
curl -fsSL https://raw.githubusercontent.com/ando-labs/ando/main/apps/cli/install.sh | sh
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
### Manual Installation
|
|
14
|
-
|
|
15
|
-
Download the latest binary for your platform from [Releases](https://github.com/ando-labs/ando/releases):
|
|
16
|
-
|
|
17
|
-
**macOS:**
|
|
18
|
-
- Apple Silicon (M1/M2/M3): `ando-macos-arm64`
|
|
19
|
-
- Intel: `ando-macos-x64`
|
|
20
|
-
|
|
21
|
-
**Linux:**
|
|
22
|
-
- `ando-linux-x64`
|
|
23
|
-
|
|
24
|
-
**Windows:**
|
|
25
|
-
- `ando-windows-x64.exe`
|
|
26
|
-
|
|
27
|
-
After downloading:
|
|
28
|
-
|
|
29
|
-
```sh
|
|
30
|
-
# macOS/Linux
|
|
31
|
-
chmod +x ando-*
|
|
32
|
-
sudo mv ando-* /usr/local/bin/ando
|
|
33
|
-
|
|
34
|
-
# Verify installation
|
|
35
|
-
ando --help
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
### npm (Coming Soon)
|
|
7
|
+
### npm (Recommended)
|
|
39
8
|
|
|
40
9
|
```sh
|
|
41
10
|
npm install -g @andocorp/cli
|
|
42
11
|
```
|
|
43
12
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
### Running Locally
|
|
13
|
+
Or run without installing:
|
|
47
14
|
|
|
48
15
|
```sh
|
|
49
|
-
|
|
50
|
-
bun --cwd apps/cli dev
|
|
51
|
-
|
|
52
|
-
# compile a native binary to apps/cli/dist/ando
|
|
53
|
-
bun compile
|
|
16
|
+
npx @andocorp/cli
|
|
54
17
|
```
|
|
55
18
|
|
|
56
|
-
###
|
|
57
|
-
|
|
58
|
-
Binaries are built automatically via GitHub Actions on release. To build locally:
|
|
19
|
+
### Alternative: Standalone Binaries
|
|
59
20
|
|
|
60
|
-
|
|
61
|
-
# Current platform only
|
|
62
|
-
pnpm --filter cli compile
|
|
63
|
-
|
|
64
|
-
# All platforms (requires GitHub Actions)
|
|
65
|
-
git tag cli-v0.1.0
|
|
66
|
-
git push origin cli-v0.1.0
|
|
67
|
-
```
|
|
21
|
+
Standalone binaries are available for users who prefer not to install Node.js/npm. Contact hello@ando.so for access.
|
|
68
22
|
|
|
69
23
|
## Commands
|
|
70
24
|
|