What problem does it solve?
This Skill prevents your Google Apps Script deployments from silently drifting out of sync with the git source, so you don’t waste time troubleshooting unexpected behavior caused by forgotten deploys or missing commits.
Core Features & Use Cases
- Deployed vs. git source comparison: Fetches the deployed version map from the live web endpoint and compares it to the version numbers in your
.gs files at git HEAD.
- Targeted per-file drift reporting: Flags only the files whose deployed version value differs from the version returned by the corresponding
get<Name>Version() function in source.
- Action-oriented priority thresholds: Assigns escalation levels based on how many files are drifting (including direction tagging like deployed > head vs deployed < head).
Quick Start
Ask the AI to run the version-drift-check by comparing the JSON from https://thompsonfams.com/pulse?action=version against the version returns in each .gs file’s get<Name>Version() in C:\Dev\tbm-apps-script HEAD, then report any mismatches with drift direction and priority.