back
loading skill details...
Push local files to a Google Apps Script project.
Deploy local files to Google Apps Script projects with version control.
Requires the gws-apps-script skill and gws command-line tool as prerequisites
Supports listing projects, retrieving project content, updating files, and creating versioned releases
Workflow covers four core operations: project discovery, content inspection, file updates, and version creation
Deploy an Apps Script Project
PREREQUISITE: Load the following skills to execute this recipe: gws-apps-script
Push local files to a Google Apps Script project.
Steps
List existing projects: gws apps-script projects list --format table
Get project content: gws apps-script projects getContent --params '{"scriptId": "SCRIPT_ID"}'
Update content: gws apps-script projects updateContent --params '{"scriptId": "SCRIPT_ID"}' --json '{"files": [{"name": "Code", "type": "SERVER_JS", "source": "function main() { ... }"}]}'
Create a new version: gws apps-script projects versions create --params '{"scriptId": "SCRIPT_ID"}' --json '{"description": "v2 release"}'don't have the plugin yet? install it then click "run inline in claude" again.