@mrc2204/agent-smart-memo 5.1.3 → 5.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 (2) hide show
  1. package/bin/asm.mjs +3 -5
  2. package/package.json +1 -1
package/bin/asm.mjs CHANGED
@@ -358,8 +358,6 @@ export async function main(argv = process.argv.slice(2)) {
358
358
  return 1;
359
359
  }
360
360
 
361
- if (import.meta.url === `file://${process.argv[1]}`) {
362
- main().then((code) => {
363
- process.exitCode = code;
364
- });
365
- }
361
+ main().then((code) => {
362
+ process.exitCode = code;
363
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrc2204/agent-smart-memo",
3
- "version": "5.1.3",
3
+ "version": "5.1.4",
4
4
  "description": "Smart Memory Plugin for OpenClaw \u2014 structured slot memory with auto-capture, auto-recall, essence distillation, and Qdrant vector search",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",