{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clippy",
    "name": "Clippy - Microsoft 365 CLI",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/foeken/clippy",
    "canonicalUrl": "https://clawhub.ai/foeken/clippy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clippy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clippy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clippy"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/clippy",
    "agentPageUrl": "https://openagent3.xyz/skills/clippy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clippy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clippy/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Clippy - Microsoft 365 CLI",
        "body": "Source: https://github.com/foeken/clippy\n\nWorks through the M365 web UI via browser automation (Playwright), not the Graph API. No Azure AD app registration required - just login with your browser."
      },
      {
        "title": "Install",
        "body": "git clone https://github.com/foeken/clippy.git\ncd clippy && bun install\nbun run src/cli.ts --help\n\nOr link globally: bun link"
      },
      {
        "title": "Authentication",
        "body": "# Interactive login (opens browser, establishes session)\nclippy login --interactive\n\n# Check auth status\nclippy whoami"
      },
      {
        "title": "Keepalive (recommended)",
        "body": "Keep a browser session alive to prevent token expiry:\n\n# Start keepalive (keeps browser open, refreshes every 10min)\nclippy keepalive --interval 10\n\nFor persistent operation, set up as a launchd service (macOS) or systemd (Linux).\n\nHealth monitoring: Keepalive writes to ~/.config/clippy/keepalive-health.txt on each successful refresh. Check if this file is stale (>15min) to detect failures."
      },
      {
        "title": "Calendar",
        "body": "# Today's events\nclippy calendar\n\n# Specific day\nclippy calendar --day tomorrow\nclippy calendar --day monday\nclippy calendar --day 2024-02-15\n\n# Week view\nclippy calendar --week\n\n# With details (description, attendees)\nclippy calendar --details"
      },
      {
        "title": "Create Events",
        "body": "clippy create-event \"Title\" 09:00 10:00\n\n# Full options\nclippy create-event \"Meeting\" 14:00 15:00 \\\n  --day tomorrow \\\n  --description \"Meeting notes\" \\\n  --attendees \"alice@company.com,bob@company.com\" \\\n  --teams \\\n  --find-room\n\n# Recurring\nclippy create-event \"Standup\" 09:00 09:15 --repeat daily\nclippy create-event \"Sync\" 14:00 15:00 --repeat weekly --days mon,wed,fri"
      },
      {
        "title": "Update/Delete Events",
        "body": "clippy update-event 1 --title \"New Title\"\nclippy update-event 1 --start 10:00 --end 11:00\nclippy delete-event 1\nclippy delete-event 1 --message \"Need to reschedule\""
      },
      {
        "title": "Respond to Invitations",
        "body": "clippy respond                           # List pending\nclippy respond accept --id <eventId>\nclippy respond decline --id <eventId> --message \"Conflict\"\nclippy respond tentative --id <eventId>"
      },
      {
        "title": "Find Meeting Times",
        "body": "clippy findtime\nclippy findtime --attendees \"alice@company.com,bob@company.com\"\nclippy findtime --duration 60 --days 5"
      },
      {
        "title": "Email",
        "body": "# Inbox\nclippy mail\nclippy mail --unread\nclippy mail -n 20\nclippy mail --search \"invoice\"\n\n# Other folders\nclippy mail sent\nclippy mail drafts\nclippy mail archive\n\n# Read email\nclippy mail -r <number>\n\n# Download attachments\nclippy mail -d <number> -o ~/Downloads"
      },
      {
        "title": "Send Email",
        "body": "clippy send \\\n  --to \"recipient@example.com\" \\\n  --subject \"Subject\" \\\n  --body \"Message body\"\n\n# With CC, attachments, markdown\nclippy send \\\n  --to \"alice@example.com\" \\\n  --cc \"manager@example.com\" \\\n  --subject \"Report\" \\\n  --body \"**See attached**\" \\\n  --markdown \\\n  --attach \"report.pdf\""
      },
      {
        "title": "Reply/Forward",
        "body": "clippy mail --reply <number> --message \"Thanks!\"\nclippy mail --reply-all <number> --message \"Got it\"\nclippy mail --forward <number> --to-addr \"colleague@example.com\""
      },
      {
        "title": "Email Actions",
        "body": "clippy mail --mark-read <number>\nclippy mail --flag <number>\nclippy mail --move <number> --to archive"
      },
      {
        "title": "People/Room Search",
        "body": "clippy find \"john\"                       # People\nclippy find \"conference\" --rooms         # Rooms"
      },
      {
        "title": "JSON Output",
        "body": "clippy calendar --json\nclippy mail --json"
      },
      {
        "title": "Configuration",
        "body": "Profile directory can be overridden:\n\nexport CLIPPY_PROFILE_DIR=~/.config/clippy/my-profile"
      }
    ],
    "body": "Clippy - Microsoft 365 CLI\n\nSource: https://github.com/foeken/clippy\n\nWorks through the M365 web UI via browser automation (Playwright), not the Graph API. No Azure AD app registration required - just login with your browser.\n\nInstall\ngit clone https://github.com/foeken/clippy.git\ncd clippy && bun install\nbun run src/cli.ts --help\n\n\nOr link globally: bun link\n\nAuthentication\n# Interactive login (opens browser, establishes session)\nclippy login --interactive\n\n# Check auth status\nclippy whoami\n\nKeepalive (recommended)\n\nKeep a browser session alive to prevent token expiry:\n\n# Start keepalive (keeps browser open, refreshes every 10min)\nclippy keepalive --interval 10\n\n\nFor persistent operation, set up as a launchd service (macOS) or systemd (Linux).\n\nHealth monitoring: Keepalive writes to ~/.config/clippy/keepalive-health.txt on each successful refresh. Check if this file is stale (>15min) to detect failures.\n\nCalendar\n# Today's events\nclippy calendar\n\n# Specific day\nclippy calendar --day tomorrow\nclippy calendar --day monday\nclippy calendar --day 2024-02-15\n\n# Week view\nclippy calendar --week\n\n# With details (description, attendees)\nclippy calendar --details\n\nCreate Events\nclippy create-event \"Title\" 09:00 10:00\n\n# Full options\nclippy create-event \"Meeting\" 14:00 15:00 \\\n  --day tomorrow \\\n  --description \"Meeting notes\" \\\n  --attendees \"alice@company.com,bob@company.com\" \\\n  --teams \\\n  --find-room\n\n# Recurring\nclippy create-event \"Standup\" 09:00 09:15 --repeat daily\nclippy create-event \"Sync\" 14:00 15:00 --repeat weekly --days mon,wed,fri\n\nUpdate/Delete Events\nclippy update-event 1 --title \"New Title\"\nclippy update-event 1 --start 10:00 --end 11:00\nclippy delete-event 1\nclippy delete-event 1 --message \"Need to reschedule\"\n\nRespond to Invitations\nclippy respond                           # List pending\nclippy respond accept --id <eventId>\nclippy respond decline --id <eventId> --message \"Conflict\"\nclippy respond tentative --id <eventId>\n\nFind Meeting Times\nclippy findtime\nclippy findtime --attendees \"alice@company.com,bob@company.com\"\nclippy findtime --duration 60 --days 5\n\nEmail\n# Inbox\nclippy mail\nclippy mail --unread\nclippy mail -n 20\nclippy mail --search \"invoice\"\n\n# Other folders\nclippy mail sent\nclippy mail drafts\nclippy mail archive\n\n# Read email\nclippy mail -r <number>\n\n# Download attachments\nclippy mail -d <number> -o ~/Downloads\n\nSend Email\nclippy send \\\n  --to \"recipient@example.com\" \\\n  --subject \"Subject\" \\\n  --body \"Message body\"\n\n# With CC, attachments, markdown\nclippy send \\\n  --to \"alice@example.com\" \\\n  --cc \"manager@example.com\" \\\n  --subject \"Report\" \\\n  --body \"**See attached**\" \\\n  --markdown \\\n  --attach \"report.pdf\"\n\nReply/Forward\nclippy mail --reply <number> --message \"Thanks!\"\nclippy mail --reply-all <number> --message \"Got it\"\nclippy mail --forward <number> --to-addr \"colleague@example.com\"\n\nEmail Actions\nclippy mail --mark-read <number>\nclippy mail --flag <number>\nclippy mail --move <number> --to archive\n\nPeople/Room Search\nclippy find \"john\"                       # People\nclippy find \"conference\" --rooms         # Rooms\n\nJSON Output\nclippy calendar --json\nclippy mail --json\n\nConfiguration\n\nProfile directory can be overridden:\n\nexport CLIPPY_PROFILE_DIR=~/.config/clippy/my-profile"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/foeken/clippy",
    "publisherUrl": "https://clawhub.ai/foeken/clippy",
    "owner": "foeken",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clippy",
    "downloadUrl": "https://openagent3.xyz/downloads/clippy",
    "agentUrl": "https://openagent3.xyz/skills/clippy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clippy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clippy/agent.md"
  }
}