myagentmemory 0.4.11 → 0.4.12
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/dist/agent-memory +0 -0
- package/dist/core.js +0 -7
- package/package.json +1 -1
- package/src/core.ts +0 -7
package/dist/agent-memory
CHANGED
|
Binary file
|
package/dist/core.js
CHANGED
|
@@ -711,12 +711,6 @@ export function installSkills() {
|
|
|
711
711
|
destDir: path.join(homeDir, ".cursor", "skills", "agent-memory"),
|
|
712
712
|
homeMarker: path.join(homeDir, ".cursor"),
|
|
713
713
|
},
|
|
714
|
-
{
|
|
715
|
-
label: "Agent CLI skill",
|
|
716
|
-
srcDir: path.join(skillsDir, "agent"),
|
|
717
|
-
destDir: path.join(homeDir, ".agents", "skills", "agent-memory"),
|
|
718
|
-
homeMarker: path.join(homeDir, ".agents"),
|
|
719
|
-
},
|
|
720
714
|
];
|
|
721
715
|
const detected = [];
|
|
722
716
|
const installed = [];
|
|
@@ -771,7 +765,6 @@ export function uninstallSkills() {
|
|
|
771
765
|
{ label: "Claude Code skill", destDir: path.join(homeDir, ".claude", "skills", "agent-memory") },
|
|
772
766
|
{ label: "Codex skill", destDir: path.join(homeDir, ".codex", "skills", "agent-memory") },
|
|
773
767
|
{ label: "Cursor skill", destDir: path.join(homeDir, ".cursor", "skills", "agent-memory") },
|
|
774
|
-
{ label: "Agent CLI skill", destDir: path.join(homeDir, ".agents", "skills", "agent-memory") },
|
|
775
768
|
];
|
|
776
769
|
const removed = [];
|
|
777
770
|
const skipped = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myagentmemory",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.12",
|
|
4
4
|
"description": "Persistent memory for coding agents (Claude Code, Codex, Cursor, Agent) with qmd-powered semantic search across daily logs, long-term memory, and scratchpad",
|
|
5
5
|
"main": "./dist/core.js",
|
|
6
6
|
"types": "./dist/core.d.ts",
|
package/src/core.ts
CHANGED
|
@@ -879,12 +879,6 @@ export function installSkills(): InstallSkillsReport {
|
|
|
879
879
|
destDir: path.join(homeDir, ".cursor", "skills", "agent-memory"),
|
|
880
880
|
homeMarker: path.join(homeDir, ".cursor"),
|
|
881
881
|
},
|
|
882
|
-
{
|
|
883
|
-
label: "Agent CLI skill",
|
|
884
|
-
srcDir: path.join(skillsDir, "agent"),
|
|
885
|
-
destDir: path.join(homeDir, ".agents", "skills", "agent-memory"),
|
|
886
|
-
homeMarker: path.join(homeDir, ".agents"),
|
|
887
|
-
},
|
|
888
882
|
];
|
|
889
883
|
|
|
890
884
|
const detected: Array<{ label: string; homeMarker: string }> = [];
|
|
@@ -955,7 +949,6 @@ export function uninstallSkills(): UninstallSkillsReport {
|
|
|
955
949
|
{ label: "Claude Code skill", destDir: path.join(homeDir, ".claude", "skills", "agent-memory") },
|
|
956
950
|
{ label: "Codex skill", destDir: path.join(homeDir, ".codex", "skills", "agent-memory") },
|
|
957
951
|
{ label: "Cursor skill", destDir: path.join(homeDir, ".cursor", "skills", "agent-memory") },
|
|
958
|
-
{ label: "Agent CLI skill", destDir: path.join(homeDir, ".agents", "skills", "agent-memory") },
|
|
959
952
|
];
|
|
960
953
|
|
|
961
954
|
const removed: Array<{ label: string; path: string }> = [];
|