personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Increase screencast stall threshold from 15s to 30s

Raise STALL_THRESHOLD_CHUNKS from 3 to 6 in both Linux and macOS
observers, giving more time before exiting on file growth stalls.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+2 -2
+1 -1
observe/linux/observer.py
··· 49 49 RMS_THRESHOLD = 0.01 50 50 MIN_HITS_FOR_SAVE = 3 51 51 CHUNK_DURATION = 5 # seconds 52 - STALL_THRESHOLD_CHUNKS = 3 # Exit after this many chunks with no file growth 52 + STALL_THRESHOLD_CHUNKS = 6 # Exit after this many chunks with no file growth 53 53 54 54 55 55 # Capture modes
+1 -1
observe/macos/observer.py
··· 41 41 RMS_THRESHOLD = 0.01 42 42 MIN_HITS_FOR_SAVE = 3 43 43 SAMPLE_RATE = 48000 # Standard audio sample rate 44 - STALL_THRESHOLD_CHUNKS = 3 # Exit after this many chunks with no file growth 44 + STALL_THRESHOLD_CHUNKS = 6 # Exit after this many chunks with no file growth 45 45 46 46 47 47 class MacOSObserver: