@pi-unipi/memory 2.0.12 → 2.0.13

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/index.ts +0 -8
  2. package/package.json +3 -3
package/index.ts CHANGED
@@ -51,14 +51,6 @@ export default function (pi: ExtensionAPI) {
51
51
  let recallDone = false;
52
52
  let storeDone = false;
53
53
 
54
- // Register skills directory
55
- const skillsDir = new URL("./skills", import.meta.url).pathname;
56
- pi.on("resources_discover", async (_event, _ctx) => {
57
- return {
58
- skillPaths: [skillsDir],
59
- };
60
- });
61
-
62
54
  // Register tools and commands
63
55
  registerMemoryTools(pi, getStorage, {
64
56
  onRecall: () => { recallDone = true; },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/memory",
3
- "version": "2.0.12",
3
+ "version": "2.0.13",
4
4
  "description": "Persistent cross-session memory with vector search for Pi coding agent",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -40,8 +40,8 @@
40
40
  "better-sqlite3": "^12.9.0",
41
41
  "sqlite-vec": "^0.1.9",
42
42
  "js-yaml": "^4.1.0",
43
- "@pi-unipi/core": "2.0.12",
44
- "@pi-unipi/info-screen": "2.0.12"
43
+ "@pi-unipi/core": "2.0.13",
44
+ "@pi-unipi/info-screen": "2.0.13"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "@earendil-works/pi-coding-agent": "^0.78.0",