Audit External Sharing
Commandby davila7 · Added 5mo ago
Claude
Install
npx claude-code-templates@latest --command=cli-tool/components/commands/google-workspace/recipes --yesAdd to Claude
claude mcp add audit-external-sharingAbout
allowed-tools: Bash, Read, Write, Edit argument-hint: [task-parameters] description: Find and review Google Drive files shared outside the organization.
Audit External Sharing
Execute Google Workspace workflow: $ARGUMENTS
Audit External Drive Sharing
PREREQUISITE: Load the following skills to execute this recipe:
gws-drive
Find and review Google Drive files shared outside the organization.
[!CAUTION] Revoking permissions immediately removes access. Confirm with the file owner first.
Steps
- List externally shared files:
gws drive files list --params '{"q": "visibility = '\''anyoneWithLink'\''"}' - Check permissions on a file:
gws drive permissions list --params '{"fileId": "FILE_ID"}' - Revoke if needed:
gws drive permissions delete --params '{"fileId": "FILE_ID", "permissionId": "PERM_ID"}'
Task
Execute this workflow with the following parameters: $ARGUMENTS
-
Prerequisites Check
- Verify
gwsCLI is installed:gws --version - Confirm authentication:
gws auth status - Load required GWS skills (check PREREQUISITE section above)
- Verify
-
Parameter Preparation
- Parse task parameters from $ARGUMENTS
- Validate required inputs
- Prepare JSON payloads and flags
-
Execute Workflow Steps
- Follow the steps outlined above
- Replace placeholder IDs with actual values
- Handle errors and retries
- Log progress and results
-
Verify Results
- Confirm each step completed successfully
- Verify changes in Google Workspace
- Report final status and any issues
Tips
- Use
--dry-runflag when available to preview changes - Always inspect API schemas before calling:
gws schema <service>.<resource>.<method> - Check command help for all flags:
gws <service> <resource> <method> --help
License: Apache License 2.0
Source: Google Workspace CLI
Original Skill: recipe-audit-external-sharing
Tags
CodeAnalysisaitmplclaude-code-templates