# Send Mog 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mogcli",
    "name": "Mog",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/visionik/mogcli",
    "canonicalUrl": "https://clawhub.ai/visionik/mogcli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mogcli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mogcli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "Taskfile.yml",
      "cmd/mog/main.go",
      "internal/cli/ai_help.go"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mogcli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T09:12:25.591Z",
      "expiresAt": "2026-05-07T09:12:25.591Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mogcli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mogcli",
        "contentDisposition": "attachment; filename=\"mogcli-0.3.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mogcli"
      },
      "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/mogcli"
    },
    "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/mogcli",
    "downloadUrl": "https://openagent3.xyz/downloads/mogcli",
    "agentUrl": "https://openagent3.xyz/skills/mogcli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mogcli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mogcli/agent.md"
  }
}
```
## Documentation

### mog — Microsoft Ops Gadget

CLI for Microsoft 365: Mail, Calendar, OneDrive, Contacts, Tasks, Word, PowerPoint, Excel, OneNote.

The Microsoft counterpart to gog (Google Ops Gadget). Same patterns, different cloud.

### Quick Reference

For comprehensive usage, run:

mog --ai-help

This outputs the full dashdash-compliant documentation including:

Setup/Prerequisites
All commands and options
Date/time formats
Examples (positive and negative)
Troubleshooting
Slug system explanation
gog compatibility notes

### Modules

ModuleCommandsmailsearch, get, send, folders, drafts, attachmentcalendarlist, create, get, update, delete, calendars, respond, freebusy, acldrivels, search, download, upload, mkdir, move, rename, copy, rmcontactslist, search, get, create, update, delete, directorytaskslists, list, add, done, undo, delete, clearwordlist, export, copypptlist, export, copyexcellist, get, update, append, create, metadata, tables, add-sheet, clear, copy, exportonenotenotebooks, sections, pages, get, create-notebook, create-section, create-page, delete, search

### Quick Start

# Mail
mog mail search "from:someone" --max 10
mog mail send --to a@b.com --subject "Hi" --body "Hello"
mog mail send --to a@b.com --subject "Report" --body-file report.md
mog mail send --to a@b.com --subject "Newsletter" --body-html "<h1>Hello</h1>"
cat draft.txt | mog mail send --to a@b.com --subject "Hi" --body-file -

# Calendar
mog calendar list
mog calendar create --summary "Meeting" --from 2025-01-15T10:00:00 --to 2025-01-15T11:00:00
mog calendar freebusy alice@example.com bob@example.com

# Drive
mog drive ls
mog drive upload ./file.pdf
mog drive download <slug> --out ./file.pdf

# Tasks
mog tasks list
mog tasks add "Buy milk" --due tomorrow
mog tasks clear

# Contacts
mog contacts list
mog contacts directory "john"

# Excel
mog excel list
mog excel get <id> Sheet1 A1:D10
mog excel update <id> Sheet1 A1:B2 val1 val2 val3 val4
mog excel append <id> TableName col1 col2 col3

# OneNote
mog onenote notebooks
mog onenote search "meeting notes"

### Slugs

mog generates 8-character slugs for Microsoft's long GUIDs:

a3f2c891 instead of AQMkADAwATMzAGZmAS04MDViLTRiNzgt...
All commands accept slugs or full IDs
Use --verbose to see full IDs

### Aliases

mog cal → mog calendar
mog todo → mog tasks

### Credential Storage

OAuth tokens stored in config directory (0600 permissions):

PlatformLocationmacOS~/.config/mog/Linux~/.config/mog/Windows%USERPROFILE%\\.config\\mog\\

Files:

tokens.json - OAuth tokens (encrypted at rest by OS)
settings.json - Client ID
slugs.json - Slug cache

### See Also

mog --ai-help - Full documentation
mog <command> --help - Command-specific help
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: visionik
- Version: 0.3.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-30T09:12:25.591Z
- Expires at: 2026-05-07T09:12:25.591Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mogcli)
- [Send to Agent page](https://openagent3.xyz/skills/mogcli/agent)
- [JSON manifest](https://openagent3.xyz/skills/mogcli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mogcli/agent.md)
- [Download page](https://openagent3.xyz/downloads/mogcli)