claude-self-reflect 2.5.4 → 2.5.5

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.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "claude-self-reflect-mcp"
3
- version = "2.5.1"
3
+ version = "2.5.5"
4
4
  description = "MCP server for Claude self-reflection with memory decay"
5
5
  # readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -12,7 +12,7 @@ dependencies = [
12
12
  "qdrant-client>=1.7.0,<2.0.0",
13
13
  "voyageai>=0.1.0,<1.0.0",
14
14
  "python-dotenv>=1.0.0,<2.0.0",
15
- "pydantic>=2.9.2,<3.0.0", # Pin to avoid CVE-2024-3772
15
+ "pydantic>=2.11.7,<3.0.0", # Updated for fastmcp 2.10.6 compatibility
16
16
  "pydantic-settings>=2.0.0,<3.0.0",
17
17
  "fastembed>=0.4.0,<1.0.0",
18
18
  ]
@@ -956,7 +956,14 @@ async def search_by_file(
956
956
  files_analyzed = payload.get('files_analyzed', [])
957
957
  files_edited = payload.get('files_edited', [])
958
958
 
959
- if normalized_path in files_analyzed or normalized_path in files_edited:
959
+ # Check for exact match or if any file ends with the normalized path
960
+ file_match = False
961
+ for file in files_analyzed + files_edited:
962
+ if file == normalized_path or file.endswith('/' + normalized_path) or file.endswith('\\' + normalized_path):
963
+ file_match = True
964
+ break
965
+
966
+ if file_match:
960
967
  all_results.append({
961
968
  'score': 1.0, # File match is always 1.0
962
969
  'payload': payload,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-self-reflect",
3
- "version": "2.5.4",
3
+ "version": "2.5.5",
4
4
  "description": "Give Claude perfect memory of all your conversations - Installation wizard for Python MCP server",
5
5
  "keywords": [
6
6
  "claude",