# Send Glasses to Social 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": "glasses-to-social",
    "name": "Glasses to Social",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/Junebugg1214/glasses-to-social",
    "canonicalUrl": "https://clawhub.ai/Junebugg1214/glasses-to-social",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/glasses-to-social",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=glasses-to-social",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/check-new-photos.sh",
      "scripts/mark-processed.sh"
    ],
    "downloadMode": "redirect",
    "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/glasses-to-social"
    },
    "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/glasses-to-social",
    "downloadUrl": "https://openagent3.xyz/downloads/glasses-to-social",
    "agentUrl": "https://openagent3.xyz/skills/glasses-to-social/agent",
    "manifestUrl": "https://openagent3.xyz/skills/glasses-to-social/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/glasses-to-social/agent.md"
  }
}
```
## Documentation

### Glasses-to-Social

Transform photos from smart glasses into social media posts with AI-generated captions.

### Overview

This skill creates a pipeline from smart glasses (Meta Ray-Ban, etc.) to social media:

User snaps photo with glasses
Photo syncs to Google Drive folder
Agent detects new photo, analyzes with vision
Agent drafts post matching user's voice/style
User approves, agent publishes

### 1. Configure Google Drive Folder

Create a shared Google Drive folder for glasses photos:

# User creates folder "Glasses-to-Social" in Google Drive
# Share with "Anyone with link can view"
# Copy the folder URL

### 2. Set Up Config

Create config file at glasses-to-social/config.json:

{
  "googleDriveFolderUrl": "https://drive.google.com/drive/folders/YOUR_FOLDER_ID",
  "folderId": "YOUR_FOLDER_ID",
  "downloadPath": "./glasses-to-social/downloads",
  "processedFile": "./glasses-to-social/data/processed.json",
  "defaultHashtags": ["#MedicalAI", "#HealthTech"],
  "autoPost": false
}

### 3. Configure Glasses Auto-Sync

For Meta Ray-Ban glasses:

Open Meta View app on phone
Settings > Gallery > Enable "Import Automatically"
iOS: Enable Google Photos backup (syncs Camera Roll)
Create iOS Shortcut to copy new Meta photos to Google Drive folder

### Manual Check

Ask the agent to check for new photos:

Check my glasses folder for new photos

### Automated Monitoring

Set up a cron job to check periodically:

{
  "name": "Glasses-to-Social: Check photos",
  "schedule": {"kind": "cron", "expr": "*/15 * * * *", "tz": "UTC"},
  "payload": {
    "message": "Check the Glasses-to-Social folder for new photos. If found, analyze and draft a tweet."
  }
}

### Processing Flow

When a new photo is detected:

Download from Google Drive using gdown:
gdown --folder "FOLDER_URL" -O ./downloads/ --remaining-ok



Compare against processed list in data/processed.json


For new photos, analyze with vision:

Describe the scene/subject
Identify relevant context for social post
Note any text, people, or notable elements



Draft post matching user's voice:

Keep it concise and authentic
Add relevant hashtags
First-person perspective works well for glasses content



Send draft to user for approval:

Include image preview
Show proposed caption
Wait for "POST" confirmation or edits



On approval, publish to configured platform (X/Twitter, etc.)


Mark photo as processed in data/processed.json

### check-new-photos.sh

Checks Google Drive folder for new images:

scripts/check-new-photos.sh

Output format when new photo found:

NEW_PHOTO_PATH:/path/to/downloaded/photo.jpg

### File Tracking

Track processed photos in data/processed.json:

{
  "processed": ["photo1.jpg", "photo2.jpg"],
  "pending": []
}

### Tips

First-person POV content performs well ("Look what I just saw...")
Keep captions authentic, not overly polished
Works great for conferences, interesting sightings, daily moments
Consider time-of-day context when drafting

### Requirements

gdown Python package for Google Drive access
Vision-capable model for image analysis
Twitter/X credentials for posting (optional)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Junebugg1214
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/glasses-to-social)
- [Send to Agent page](https://openagent3.xyz/skills/glasses-to-social/agent)
- [JSON manifest](https://openagent3.xyz/skills/glasses-to-social/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/glasses-to-social/agent.md)
- [Download page](https://openagent3.xyz/downloads/glasses-to-social)