From gws
Introspect any Google Workspace API schema — discover method parameters, request bodies, and response types before executing.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
> **Reference:** See the `gws-shared` skill for auth, global flags, and security rules.
Reviews Flutter/Dart code with library-agnostic checklist for widget best practices, state management patterns, Dart idioms, performance, accessibility, security, and clean architecture.
Integrates Apple's FoundationModels for on-device LLM in iOS 26+ apps: text generation, @Generable structured output, tool calling, snapshot streaming.
Creates distinctive production-grade frontend UIs for web components, pages, and apps, emphasizing intentional visual design, typography, color, layout, and motion.
Reference: See the
gws-sharedskill for auth, global flags, and security rules.
Introspect any Google Workspace API schema at runtime. Use this before executing unfamiliar API calls to understand the exact parameters, request body structure, and response types.
--json$ref pointers to see full type definitions# Introspect a method's parameters and request/response schemas
gws schema <service>.<resource>.<method>
# Introspect a type definition
gws schema <service>.<TypeName>
# Resolve $ref pointers to inline the full schema
gws schema <service>.<resource>.<method> --resolve-refs
# What parameters does drive files list accept?
gws schema drive.files.list
# What does the request body for calendar events insert look like?
gws schema calendar.events.insert
# What fields are in a Gmail message?
gws schema gmail.Message
# Inline all $ref pointers for the full picture
gws schema sheets.spreadsheets.create --resolve-refs
# Step 1: Check the schema
gws schema drive.permissions.create
# Step 2: Now execute with confidence
gws drive permissions create \
--params '{"fileId": "FILE_ID"}' \
--json '{"role": "reader", "type": "user", "emailAddress": "user@example.com"}'
gws schema before using an unfamiliar API method--resolve-refs when the schema output contains $ref pointers you want to see inline--help for flag-level docs: gws drive files list --help