Gws Chat

v1.0.14

Google Chat: Manage Chat spaces and messages.

0· 572·13 current·13 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description (Google Chat management) match the SKILL.md contents which document Google Chat resources and methods. The only declared runtime requirement is the 'gws' CLI binary, which is appropriate for a CLI-based skill.
Instruction Scope
Instructions are limited to using the 'gws' CLI (list, create, delete, upload, etc.). They instruct the agent to read ../gws-shared/SKILL.md for auth, global flags, and security rules; that dependency on a sibling/shared SKILL.md is out-of-band and should be checked because it is the place where authentication and security behavior is defined. The skill documents destructive operations (delete spaces/messages) which are expected for the purpose but increase risk if auth/scopes are too broad.
Install Mechanism
No install spec and no code files — instruction-only. This is low-risk from an install standpoint because nothing is downloaded or written by the skill itself.
Credentials
The skill requests no environment variables or credentials itself. However it explicitly delegates auth and global flags to ../gws-shared/SKILL.md, so credential handling is implemented elsewhere and must be reviewed to ensure the auth scopes and storage mechanisms are appropriate.
Persistence & Privilege
No elevated persistence requested (always:false). The skill is user-invocable and can be invoked autonomously per platform defaults — that is normal and not by itself a problem.
Assessment
This skill runs a local 'gws' CLI to manage Google Chat (create/delete spaces, send messages, upload media). Before installing: 1) verify the origin and integrity of the 'gws' binary you will use (who published it, how it is installed); 2) inspect the referenced ../gws-shared/SKILL.md to see how authentication is performed and what OAuth scopes or tokens are used; 3) ensure credentials used by the CLI have the minimum necessary privileges (avoid admin-level scopes if unnecessary); and 4) test actions that delete or modify chat spaces in a test account or workspace first. Because auth is delegated to a shared file not included here, review that file to raise confidence from medium to high.

Like a lobster shell, security has layers — review code before you run it.

Plugin bundle (nix)
Skill pack · CLI binary · Config
SKILL.mdCLIConfig
CLI help (from plugin)
gws chat --help

Runtime requirements

Binsgws
latestvk97axma1tw76e6ycbecswd4ksn83z41t
572downloads
0stars
15versions
Updated 3w ago
v1.0.14
MIT-0

chat (v1)

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

gws chat <resource> <method> [flags]

Helper Commands

CommandDescription
+sendSend a message to a space

API Resources

customEmojis

media

  • download — Downloads media. Download is supported on the URI /v1/media/{+name}?alt=media.
  • upload — Uploads an attachment. For an example, see Upload media as a file attachment.

spaces

  • completeImport — Completes the import process for the specified space and makes it visible to users.
  • create — Creates a space. Can be used to create a named space, or a group chat in Import mode. For an example, see Create a space.
  • delete — Deletes a named space. Always performs a cascading delete, which means that the space's child resources—like messages posted in the space and memberships in the space—are also deleted. For an example, see Delete a space.
  • findDirectMessage — Returns the existing direct message with the specified user. If no direct message space is found, returns a 404 NOT_FOUND error. For an example, see Find a direct message. With app authentication, returns the direct message space between the specified user and the calling Chat app.
  • get — Returns details about a space. For an example, see Get details about a space.
  • list — Lists spaces the caller is a member of. Group chats and DMs aren't listed until the first message is sent. For an example, see List spaces.
  • patch — Updates a space. For an example, see Update a space. If you're updating the displayName field and receive the error message ALREADY_EXISTS, try a different display name.. An existing space within the Google Workspace organization might already use this display name.
  • search — Returns a list of spaces in a Google Workspace organization based on an administrator's search. In the request, set use_admin_access to true. For an example, see Search for and manage spaces.
  • setup — Creates a space and adds specified users to it. The calling user is automatically added to the space, and shouldn't be specified as a membership in the request. For an example, see Set up a space with initial members. To specify the human members to add, add memberships with the appropriate membership.member.name. To add a human user, use users/{user}, where {user} can be the email address for the user.
  • members — Operations on the 'members' resource
  • messages — Operations on the 'messages' resource
  • spaceEvents — Operations on the 'spaceEvents' resource

users

  • sections — Operations on the 'sections' resource
  • spaces — Operations on the 'spaces' resource

Discovering Commands

Before calling any API method, inspect it:

# Browse resources and methods
gws chat --help

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

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

Comments

Loading comments...