claude-self-reflect 2.4.12 → 2.4.13

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.
@@ -5,12 +5,20 @@ WORKDIR /app
5
5
  # Update system packages for security
6
6
  RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
7
7
 
8
- # Install dependencies
9
- COPY scripts/requirements.txt .
10
- RUN pip install --no-cache-dir -r requirements.txt
8
+ # Install dependencies directly (avoids file path issues with global npm installs)
9
+ RUN pip install --no-cache-dir \
10
+ qdrant-client==1.15.0 \
11
+ openai==1.97.1 \
12
+ mcp-server-qdrant==0.8.0 \
13
+ backoff==2.2.1 \
14
+ tqdm==4.67.1 \
15
+ humanize==4.12.3 \
16
+ fastembed==0.7.1 \
17
+ voyageai==0.3.4 \
18
+ tenacity==9.1.2
11
19
 
12
- # Copy only the unified import script
13
- COPY scripts/import-conversations-unified.py .
20
+ # Note: The import script is mounted as a volume in docker-compose.yaml
21
+ # This allows the container to work with both local development and global npm installs
14
22
 
15
- # Run the unified importer
16
- CMD ["python", "import-conversations-unified.py"]
23
+ # Default command (can be overridden by docker-compose)
24
+ CMD ["python", "--version"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-self-reflect",
3
- "version": "2.4.12",
3
+ "version": "2.4.13",
4
4
  "description": "Give Claude perfect memory of all your conversations - Installation wizard for Python MCP server",
5
5
  "keywords": [
6
6
  "claude",