From coding-skills
Provides Google Workspace CLI commands when reading Google Sheets, accessing Docs, or querying Workspace APIs via the gws CLI tool.
How this skill is triggered — by the user, by Claude, or both
Slash command
/coding-skills:gws-conventionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use the `gws` CLI (https://github.com/googleworkspace/cli) to access Google Sheets, Docs, and other Workspace APIs.
gws)Use the gws CLI (https://github.com/googleworkspace/cli) to access Google Sheets, Docs, and other Workspace APIs.
# Get sheet names/properties
gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID", "fields": "sheets.properties"}'
# Read all data from a named sheet (no ! needed when using just the sheet name)
gws sheets spreadsheets values get --params "{\"spreadsheetId\": \"SHEET_ID\", \"range\": \"Sheet Name\"}"
# Read a specific range (use double quotes to escape ! from bash history expansion)
gws sheets spreadsheets values get --params "{\"spreadsheetId\": \"SHEET_ID\", \"range\": \"Sheet Name!A1:D10\"}"
Important: Sheets ranges use ! which bash interprets as history expansion. Use double-quoted --params with escaped inner quotes, or avoid ! by using just the sheet name as the range.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub necatisozer/coding-skills --plugin coding-skills