# Send mac-node-snapshot 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": "mac-node-snapshot",
    "name": "mac-node-snapshot",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/taozhe6/mac-node-snapshot",
    "canonicalUrl": "https://clawhub.ai/taozhe6/mac-node-snapshot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mac-node-snapshot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mac-node-snapshot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mac-node-snapshot",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T01:07:54.309Z",
      "expiresAt": "2026-05-09T01:07:54.309Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mac-node-snapshot",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mac-node-snapshot",
        "contentDisposition": "attachment; filename=\"mac-node-snapshot-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mac-node-snapshot"
      },
      "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/mac-node-snapshot"
    },
    "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/mac-node-snapshot",
    "downloadUrl": "https://openagent3.xyz/downloads/mac-node-snapshot",
    "agentUrl": "https://openagent3.xyz/skills/mac-node-snapshot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mac-node-snapshot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mac-node-snapshot/agent.md"
  }
}
```
## Documentation

### Overview

Uses node screen.record to record a 1-second clip and extract a high-quality PNG frame. This workflow bypasses common screencapture permission issues and ensures a reliable image return.

### Quick start (single command, no scripts)

All paths are relative to {skill}.

mkdir -p "{skill}/tmp" \\
&& openclaw nodes screen record --node "<node>" --duration 1000 --fps 10 --no-audio --out "{skill}/tmp/snap.mp4" \\
&& ffmpeg -hide_banner -loglevel error -y -ss 00:00:00 -i "{skill}/tmp/snap.mp4" -frames:v 1 "{skill}/tmp/snap.png"

### When to use (trigger phrases)

Use this skill when the user asks:

"Take a screenshot"
"What is on my screen?"
"Capture the screen"
"Screenshot via screen.record"

### Notes

Requirements: ffmpeg (ask before installing).
If the frame is black, ask the user to wake the screen and retry.
Use read on {skill}/tmp/snap.png to attach it to the reply.

### Troubleshooting

screen_record fails (node disconnected): check nodes status, ensure OpenClaw app is running/paired.
screenRecording false: must grant Screen Recording in System Settings; cannot be bypassed.
Black frame: screen may be asleep/locked; ask the user to wake and retry.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: taozhe6
- Version: 1.0.0
## 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-05-02T01:07:54.309Z
- Expires at: 2026-05-09T01:07:54.309Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mac-node-snapshot)
- [Send to Agent page](https://openagent3.xyz/skills/mac-node-snapshot/agent)
- [JSON manifest](https://openagent3.xyz/skills/mac-node-snapshot/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mac-node-snapshot/agent.md)
- [Download page](https://openagent3.xyz/downloads/mac-node-snapshot)