From google-workspace-cli
Create a Google Shared Drive and add members with appropriate roles.
npx claudepluginhub pleaseai/claude-code-plugins --plugin google-workspaceThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`
Creates Google Shared Drive, adds members with roles like writer, and lists permissions using gws CLI. Useful for Workspace team project setup.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
PREREQUISITE: Load the following skills to execute this recipe:
gws-drive
Create a Google Shared Drive and add members with appropriate roles.
gws drive drives create --params '{"requestId": "unique-id-123"}' --json '{"name": "Project X"}'gws drive permissions create --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}' --json '{"role": "writer", "type": "user", "emailAddress": "member@company.com"}'gws drive permissions list --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}'