googleworkspace/cli · Official

gws-script

Manage Google Apps Script projects.

All-time #922 Trending #1449 Hot #446 First seen Mar 26, 2026
8-week activity · all time api

Installation

$ npx skills add googleworkspace/cli --skill gws-script

Summary

  • Manage Google Apps Script projects via command-line API calls.
  • Supports core project operations: create, get metadata, retrieve content, update code, and fetch execution metrics Includes process listing to monitor script executions and view status information Provides deployment and versioning operations for managing script releases Requires gws binary and Google authentication configured in shared settings; use gws schema to inspect method parameters before execution

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Security audits

Partner security reviews for this skill.

agent-trust-hub SAFE

Analyzed Mar 31, 2026

The skill is a legitimate management tool for Google Apps Script projects utilizing the 'gws' CLI from the 'googleworkspace' author. It enables developers to manage, update, and execute scripts within the Google Apps Script environment. No malicious patterns, unauthorized access, or security vulnerabilities were identified during the analysis.

snyk LOW

Analyzed Mar 31, 2026

No issues detected.

socket Score 0.9000 · 0 alerts

Analyzed Mar 31, 2026

  • license 1
  • maintenance 1
  • quality 0.9
  • supply chain 1
  • vulnerability 1

0 alerts

Also in this package

Other skills from googleworkspace/cli · top by installs.

npx skills add googleworkspace/cli

Browse all from googleworkspace/cli

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 30.8K
License LICENSE
Default branch main
Open issues 129
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.22.5
Declared agents clawdbot
More metadata
version
0.22.5
openclaw
{"category":"productivity","requires":{"bins":["gws"]},"cliHelp":"gws script --help"}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,034 B
  • docs SUMMARY.md 53 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 23,100 installs

SKILL.md

script (v1)

PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it.

gws script <resource> <method> [flags]

Helper Commands

Command Description
[+push](../gws-script-push/SKILL.md) Upload local files to an Apps Script project

API Resources

processes

- list — List information about processes made by or on behalf of a user, such as process type and current status. - listScriptProcesses — List information about a script's executed processes, such as process type and current status.

projects

- create — Creates a new, empty script project with no script files and a base manifest file. - get — Gets a script project's metadata. - getContent — Gets the content of the script project, including the code source and metadata for each script file. - getMetrics — Get metrics data for scripts, such as number of executions and active users. - updateContent — Updates the content of the specified script project. This content is stored as the HEAD version, and is used when the script is executed as a trigger, in the script editor, in add-on preview mode, or as a web app or Apps Script API in development mode. This clears all the existing files in the project. - deployments — Operations on the 'deployments' resource - versions — Operations on the 'versions' resource

scripts

- run

Discovering Commands

Before calling any API method, inspect it:

# Browse resources and methods
gws script --help

# Inspect a method's required params, types, and defaults
gws schema script.<resource>.<method>

Use gws schema output to build your --params and --json flags.