Md To Gdoc
PassAudited by ClawScan on May 1, 2026.
Overview
This looks like a straightforward Markdown-to-Google-Docs converter, but it will use a logged-in Google account and upload the selected Markdown file to Google.
Before installing or using this skill, make sure gog is installed from a trusted source, verify which Google account is authenticated, and only run it on Markdown files you intend to store in Google Docs.
Findings (3)
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.
It can create a Google Doc in the authenticated Google account, and if no account is specified it may use gog's default authenticated account.
The skill depends on a locally authenticated Google Workspace CLI to act on a Google account. This is expected for creating Google Docs, but it means the skill uses account-bearing authority.
**[gog](https://github.com/tychohq/gog)** — Google Workspace CLI (must be authenticated: `gog auth add <email>`)
Verify the intended account with `gog auth list`, use `--account` and `--parent` when needed, and avoid running it against sensitive files unless they are intended for that Google account.
The Markdown file's contents will be stored in Google Docs and governed by that Google account's Drive sharing and retention settings.
The selected local Markdown file is sent through the Google Workspace CLI to populate a Google Doc. This is the intended data flow, but it means private local content leaves the local environment.
UPDATE_ARGS=(docs update "$DOC_ID" --content-file "$MD_FILE" --format=markdown --force)
Only convert files you are comfortable uploading to Google Docs, and confirm the destination account and folder before use.
Users must install and trust gog separately, and missing or misconfigured authentication may only surface at runtime.
The registry metadata does not declare the gog/python3 dependencies or Google authentication requirement that are described in the SKILL.md and used by the script. This is not hidden, but platform preflight may not warn users.
Required binaries (all must exist): none ... Primary credential: none
Install gog from a trusted source, review its Google auth scopes, and update the skill metadata to declare gog, python3, and the Google account requirement.
