claude-self-reflect 2.4.5 โ†’ 2.4.6

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 +41 -52
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -123,21 +123,27 @@ Once installed, just talk naturally:
123
123
 
124
124
  The reflection specialist automatically activates. No special commands needed.
125
125
 
126
- ## Performance & Usage Guide (v2.4.5)
126
+ ## Performance & Usage Guide
127
127
 
128
- ### ๐Ÿš€ 10-40x Faster Performance
129
- Search response times improved from 28.9s-2min down to **200-350ms** through optimizations:
130
- - Compressed XML response format (40% smaller)
131
- - Optimized excerpts (350 chars for context, 100 chars in brief mode)
132
- - Smart defaults (5 results to avoid missing relevant conversations)
128
+ ### ๐Ÿš€ Lightning Fast Search
129
+ Optimized to deliver results in **200-350ms** (10-40x faster than v2.4.4)
133
130
 
134
131
  ### ๐ŸŽฏ Recommended Usage: Through Reflection-Specialist Agent
135
132
 
136
133
  **Why use the agent instead of direct MCP tools?**
137
- - Rich formatted responses with analysis and insights
138
- - Proper handling of specialized search tools
139
- - Better user experience with streaming feedback
140
- - Automatic cross-project search suggestions
134
+ - **Preserves your main conversation context** - Search results don't clutter your working memory
135
+ - **Rich formatted responses** - Clean markdown instead of raw XML in your conversation
136
+ - **Better user experience** - Real-time streaming feedback and progress indicators
137
+ - **Proper tool counting** - Shows actual tool usage instead of "0 tool uses"
138
+ - **Automatic cross-project search** - Agent suggests searching across projects when relevant
139
+ - **Specialized search tools** - Access to quick_search, search_summary, and pagination
140
+
141
+ **Context Preservation Benefit:**
142
+ When you use the reflection-specialist agent, all the search results and processing happen in an isolated context. This means:
143
+ - Your main conversation stays clean and focused
144
+ - No XML dumps or raw data in your chat history
145
+ - Multiple searches won't exhaust your context window
146
+ - You get just the insights, not the implementation details
141
147
 
142
148
  **Example:**
143
149
  ```
@@ -147,61 +153,40 @@ You: "What Docker issues did we solve?"
147
153
  โŽฟ Searching 57 collections...
148
154
  โŽฟ Found 5 relevant conversations
149
155
  โŽฟ Done (1 tool use ยท 12k tokens ยท 2.3s)
156
+ [Returns clean, formatted insights without cluttering your context]
150
157
  ```
151
158
 
152
159
  ### โšก Performance Baselines
153
160
 
154
- | Method | Search Time | Total Time | Best For |
155
- |--------|------------|------------|----------|
156
- | Direct MCP | 200-350ms | 200-350ms | Programmatic use, integrations |
157
- | Via Agent | 200-350ms | 2-3s | Interactive use, rich analysis |
161
+ | Method | Search Time | Total Time | Context Impact | Best For |
162
+ |--------|------------|------------|----------------|----------|
163
+ | Direct MCP | 200-350ms | 200-350ms | Uses main context | Programmatic use, when context space matters |
164
+ | Via Agent | 200-350ms | 24-30s* | Isolated context | Interactive use, exploration, multiple searches |
158
165
 
159
- **Note**: The specialized tools (`quick_search`, `search_summary`, `get_more_results`) only work through the reflection-specialist agent due to MCP protocol limitations.
160
-
161
- ## Project-Scoped Search (New in v2.4.3)
166
+ *Note: The 24-30s includes context preservation overhead, which keeps your main conversation clean
162
167
 
163
- **โš ๏ธ Breaking Change**: Searches now default to current project only. Previously searched all projects.
168
+ **Note**: The specialized tools (`quick_search`, `search_summary`, `get_more_results`) only work through the reflection-specialist agent due to MCP protocol limitations.
164
169
 
165
- Conversations are now **project-aware by default**. When you ask about past conversations, Claude automatically searches within your current project directory, keeping results focused and relevant.
170
+ ## Key Features
166
171
 
167
- ### How It Works
172
+ ### ๐ŸŽฏ Project-Scoped Search
173
+ Searches are **project-aware by default** (v2.4.3+). Claude automatically searches within your current project:
168
174
 
169
175
  ```
170
- # Example: Working in ~/projects/ShopifyMCPMockShop
171
- You: "What authentication method did we implement?"
172
- Claude: [Searches ONLY ShopifyMCPMockShop conversations]
173
- "Found 3 conversations about JWT authentication..."
176
+ # In ~/projects/MyApp
177
+ You: "What authentication method did we use?"
178
+ Claude: [Searches ONLY MyApp conversations]
174
179
 
175
- # To search everywhere (like pre-v2.4.3 behavior)
180
+ # To search everywhere
176
181
  You: "Search all projects for WebSocket implementations"
177
182
  Claude: [Searches across ALL your projects]
178
- "Found implementations in 5 projects: ..."
179
-
180
- # To search a specific project
181
- You: "Find Docker setup in claude-self-reflect project"
182
- Claude: [Searches only claude-self-reflect conversations]
183
183
  ```
184
184
 
185
- ### Key Behaviors
186
-
187
- | Search Type | How to Trigger | Example |
185
+ | Search Scope | How to Trigger | Example |
188
186
  |------------|----------------|---------|
189
- | **Current Project** (default) | Just ask normally | "What did we discuss about caching?" |
190
- | **All Projects** | Say "all projects" or "across projects" | "Search all projects for error handling" |
191
- | **Specific Project** | Mention the project name | "Find auth code in MyApp project" |
192
-
193
- ### Why This Change?
194
-
195
- - **Focused Results**: No more sifting through unrelated conversations
196
- - **Better Performance**: Single-project search is ~100ms faster
197
- - **Natural Workflow**: Results match your current working context
198
- - **Privacy**: Work and personal projects stay isolated
199
-
200
- ### Upgrading from Earlier Versions?
201
-
202
- Your existing conversations remain searchable. The only change is that searches now default to your current project. To get the old behavior, simply ask to "search all projects".
203
-
204
- See [Project-Scoped Search Guide](docs/project-scoped-search.md) for detailed examples and advanced usage.
187
+ | Current Project (default) | Just ask normally | "What did we discuss about caching?" |
188
+ | All Projects | Say "all projects" | "Search all projects for error handling" |
189
+ | Specific Project | Name the project | "Find auth code in MyApp project" |
205
190
 
206
191
  ## Memory Decay
207
192
 
@@ -272,10 +257,14 @@ Both embedding options work well. Local mode uses FastEmbed for privacy and offl
272
257
  - [GitHub Issues](https://github.com/ramakay/claude-self-reflect/issues)
273
258
  - [Discussions](https://github.com/ramakay/claude-self-reflect/discussions)
274
259
 
275
- ## Latest Updates
260
+ ## What's New
261
+
262
+ ### Recent Updates
263
+ - **v2.4.5** - 10-40x performance boost, context preservation
264
+ - **v2.4.3** - Project-scoped search (breaking change)
265
+ - **v2.3.7** - Local embeddings by default for privacy
276
266
 
277
- - ๐Ÿ“ข [v2.4.x Announcement](https://github.com/ramakay/claude-self-reflect/discussions/19) - Major improvements including Docker setup and project-scoped search
278
- - ๐Ÿ’ฌ [Project-Scoped Search Feedback](https://github.com/ramakay/claude-self-reflect/discussions/17) - Share your experience with the breaking change
267
+ ๐Ÿ“š [Full Release History](docs/release-history.md) | ๐Ÿ’ฌ [Discussions](https://github.com/ramakay/claude-self-reflect/discussions)
279
268
 
280
269
  ## Contributing
281
270
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-self-reflect",
3
- "version": "2.4.5",
3
+ "version": "2.4.6",
4
4
  "description": "Give Claude perfect memory of all your conversations - Installation wizard for Python MCP server",
5
5
  "keywords": [
6
6
  "claude",