@aiplumber/session-recall 1.6.7 → 1.6.8

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/package.json +1 -1
  2. package/session-recall +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiplumber/session-recall",
3
- "version": "1.6.7",
3
+ "version": "1.6.8",
4
4
  "description": "Pull context from previous Claude Code sessions. Sessions end, context resets - this tool lets you continue where you left off.",
5
5
  "bin": {
6
6
  "session-recall": "./session-recall"
package/session-recall CHANGED
@@ -1,12 +1,12 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const VERSION = '1.6.7';
3
+ const VERSION = '1.6.8';
4
4
 
5
5
  const fs = require('fs');
6
6
  const path = require('path');
7
7
 
8
8
  // Cross-platform home directory
9
- const HOME = HOME || process.env.USERPROFILE;
9
+ const HOME = process.env.HOME || process.env.USERPROFILE;
10
10
 
11
11
  // Filter patterns
12
12
  const SHELL_PREFIXES = ['ls ', 'cat ', 'npm ', 'cd ', 'git ', 'mkdir ', 'rm ', 'cp ', 'mv ', 'grep ', 'find '];