@librefang/cli 0.7.0 → 2026.3.25-rc2

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.
Files changed (2) hide show
  1. package/README.md +65 -0
  2. package/package.json +9 -9
package/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # @librefang/cli
2
+
3
+ LibreFang Agent OS — command-line interface.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @librefang/cli
9
+ ```
10
+
11
+ Or with other package managers:
12
+
13
+ ```bash
14
+ # pip
15
+ pip install librefang
16
+
17
+ # Homebrew (macOS)
18
+ brew tap librefang/tap
19
+ brew install librefang # CLI (stable)
20
+ brew install --cask librefang # Desktop (stable)
21
+ # Beta/RC channels: brew install librefang-beta / librefang-rc
22
+
23
+ # Cargo
24
+ cargo install librefang
25
+ ```
26
+
27
+ Or download pre-built binaries from [GitHub Releases](https://github.com/librefang/librefang/releases).
28
+
29
+ ## Usage
30
+
31
+ ```bash
32
+ # Initialize LibreFang
33
+ librefang init
34
+
35
+ # Start the daemon
36
+ librefang start
37
+
38
+ # Check system health
39
+ librefang doctor
40
+ ```
41
+
42
+ ## Supported Platforms
43
+
44
+ | Platform | Architecture | Package |
45
+ |----------|-------------|---------|
46
+ | macOS | Apple Silicon | `@librefang/cli-darwin-arm64` |
47
+ | macOS | Intel | `@librefang/cli-darwin-x64` |
48
+ | Linux | x64 (glibc) | `@librefang/cli-linux-x64` |
49
+ | Linux | arm64 (glibc) | `@librefang/cli-linux-arm64` |
50
+ | Linux | x64 (musl) | `@librefang/cli-linux-x64-musl` |
51
+ | Linux | arm64 (musl) | `@librefang/cli-linux-arm64-musl` |
52
+ | Windows | x64 | `@librefang/cli-win32-x64` |
53
+ | Windows | arm64 | `@librefang/cli-win32-arm64` |
54
+
55
+ The correct platform-specific binary is automatically installed via `optionalDependencies`.
56
+
57
+ ## Documentation
58
+
59
+ - [Website](https://librefang.ai)
60
+ - [GitHub](https://github.com/librefang/librefang)
61
+ - [Documentation](https://librefang.ai/docs)
62
+
63
+ ## License
64
+
65
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@librefang/cli",
3
- "version": "0.7.0",
3
+ "version": "2026.3.25-rc2",
4
4
  "description": "LibreFang Agent OS — CLI binary distribution",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -17,13 +17,13 @@
17
17
  "node": ">=18"
18
18
  },
19
19
  "optionalDependencies": {
20
- "@librefang/cli-linux-x64": "0.7.0",
21
- "@librefang/cli-linux-arm64": "0.7.0",
22
- "@librefang/cli-linux-x64-musl": "0.7.0",
23
- "@librefang/cli-linux-arm64-musl": "0.7.0",
24
- "@librefang/cli-darwin-x64": "0.7.0",
25
- "@librefang/cli-darwin-arm64": "0.7.0",
26
- "@librefang/cli-win32-x64": "0.7.0",
27
- "@librefang/cli-win32-arm64": "0.7.0"
20
+ "@librefang/cli-linux-x64": "0.0.0",
21
+ "@librefang/cli-linux-arm64": "0.0.0",
22
+ "@librefang/cli-linux-x64-musl": "0.0.0",
23
+ "@librefang/cli-linux-arm64-musl": "0.0.0",
24
+ "@librefang/cli-darwin-x64": "0.0.0",
25
+ "@librefang/cli-darwin-arm64": "0.0.0",
26
+ "@librefang/cli-win32-x64": "0.0.0",
27
+ "@librefang/cli-win32-arm64": "0.0.0"
28
28
  }
29
29
  }