How to install recipe-deploy-apps-script
npx skills add null --skill recipe-deploy-apps-scriptClaude Code
Cursor
Windsurf
Cline
Full instructions (SKILL.md)
Source of truth, from googleworkspace/cli.
name: recipe-deploy-apps-script version: 1.0.0 description: "Push local files to a Google Apps Script project." metadata: openclaw: category: "recipe" domain: "engineering" requires: bins: ["gws"] skills: ["gws-apps-script"]
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"}'
Related skills
More from googleworkspace/cli and the wider catalog.
RE
recipe-draft-email-from-doc
googleworkspace/cli
Read a Google Doc and draft it as a Gmail message body.
18k installs
RE
recipe-email-drive-link
googleworkspace/cli
Share a Google Drive file and email the link with a message to recipients.
18k installs
RE
recipe-find-free-time
googleworkspace/cli
Query Google Calendar free/busy status across multiple users to find available meeting slots.
18k installsAudited
RE
recipe-find-large-files
googleworkspace/cli
Find and list the largest files in Google Drive consuming your storage quota.
18k installsAudited
RE
recipe-forward-labeled-emails
googleworkspace/cli
Find Gmail messages with a specific label and forward them to another address.
18k installs
RE
recipe-generate-report-from-sheet
googleworkspace/cli
Read Google Sheet data and generate formatted Google Docs reports automatically.
18k installsAudited