@librefang/cli 0.7.0 → 2026.3.2201

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 +64 -0
  2. package/package.json +9 -9
package/README.md ADDED
@@ -0,0 +1,64 @@
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
20
+ brew install --cask librefang # Desktop App
21
+
22
+ # Cargo
23
+ cargo install librefang
24
+ ```
25
+
26
+ Or download pre-built binaries from [GitHub Releases](https://github.com/librefang/librefang/releases).
27
+
28
+ ## Usage
29
+
30
+ ```bash
31
+ # Initialize LibreFang
32
+ librefang init
33
+
34
+ # Start the daemon
35
+ librefang start
36
+
37
+ # Check system health
38
+ librefang doctor
39
+ ```
40
+
41
+ ## Supported Platforms
42
+
43
+ | Platform | Architecture | Package |
44
+ |----------|-------------|---------|
45
+ | macOS | Apple Silicon | `@librefang/cli-darwin-arm64` |
46
+ | macOS | Intel | `@librefang/cli-darwin-x64` |
47
+ | Linux | x64 (glibc) | `@librefang/cli-linux-x64` |
48
+ | Linux | arm64 (glibc) | `@librefang/cli-linux-arm64` |
49
+ | Linux | x64 (musl) | `@librefang/cli-linux-x64-musl` |
50
+ | Linux | arm64 (musl) | `@librefang/cli-linux-arm64-musl` |
51
+ | Windows | x64 | `@librefang/cli-win32-x64` |
52
+ | Windows | arm64 | `@librefang/cli-win32-arm64` |
53
+
54
+ The correct platform-specific binary is automatically installed via `optionalDependencies`.
55
+
56
+ ## Documentation
57
+
58
+ - [Website](https://librefang.ai)
59
+ - [GitHub](https://github.com/librefang/librefang)
60
+ - [Documentation](https://librefang.ai/docs)
61
+
62
+ ## License
63
+
64
+ 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.2201",
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
  }