claude-self-reflect 3.2.1 → 3.2.3

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/installer/cli.js +12 -4
  2. package/package.json +1 -1
package/installer/cli.js CHANGED
@@ -29,13 +29,21 @@ async function setup() {
29
29
  }
30
30
 
31
31
  async function status() {
32
- // Call the Python MCP server's --status command
32
+ // Call the Python status script directly
33
33
  const mcpServerPath = join(__dirname, '..', 'mcp-server');
34
- const venvPython = join(mcpServerPath, 'venv', 'bin', 'python');
35
- const mcpModule = join(mcpServerPath, 'src');
36
34
 
35
+ // Check for venv or .venv
36
+ let venvPython = join(mcpServerPath, 'venv', 'bin', 'python');
37
37
  try {
38
- const child = spawn(venvPython, ['-m', 'src', '--status'], {
38
+ await fs.access(venvPython);
39
+ } catch {
40
+ venvPython = join(mcpServerPath, '.venv', 'bin', 'python');
41
+ }
42
+
43
+ const statusScript = join(mcpServerPath, 'src', 'status.py');
44
+
45
+ try {
46
+ const child = spawn(venvPython, [statusScript], {
39
47
  cwd: mcpServerPath,
40
48
  stdio: ['inherit', 'pipe', 'pipe']
41
49
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-self-reflect",
3
- "version": "3.2.1",
3
+ "version": "3.2.3",
4
4
  "description": "Give Claude perfect memory of all your conversations - Installation wizard for Python MCP server",
5
5
  "keywords": [
6
6
  "claude",