aboutsummaryrefslogtreecommitdiff
path: root/claude-templates/.ai/scripts/tests/test_inbox_send.py
Commit message (Collapse)AuthorAgeFilesLines
* fix(inbox-send): preserve dots in copied filenamesCraig Jennings2026-05-261-0/+28
| | | | | | send_file ran filenames through slugify(), which flattens dots to hyphens. That corrupts the engine.plugin.org plugin-namespace convention: triage-intake.personal-gmail.org arrived as triage-intake-personal-gmail.org, which breaks the engine's triage-intake.*.org glob and the routing that depends on the first dot. I added slugify_filename() for filename stems. It keeps dots, hyphens, underscores, and case, collapses only whitespace runs to hyphens, and truncates on a separator boundary. The prose --text path still uses slugify().
* Merge commit '69c5e4ace81586c05dea6a9a3afd54dafa61a73b' as 'claude-templates'Craig Jennings2026-05-151-0/+329