Push local files to a Google Apps Script project.
Scanned 5/27/2026
Install via CLI
openskills install pleaseai/claude-code-plugins---
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
1. List existing projects: `gws apps-script projects list --format table`
2. Get project content: `gws apps-script projects getContent --params '{"scriptId": "SCRIPT_ID"}'`
3. Update content: `gws apps-script projects updateContent --params '{"scriptId": "SCRIPT_ID"}' --json '{"files": [{"name": "Code", "type": "SERVER_JS", "source": "function main() { ... }"}]}'`
4. Create a new version: `gws apps-script projects versions create --params '{"scriptId": "SCRIPT_ID"}' --json '{"description": "v2 release"}'`
No comments yet. Be the first to comment!
Wire a service's OpenTelemetry output to Sematext Cloud. Walks through region, App-type, instrumentation flow (managed OTLP endpoint vs Sematext Agent), and signal selection (traces/metrics/logs), then produces the exact env-var block and points at a runnable reference example in this repo. Invoke when instrumenting a new app for Sematext.