@pi-unipi/memory 0.1.2 → 0.1.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.
Files changed (3) hide show
  1. package/README.md +3 -3
  2. package/index.ts +2 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @unipi/memory
1
+ # @pi-unipi/memory
2
2
 
3
3
  Persistent cross-session memory with vector search for Pi coding agent.
4
4
 
@@ -18,7 +18,7 @@ Persistent cross-session memory with vector search for Pi coding agent.
18
18
  pi install npm:unipi
19
19
 
20
20
  # Standalone
21
- pi install npm:@unipi/memory
21
+ pi install npm:@pi-unipi/memory
22
22
  ```
23
23
 
24
24
  ## Tools
@@ -91,4 +91,4 @@ Examples:
91
91
  - `better-sqlite3` - SQLite database
92
92
  - `sqlite-vec` - Vector search extension
93
93
  - `js-yaml` - YAML frontmatter parsing
94
- - `@unipi/core` - Shared utilities
94
+ - `@pi-unipi/core` - Shared utilities
package/index.ts CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  MODULES,
14
14
  emitEvent,
15
15
  getPackageVersion,
16
- } from "@unipi/core";
16
+ } from "@pi-unipi/core";
17
17
 
18
18
  // Get info registry from global (avoids direct import issues with pi's extension loading)
19
19
  function getInfoRegistry() {
@@ -66,6 +66,7 @@ export default function (pi: ExtensionAPI) {
66
66
  projectStorage = new MemoryStorage(projectName);
67
67
  projectStorage.init();
68
68
 
69
+
69
70
  // Announce module
70
71
  emitEvent(pi, UNIPI_EVENTS.MODULE_READY, {
71
72
  name: MODULES.MEMORY,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/memory",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Persistent cross-session memory with vector search for Pi coding agent",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -45,7 +45,7 @@
45
45
  "better-sqlite3": "^12.9.0",
46
46
  "sqlite-vec": "^0.1.9",
47
47
  "js-yaml": "^4.1.0",
48
- "@unipi/core": "*",
48
+ "@pi-unipi/core": "*",
49
49
  "@pi-unipi/info-screen": "*"
50
50
  },
51
51
  "peerDependencies": {