Google Drive

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This is a coherent Google Drive integration, but it requires trusting Maton with OAuth-backed Drive access and carefully approving any file-changing actions.

Use this skill only if you trust Maton and want an agent to access your Google Drive. Connect the correct Google account, specify the connection ID when multiple accounts exist, protect the MATON_API_KEY, and carefully review every create, update, delete, or sharing-related action before approving it.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

64/64 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

#
ASI03: Identity and Privilege Abuse
Medium
What this means

Commands run through this skill may access or change data in the connected Google Drive account.

Why it was flagged

The skill requires a Maton API key and uses it to authorize requests that act on a connected Google Drive account.

Skill content
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
Recommendation

Use only with a trusted Maton account, connect the intended Google account, and avoid exposing the MATON_API_KEY.

#
ASI02: Tool Misuse and Exploitation
Medium
What this means

If a user approves the wrong action, files or folders in Google Drive could be created, modified, deleted, or otherwise managed incorrectly.

Why it was flagged

The skill exposes Drive file-management actions, including write operations, but also clearly instructs the agent to get explicit approval before create, update, or delete calls.

Skill content
List, search, create, and manage files and folders... All write operations require explicit user approval.
Recommendation

Before approving any write, verify the target file or folder, the connected account, and the exact intended effect.

#
ASI07: Insecure Inter-Agent Communication
Medium
What this means

Drive API requests and responses may pass through Maton before reaching Google, which can involve sensitive file metadata or content depending on the API call.

Why it was flagged

Google Drive API requests are routed through Maton's service, so Drive request data and delegated OAuth access depend on that provider boundary.

Skill content
Maton proxies requests to `www.googleapis.com` and automatically injects your OAuth token.
Recommendation

Install only if you trust Maton as an intermediary for Google Drive access and understand the provider's privacy and security model.

#
ASI04: Agentic Supply Chain Vulnerabilities
Low
What this means

Installing the external CLI adds software outside this skill's scanned artifact set.

Why it was flagged

The documentation recommends installing an external global CLI package, but that package is not included in the instruction-only skill artifacts reviewed here.

Skill content
npm install -g @maton-ai/cli
Recommendation

Install the CLI only from trusted official sources and keep it updated.