personal memory agent
0
fork

Configure Feed

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

Specify "Python regex" in sol logs --grep help and errors

"regex" alone is ambiguous (grep BRE, egrep ERE, Perl, etc).
Clarify that the pattern uses Python re module syntax.

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

+2 -2
+2 -2
think/logs_cli.py
··· 93 93 return re.compile(pattern) 94 94 except re.error as error: 95 95 raise argparse.ArgumentTypeError( 96 - f"Invalid regex: {pattern!r}: {error}" 96 + f"Invalid Python regex: {pattern!r}: {error}" 97 97 ) from error 98 98 99 99 ··· 275 275 "--grep", 276 276 type=compile_grep, 277 277 metavar="PATTERN", 278 - help="filter lines matching regex PATTERN", 278 + help="filter lines matching Python regex PATTERN", 279 279 ) 280 280 args = setup_cli(parser) 281 281