This document outlines the schedule and content for a workshop on mastering async/await in Node.js. The workshop covers using async/await to handle asynchronous code, error handling, and composing async functions. It includes two exercises - one to gather blog post comments from an API, and another to retry failed requests. The key takeaways are that async functions always return promises, await pauses execution until a promise settles, and returned values/errors are handled via promise resolution/rejection.