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.
@@ -0,0 +1,2 @@
1
+ include README.md
2
+ include LICENSE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rememb
3
- Version: 0.3.2
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
  ![rememb cover](https://raw.githubusercontent.com/LuizEduPP/Rememb/main/assets/cover.png)
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 windsurf # Generate rules for your editor
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 [editor] # Show editor integration 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/rememb
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
  ![rememb cover](https://raw.githubusercontent.com/LuizEduPP/Rememb/main/assets/cover.png)
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 windsurf # Generate rules for your editor
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 [editor] # Show editor integration 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/rememb
132
+ git clone https://github.com/LuizEduPP/Rememb
144
133
  cd rememb
145
134
  pip install -e ".[dev]"
146
135
  ```
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "rememb"
7
- version = "0.3.2"
7
+ version = "0.3.4"
8
8
  description = "Persistent memory standard for AI agents — local, portable, zero config"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -0,0 +1 @@
1
+ __version__ = "0.3.4"