Claude Agent Skill · by Googleworkspace

Gws Script Push

A straightforward CLI wrapper around Google's Apps Script API that lets you manage script projects from the command line. You can create new projects, pull down

Install
Terminal · npx
$npx skills add https://github.com/obra/superpowers --skill brainstorming
Works with Paperclip

How Gws Script Push fits into a Paperclip company.

Gws Script Push drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md52 lines
Expand
---name: gws-script-pushdescription: "Google Apps Script: Upload local files to an Apps Script project."metadata:  version: 0.22.5  openclaw:    category: "productivity"    requires:      bins:        - gws    cliHelp: "gws script +push --help"--- # script +push > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. Upload local files to an Apps Script project ## Usage ```bashgws script +push --script <ID>``` ## Flags | Flag | Required | Default | Description ||------|----------|---------|-------------|| `--script` | ✓ | — | Script Project ID || `--dir` | — | — | Directory containing script files (defaults to current dir) | ## Examples ```bashgws script +push --script SCRIPT_IDgws script +push --script SCRIPT_ID --dir ./src``` ## Tips - Supports .gs, .js, .html, and appsscript.json files.- Skips hidden files and node_modules automatically.- This replaces ALL files in the project. > [!CAUTION]> This is a **write** command — confirm with the user before executing. ## See Also - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth- [gws-script](../gws-script/SKILL.md) — All manage google apps script projects commands