@librefang/cli 0.7.0 → 2026.3.2123-rc1

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