mirror of
https://github.com/googleworkspace/cli.git
synced 2026-09-14 16:47:13 +08:00
e104106cd7
* docs: warn about zsh \! history expansion in sheet range examples Add a "Shell Tips" section to the gws-shared skill explaining that zsh interprets \! inside single quotes as history expansion, which mangles sheet ranges like 'Sheet1\!A1:B2'. Replace single quotes with double quotes around sheet ranges containing \! in: - registry/recipes.yaml (source for generated recipe skills) - src/helpers/sheets.rs (+read after_help examples) - src/generate_skills.rs (shared skill template) - Generated SKILL.md files for affected recipes and gws-sheets-read Closes #268 * fix: escape double quotes in after_help string literal The after_help string for +read uses a regular string literal, not a raw string, so inner double quotes must be escaped with backslashes.