A 5e storytelling engine with an LLM DM
0
fork

Configure Feed

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

Enable bracketed paste so multi-line pastes don't flood the DM

Pasting multi-line text was sending each line as a separate message,
creating an uninterruptible cascade of DM responses. Readline's
bracketed paste mode collects the entire paste as one input.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+1
+1
src/storied/cli.py
··· 225 225 readline.set_completer_delims(readline.get_completer_delims().replace("/", "")) 226 226 readline.set_completer(slash_completer) 227 227 readline.parse_and_bind("tab: complete") 228 + readline.parse_and_bind("set enable-bracketed-paste on") 228 229 229 230 console = Console() 230 231 world_id = args.world if args.world else "default"