Apps Script's error messages are designed to be exact, not friendly. Authorization is required to perform that action doesn't tell you which action or why now: the answer is “you added UrlFetchApp to a script that previously only read the form, so the scope set changed”, but that's never in the error itself. Service invoked too many times for one daysounds like a counter you could reset, but it's actually a daily quota tied to your Google account. Exceeded maximum execution timeis a 6-minute hard timeout that Workspace users get 30 minutes for and free users can't raise.
The decoder unpacks each one into the action you need to take. The eleven patterns covered cover what we actually see in production form-to-Slack pipelines. Common, rough frequency:
Authorization is required, first-time setup. The unverified-app warning trips people; we explain the Advanced → Allow path.Request failed for hooks.slack.com. Slack rejected the post. The decoder points you at our webhook checker for the Slack-side diagnosis.Cannot read properties of undefined, usually a sheet-bound vs form-bound trigger mismatch (different event shape).Service invoked too many times for one day, quota hit. Pacific midnight reset; we suggest the cap + retry + relay options.Exceeded maximum execution time, script over 6 minutes. We point at chunking patterns for batch jobs.