google-drive — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited google-drive (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Interact with Google Drive - list files, upload, download, and manage sharing.
| Folder | ID | Purpose |
|---|---|---|
| CURRENT | 1SfLKzSCFsFWaCUl63_L9GtJWMIKSWTyO | Active client projects (Weblyfe) |
GOOGLE_CLIENT_ID=your-client-id
GOOGLE_CLIENT_SECRET=your-client-secret
# OAuth token obtained via OAuth flow
GOOGLE_ACCESS_TOKEN=your-access-token
GOOGLE_REFRESH_TOKEN=your-refresh-tokengdrive list --folder "Appie Backups"gdrive upload /path/to/file.txt --name "backup.txt" --folder "Appie Backups"gdrive download <file-id> --output /path/to/save.txtgdrive mkdir "New Folder" --parent "parent-folder-id"api/google-drive.jsconst drive = require('./api/google-drive.js');
// List files
const files = await drive.listFiles({ folderId: 'xxx' });
// Upload
await drive.uploadFile('/path/to/file.txt', { name: 'file.txt', folderId: 'xxx' });
// Download
await drive.downloadFile('file-id', '/path/to/save.txt');
// Search
const results = await drive.searchFiles('query string');| Use Case | Implementation |
|---|---|
| Auto-backup | Appie → Drive → Daily backup folder |
| File sharing | Generate share links |
| Document sync | Sync local files to Drive |
| Team folders | Create organized folder structure |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.