@tpsdev-ai/flair 0.50.0 → 0.51.1

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
@@ -16,17 +16,28 @@ Runs on a laptop, a VPS, or anywhere Node does. Needs **Node.js 22+**.
16
16
  # 1. Install the CLI (no sudo)
17
17
  npm install -g @tpsdev-ai/flair
18
18
 
19
- # 2. Bootstrap the instance and register an agent
19
+ # 2. Verify the command is on your PATH
20
+ flair --version
21
+
22
+ # 3. Bootstrap the instance and register an agent
20
23
  flair init --agent mybot
21
24
 
22
- # 3. Write a memory
25
+ # 4. Write a memory
23
26
  flair memory add --agent mybot "Harper v5 sandbox blocks node:module but process.dlopen works"
24
27
 
25
- # 4. Find it back by meaning, not by keyword
28
+ # 5. Find it back by meaning, not by keyword
26
29
  flair search --agent mybot "native addon loading in sandboxed runtimes"
27
30
  ```
28
31
 
29
- Step 4 finds the memory you never keyword-matched:
32
+ If `flair --version` prints `command not found`, your npm global bin directory is not on `PATH`:
33
+
34
+ ```bash
35
+ export PATH="$(npm prefix -g)/bin:$PATH"
36
+ ```
37
+
38
+ Re-run `flair --version` to confirm, then continue.
39
+
40
+ Step 5 finds the memory you never keyword-matched:
30
41
 
31
42
  ```
32
43
  Harper v5 sandbox blocks node:module but process.dlopen works
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "0.50.0",
3
- "commit": "d643b7f8addb9fd033209fad1d405f7c935a7247",
4
- "builtAt": "2026-08-25T23:24:38.875Z",
2
+ "version": "0.51.1",
3
+ "commit": "3956621ec7803c982ae249eb0b19383f3c945c76",
4
+ "builtAt": "2026-09-01T15:49:54.601Z",
5
5
  "builder": "tsc"
6
6
  }