@lotargo/memory_plugin 1.2.6 → 1.2.7

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/README.md +9 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -55,9 +55,13 @@ Standard AI coding assistants lose context as soon as a chat session closes or a
55
55
 
56
56
  ### Installation
57
57
 
58
- Run the unified setup command to configure all detected AI environments automatically:
58
+ Run the setup command to configure all detected AI environments automatically:
59
59
 
60
60
  ```bash
61
+ # Recommended: Global installation & setup (works across local CLI, Jules, Docker, and CI)
62
+ npm install -g @lotargo/memory_plugin && memory_plugin setup
63
+
64
+ # Or via npx
61
65
  npx @lotargo/memory_plugin setup
62
66
  ```
63
67
 
@@ -65,16 +69,16 @@ To target a specific environment:
65
69
 
66
70
  ```bash
67
71
  # Antigravity / Gemini CLI
68
- npx @lotargo/memory_plugin setup --antigravity
72
+ npm install -g @lotargo/memory_plugin && memory_plugin setup --antigravity
69
73
 
70
74
  # OpenCode
71
- npx @lotargo/memory_plugin setup --opencode
75
+ npm install -g @lotargo/memory_plugin && memory_plugin setup --opencode
72
76
 
73
77
  # Claude Code
74
- npx @lotargo/memory_plugin setup --claude
78
+ npm install -g @lotargo/memory_plugin && memory_plugin setup --claude
75
79
 
76
80
  # Codex
77
- npx @lotargo/memory_plugin setup --codex
81
+ npm install -g @lotargo/memory_plugin && memory_plugin setup --codex
78
82
  ```
79
83
 
80
84
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lotargo/memory_plugin",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Persistent memory agent for coding AI tools — remembers user preferences and project context across sessions. Works with Antigravity, OpenCode, Claude Code, and Codex.",
5
5
  "type": "module",
6
6
  "main": "opencode-plugin/index.js",