marmot-logger 1.0.6 → 1.0.7

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marmot-logger",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Activity monitoring tool for developer workflows - tracks file changes, terminal commands, git operations, and Claude Code hooks",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -14,7 +14,8 @@ function isMarmotProcess(cmdline) {
14
14
  return cmdline.includes('marmot monitor') ||
15
15
  cmdline.includes('marmot process-monitor') ||
16
16
  cmdline.includes('marmot log') ||
17
- cmdline.includes('# marmot-');
17
+ cmdline.includes('# marmot-') ||
18
+ cmdline.includes('/tmp/marmot/'); // Filter git diff/rsync spawned by file-monitor
18
19
  }
19
20
 
20
21
  function getCrontab() {