# Send Google Docs from Markdown to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gdocs-markdown",
    "name": "Google Docs from Markdown",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/techlaai/gdocs-markdown",
    "canonicalUrl": "https://clawhub.ai/techlaai/gdocs-markdown",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gdocs-markdown",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gdocs-markdown",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/gdocs-create.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gdocs-markdown",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T02:04:57.900Z",
      "expiresAt": "2026-05-07T02:04:57.900Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gdocs-markdown",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gdocs-markdown",
        "contentDisposition": "attachment; filename=\"gdocs-markdown-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gdocs-markdown"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gdocs-markdown"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gdocs-markdown",
    "downloadUrl": "https://openagent3.xyz/downloads/gdocs-markdown",
    "agentUrl": "https://openagent3.xyz/skills/gdocs-markdown/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gdocs-markdown/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gdocs-markdown/agent.md"
  }
}
```
## Documentation

### Google Docs from Markdown

Create Google Docs from Markdown files using the workflow: Markdown → DOCX → Drive Upload → Google Docs.

### Why This Skill Exists

gog docs CLI does NOT support writing/updating content to Google Docs. It only supports:

create - Create empty doc
export - Export to file
cat - Read content
copy - Copy existing doc

This skill provides the missing workflow to create Google Docs WITH content from Markdown.

### Author

Created by techla

### Prerequisites

gog CLI authenticated with Google account
pandoc binary (auto-downloaded on first use if not available)

### Installation Note

After installing from ClawHub, fix the script permissions:

chmod +x ~/.openclaw/workspace/skills/gdocs-markdown/scripts/gdocs-create.sh

### Quick Create

# Create Google Doc from markdown file
gdocs-create.sh /path/to/file.md "Tiêu đề Document"

### Manual Workflow

If you need more control, follow these steps:

Ensure pandoc is available:
# Auto-downloaded to /tmp/pandoc-3.1.11/bin/pandoc on first use
# Or use system pandoc if available



Convert Markdown to DOCX:
/tmp/pandoc-3.1.11/bin/pandoc input.md -o output.docx



Upload to Drive (auto-converts to Google Docs):
gog drive upload output.docx



Result: Google Drive returns a link to the converted Google Doc

### Script Reference

See scripts/gdocs-create.sh for the helper script that automates this workflow.

### Example

# Create a report from markdown
echo "# Báo Cáo\\n\\nNội dung..." > /tmp/report.md
gdocs-create.sh /tmp/report.md "Báo Cáo Tháng 2"

# Output: https://docs.google.com/document/d/xxxxx/edit

### Notes

Google Drive automatically converts DOCX to Google Docs format on upload
The resulting document is fully editable in Google Docs
Original DOCX file remains in Drive but can be deleted if only Google Docs version is needed
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: techlaai
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T02:04:57.900Z
- Expires at: 2026-05-07T02:04:57.900Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gdocs-markdown)
- [Send to Agent page](https://openagent3.xyz/skills/gdocs-markdown/agent)
- [JSON manifest](https://openagent3.xyz/skills/gdocs-markdown/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gdocs-markdown/agent.md)
- [Download page](https://openagent3.xyz/downloads/gdocs-markdown)