personal-ai 0.2.0 → 0.2.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/SKILL.md CHANGED
@@ -6,7 +6,7 @@
6
6
  metadata:
7
7
  {
8
8
  "name": "pai",
9
- "version": "0.2.0",
9
+ "version": "latest",
10
10
  "description": "Local-first AI agent identity & memory system. Scan machine, compile profile, log daily journal, extract PINData knowledge, deploy to agents.",
11
11
  "requires": {
12
12
  "bins": ["pai"],
@@ -32,9 +32,8 @@ pai is a local-first AI agent identity & memory system. When you have access to
32
32
  ## Quick Setup (1 minute)
33
33
 
34
34
  ```bash
35
- npm install -g personal-ai # Install pai CLI
36
- pai init # Scan machine + compile profile (~12s, no LLM needed)
37
- pai distribute # Deploy to Cursor / Claude Code / agents
35
+ npm install -g personal-ai@latest # Always install the latest version
36
+ pai init # Scan machine + compile profile (~12s, no LLM needed)
38
37
  ```
39
38
 
40
39
  That's it. Your agent now knows who you are.
@@ -45,7 +44,7 @@ That's it. Your agent now knows who you are.
45
44
 
46
45
  | Requirement | How to Check | How to Get |
47
46
  |---|---|---|
48
- | `pai` CLI | `pai --version` | `npm install -g personal-ai` |
47
+ | `pai` CLI (latest) | `pai --version` | `npm install -g personal-ai@latest` |
49
48
  | Node.js ≥ 22 | `node -v` | `fnm install 22` or [nodejs.org](https://nodejs.org) |
50
49
 
51
50
  ### Optional (for advanced features)
@@ -97,9 +96,9 @@ pai status # Check data directory and counts
97
96
  pai profile # View your profile
98
97
  ```
99
98
 
100
- If `pai` is not found:
99
+ If `pai` is not found or outdated:
101
100
  ```bash
102
- npm install -g personal-ai
101
+ npm install -g personal-ai@latest
103
102
  pai init
104
103
  ```
105
104
 
package/dist/entry.mjs CHANGED
@@ -4440,7 +4440,7 @@ function registerAllCommands(program) {
4440
4440
  //#endregion
4441
4441
  //#region src/cli/build-program.ts
4442
4442
  function buildProgram() {
4443
- const program = new Command().name("pai").description("Personal AI Data Wallet — local-first experience manager").version("0.1.0");
4443
+ const program = new Command().name("pai").description("Personal AI Identity Provider — local-first AI agent identity & memory system").version("0.2.1");
4444
4444
  registerAllCommands(program);
4445
4445
  return program;
4446
4446
  }