# Recipe Audit External Sharing

> Find and review Google Drive files shared outside the organization.

- Skill: `digitalspeed/recipe-audit-external-sharing` (Agent Skill)
- Install (CLI): `npx skillmds@latest add digitalspeed/recipe-audit-external-sharing`
- Raw SKILL.md: https://api.skillmd.com/api/skills/digitalspeed/recipe-audit-external-sharing/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: digitalspeed (https://skillmd.com/u/digitalspeed)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/digitalspeed/recipe-audit-external-sharing

---


# 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

1. List externally shared files: `gws drive files list --params '{"q": "visibility = '''anyoneWithLink'''"}'`
2. Check permissions on a file: `gws drive permissions list --params '{"fileId": "FILE_ID"}'`
3. Revoke if needed: `gws drive permissions delete --params '{"fileId": "FILE_ID", "permissionId": "PERM_ID"}'`


