@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 CHANGED
@@ -4,67 +4,21 @@
4
4
 
5
5
  ## Installation
6
6
 
7
- ### Quick Install (macOS/Linux)
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
- ## Development
45
-
46
- ### Running Locally
13
+ Or run without installing:
47
14
 
48
15
  ```sh
49
- # run dev
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
- ### Building for All Platforms
57
-
58
- Binaries are built automatically via GitHub Actions on release. To build locally:
19
+ ### Alternative: Standalone Binaries
59
20
 
60
- ```sh
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