rememb 0.3.2__tar.gz → 0.3.4__tar.gz
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.
- rememb-0.3.4/MANIFEST.in +2 -0
- {rememb-0.3.2/src/rememb.egg-info → rememb-0.3.4}/PKG-INFO +6 -17
- {rememb-0.3.2 → rememb-0.3.4}/README.md +5 -16
- {rememb-0.3.2 → rememb-0.3.4}/pyproject.toml +1 -1
- rememb-0.3.4/src/rememb/__init__.py +1 -0
- rememb-0.3.4/src/rememb/cli.py +663 -0
- {rememb-0.3.2 → rememb-0.3.4}/src/rememb/mcp_server.py +18 -13
- {rememb-0.3.2 → rememb-0.3.4}/src/rememb/store.py +8 -1
- {rememb-0.3.2 → rememb-0.3.4/src/rememb.egg-info}/PKG-INFO +6 -17
- {rememb-0.3.2 → rememb-0.3.4}/src/rememb.egg-info/SOURCES.txt +0 -5
- rememb-0.3.2/MANIFEST.in +0 -4
- rememb-0.3.2/rules/claude.md +0 -34
- rememb-0.3.2/rules/continue.md +0 -35
- rememb-0.3.2/rules/cursor.md +0 -35
- rememb-0.3.2/rules/vscode.md +0 -34
- rememb-0.3.2/rules/windsurf.md +0 -35
- rememb-0.3.2/src/rememb/__init__.py +0 -1
- rememb-0.3.2/src/rememb/cli.py +0 -539
- {rememb-0.3.2 → rememb-0.3.4}/LICENSE +0 -0
- {rememb-0.3.2 → rememb-0.3.4}/setup.cfg +0 -0
- {rememb-0.3.2 → rememb-0.3.4}/src/rememb.egg-info/dependency_links.txt +0 -0
- {rememb-0.3.2 → rememb-0.3.4}/src/rememb.egg-info/entry_points.txt +0 -0
- {rememb-0.3.2 → rememb-0.3.4}/src/rememb.egg-info/requires.txt +0 -0
- {rememb-0.3.2 → rememb-0.3.4}/src/rememb.egg-info/top_level.txt +0 -0
rememb-0.3.4/MANIFEST.in
ADDED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rememb
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Persistent memory standard for AI agents — local, portable, zero config
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/LuizEduPP/rememb
|
|
@@ -35,6 +35,7 @@ Requires-Dist: build; extra == "dev"
|
|
|
35
35
|
Requires-Dist: twine; extra == "dev"
|
|
36
36
|
Dynamic: license-file
|
|
37
37
|
|
|
38
|
+
<!-- mcp-name: io.github.luizedupp/rememb -->
|
|
38
39
|

|
|
39
40
|
|
|
40
41
|
AI agents forget everything between sessions. `rememb` gives them persistent memory — local, portable, and works with any agent.
|
|
@@ -87,12 +88,6 @@ Zero friction. No CLI commands. Native IDE integration.
|
|
|
87
88
|
}
|
|
88
89
|
```
|
|
89
90
|
|
|
90
|
-
| Editor | Config file |
|
|
91
|
-
|--------|-------------|
|
|
92
|
-
| **Windsurf** | `~/.codeium/windsurf/mcp_config.json` |
|
|
93
|
-
| **Cursor** | `.cursor/mcp.json` |
|
|
94
|
-
| **Claude Desktop** | `~/Library/Application Support/Claude/claude_desktop_config.json` |
|
|
95
|
-
|
|
96
91
|
**2. Restart your IDE.**
|
|
97
92
|
|
|
98
93
|
The agent now automatically reads memory at session start, writes when learning something new, and searches when needed.
|
|
@@ -100,10 +95,10 @@ The agent now automatically reads memory at session start, writes when learning
|
|
|
100
95
|
### Without MCP
|
|
101
96
|
|
|
102
97
|
```bash
|
|
103
|
-
rememb rules
|
|
98
|
+
rememb rules # Print generic rules for AI agents
|
|
104
99
|
```
|
|
105
100
|
|
|
106
|
-
Copy the output to your editor's rules file.
|
|
101
|
+
Copy the output to your editor's rules file (`.windsurfrules`, `.cursorrules`, `CLAUDE.md`, etc.)
|
|
107
102
|
|
|
108
103
|
---
|
|
109
104
|
|
|
@@ -154,7 +149,7 @@ rememb edit <id> # Update entry (--content, --section, --tags)
|
|
|
154
149
|
rememb delete <id> # Remove entry
|
|
155
150
|
rememb clear --yes # Delete all entries
|
|
156
151
|
rememb import <folder> # Import .md/.txt/.pdf files
|
|
157
|
-
rememb rules
|
|
152
|
+
rememb rules # Show generic rules for AI agents
|
|
158
153
|
```
|
|
159
154
|
|
|
160
155
|
---
|
|
@@ -168,16 +163,10 @@ rememb rules [editor] # Show editor integration rules
|
|
|
168
163
|
|
|
169
164
|
---
|
|
170
165
|
|
|
171
|
-
## Roadmap
|
|
172
|
-
|
|
173
|
-
- [ ] `rememb web` — local browser
|
|
174
|
-
|
|
175
|
-
---
|
|
176
|
-
|
|
177
166
|
## Contributing
|
|
178
167
|
|
|
179
168
|
```bash
|
|
180
|
-
git clone https://github.com/LuizEduPP/
|
|
169
|
+
git clone https://github.com/LuizEduPP/Rememb
|
|
181
170
|
cd rememb
|
|
182
171
|
pip install -e ".[dev]"
|
|
183
172
|
```
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
<!-- mcp-name: io.github.luizedupp/rememb -->
|
|
1
2
|

|
|
2
3
|
|
|
3
4
|
AI agents forget everything between sessions. `rememb` gives them persistent memory — local, portable, and works with any agent.
|
|
@@ -50,12 +51,6 @@ Zero friction. No CLI commands. Native IDE integration.
|
|
|
50
51
|
}
|
|
51
52
|
```
|
|
52
53
|
|
|
53
|
-
| Editor | Config file |
|
|
54
|
-
|--------|-------------|
|
|
55
|
-
| **Windsurf** | `~/.codeium/windsurf/mcp_config.json` |
|
|
56
|
-
| **Cursor** | `.cursor/mcp.json` |
|
|
57
|
-
| **Claude Desktop** | `~/Library/Application Support/Claude/claude_desktop_config.json` |
|
|
58
|
-
|
|
59
54
|
**2. Restart your IDE.**
|
|
60
55
|
|
|
61
56
|
The agent now automatically reads memory at session start, writes when learning something new, and searches when needed.
|
|
@@ -63,10 +58,10 @@ The agent now automatically reads memory at session start, writes when learning
|
|
|
63
58
|
### Without MCP
|
|
64
59
|
|
|
65
60
|
```bash
|
|
66
|
-
rememb rules
|
|
61
|
+
rememb rules # Print generic rules for AI agents
|
|
67
62
|
```
|
|
68
63
|
|
|
69
|
-
Copy the output to your editor's rules file.
|
|
64
|
+
Copy the output to your editor's rules file (`.windsurfrules`, `.cursorrules`, `CLAUDE.md`, etc.)
|
|
70
65
|
|
|
71
66
|
---
|
|
72
67
|
|
|
@@ -117,7 +112,7 @@ rememb edit <id> # Update entry (--content, --section, --tags)
|
|
|
117
112
|
rememb delete <id> # Remove entry
|
|
118
113
|
rememb clear --yes # Delete all entries
|
|
119
114
|
rememb import <folder> # Import .md/.txt/.pdf files
|
|
120
|
-
rememb rules
|
|
115
|
+
rememb rules # Show generic rules for AI agents
|
|
121
116
|
```
|
|
122
117
|
|
|
123
118
|
---
|
|
@@ -131,16 +126,10 @@ rememb rules [editor] # Show editor integration rules
|
|
|
131
126
|
|
|
132
127
|
---
|
|
133
128
|
|
|
134
|
-
## Roadmap
|
|
135
|
-
|
|
136
|
-
- [ ] `rememb web` — local browser
|
|
137
|
-
|
|
138
|
-
---
|
|
139
|
-
|
|
140
129
|
## Contributing
|
|
141
130
|
|
|
142
131
|
```bash
|
|
143
|
-
git clone https://github.com/LuizEduPP/
|
|
132
|
+
git clone https://github.com/LuizEduPP/Rememb
|
|
144
133
|
cd rememb
|
|
145
134
|
pip install -e ".[dev]"
|
|
146
135
|
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.4"
|