Install
$ agentstack add skill-vaayne-agent-kit-gws ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
gws — Google Workspace CLI
gws [sub-resource] [flags]
Helpers prefixed with + are high-level shortcuts — prefer them. Run gws --help to discover all commands.
Key Flags
| Flag | Purpose | | --------------------------- | -------------------------------- | | --params '{"k":"v"}' | URL/query parameters | | --json '{"k":"v"}' | Request body | | --format table\|yaml\|csv | Output format (default: json) | | --dry-run | Validate without calling the API | | --page-all | Auto-paginate (NDJSON) | | --upload | Upload file (multipart) |
Shell Quoting
- Wrap
--params/--jsonin single quotes:--params '{"pageSize":10}' - Sheet ranges contain
!which zsh expands. Use double quotes:--range "Sheet1!A1:D10"(never single quotes)
Services
Gmail
gws gmail +triage # unread summary
gws gmail +send --to a@b.com --subject "Hi" --body "Hello"
gws gmail +read --message-id MSG_ID
gws gmail +reply --message-id MSG_ID --body "Thanks"
gws gmail users messages list --params '{"userId":"me","q":"is:unread"}'
Drive
gws drive files list --params '{"pageSize":10}'
gws drive +upload --file ./report.pdf --name "Q4 Report" --parent FOLDER_ID
gws drive permissions create --params '{"fileId":"FILE_ID"}' \
--json '{"role":"reader","type":"user","emailAddress":"user@co.com"}'
Sheets
gws sheets +read --spreadsheet SHEET_ID --range "Sheet1!A1:D10"
gws sheets +append --spreadsheet SHEET_ID --range "Sheet1" --values '[["Alice",30]]'
Calendar
gws calendar +agenda
gws calendar +insert --summary "Sync" --start "2026-05-01T10:00:00" \
--end "2026-05-01T11:00:00" --attendees "a@co.com,b@co.com"
gws calendar events list --params '{"calendarId":"primary","maxResults":10}'
Docs / Tasks / Chat
gws docs documents get --params '{"documentId":"DOC_ID"}'
gws docs +write --document DOC_ID --text "Appended text"
gws tasks tasks list --params '{"tasklist":"@default"}'
gws tasks tasks insert --params '{"tasklist":"@default"}' --json '{"title":"Review PR"}'
gws chat +send --space SPACE_ID --text "Deploy complete"
Cross-Service Workflows
gws workflow +standup-report # meetings + open tasks
gws workflow +meeting-prep # next meeting agenda
gws workflow +email-to-task --message-id MSG_ID # email → task
gws workflow +file-announce --file FILE_ID --space SPACE_ID
Schema Discovery
gws schema drive.files.list # param + response shape
gws schema sheets.spreadsheets.values.get --resolve-refs
Common Flows
Gmail Filter (auto-label incoming messages)
gws gmail users labels list --params '{"userId":"me"}' --format table
gws gmail users labels create --params '{"userId":"me"}' --json '{"name":"Receipts"}'
# Use returned label id below
gws gmail users settings filters create --params '{"userId":"me"}' \
--json '{"criteria":{"from":"receipts@example.com"},"action":{"addLabelIds":["LABEL_ID"],"removeLabelIds":["INBOX"]}}'
gws gmail users settings filters list --params '{"userId":"me"}' --format table
Upload → Share → Announce
gws drive +upload --file ./report.pdf --name "Q4 Report 2026"
gws drive permissions create --params '{"fileId":"FILE_ID","sendNotificationEmail":true}' \
--json '{"role":"reader","type":"user","emailAddress":"colleague@co.com"}'
gws workflow +file-announce --file FILE_ID --space SPACE_ID
Sheet Update + Chat Notify
gws sheets +append --spreadsheet SHEET_ID --range "Sheet1" \
--values '[["2026-04-26","Alice",142.50,"Closed"]]'
gws chat +send --space SPACE_ID --text "New row added to pipeline sheet."
Morning Standup
gws workflow +standup-report && gws gmail +triage
Security
- Never emit tokens or credentials in output.
- Confirm with the user before any write or delete command.
- Use
--dry-runbefore destructive operations.
Auth
gws auth login # browser OAuth
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/key.json # service account
Community:
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: vaayne
- Source: vaayne/agent-kit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.