personal memory agent
0
fork

Configure Feed

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

Add verbose flag and increase timeout for full index rescan

- Pass --verbose to indexer --rescan-full when dream runs with -v
- Increase timeout from 10 min to 60 min for full rescan (handles
large journals with 100k+ files)

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

+4 -1
+4 -1
think/dream.py
··· 613 613 # Full rescan after agents (via supervisor queue for serialization) 614 614 if agent_success > 0 or agent_fail_count > 0: 615 615 logging.info("Running full index rescan after agents...") 616 - run_queued_command(["sol", "indexer", "--rescan-full"], day) 616 + full_rescan_cmd = ["sol", "indexer", "--rescan-full"] 617 + if args.verbose: 618 + full_rescan_cmd.append("--verbose") 619 + run_queued_command(full_rescan_cmd, day, timeout=3600) 617 620 618 621 # Emit completed event (all processing done) 619 622 emit(