mafit 1.0.3 → 1.0.4

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
@@ -2,34 +2,23 @@
2
2
 
3
3
  Mafit local agent CLI.
4
4
 
5
- ```bash
6
- npm install -g mafit
7
- mafit --help
8
- ```
9
-
10
- This package ships prebuilt native binaries. Users do not need Rust or Cargo.
11
-
12
- ## Publisher workflow
13
-
14
- Build the requested native targets and stage them into this package:
5
+ ## Install
15
6
 
16
7
  ```bash
17
- cd npm
18
- npm run build:binaries
8
+ npm install -g mafit
19
9
  ```
20
10
 
21
- To build only one target:
11
+ ## Update
22
12
 
23
13
  ```bash
24
- npm run build:binaries -- aarch64-apple-darwin
14
+ npm install -g mafit@latest
25
15
  ```
26
16
 
27
- The script builds `web/dist` first so the dashboard assets are embedded into the
28
- Rust binary, then compiles the CLI and stages each output under `vendor/`.
29
-
30
- After staging:
17
+ ## Usage
31
18
 
32
19
  ```bash
33
- npm pack --dry-run
34
- npm publish
20
+ mafit --help
21
+ mafit login
22
+ mafit status
23
+ mafit web
35
24
  ```
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mafit",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Mafit local agent CLI",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",