{
  "schemaVersion": "1.0",
  "item": {
    "slug": "immich-api",
    "name": "Immich API Connector",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ninjazan420/immich-api",
    "canonicalUrl": "https://clawhub.ai/ninjazan420/immich-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/immich-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=immich-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "references/api-endpoints.md",
      "scripts/download_album.py",
      "scripts/upload_photos.py",
      "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/immich-api"
    },
    "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/immich-api",
    "agentPageUrl": "https://openagent3.xyz/skills/immich-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/immich-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/immich-api/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": "Option 1: Environment Variables",
        "body": "Windows (PowerShell):\n\n$env:IMMICH_URL = \"https://your-immich-instance.com\"\n$env:IMMICH_API_KEY = \"your-api-key-here\"\n\nLinux/macOS (bash):\n\nexport IMMICH_URL=\"https://your-immich-instance.com\"\nexport IMMICH_API_KEY=\"your-api-key-here\"\n\nGenerate API Key in Immich: User Profile → API Keys → Create API Key"
      },
      {
        "title": "Option 2: CLI Arguments",
        "body": "python scripts/upload_photos.py --url \"https://your-immich.com\" --api-key \"your-key\" --folder ./photos\npython scripts/download_album.py --url \"https://your-immich.com\" --api-key \"your-key\" --album-id \"abc123\" --output ./downloads"
      },
      {
        "title": "Authentication",
        "body": "# Test connection\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/server-info/ping\""
      },
      {
        "title": "Base URL",
        "body": "{IMMICH_URL}/api"
      },
      {
        "title": "Albums",
        "body": "# List albums\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/albums\"\n\n# Create album\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"albumName\":\"My Album\"}' \"$IMMICH_URL/api/albums\"\n\n# Get album assets\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/albums/{albumId}\""
      },
      {
        "title": "Assets",
        "body": "# Get all assets (paginated)\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/assets?limit=100\"\n\n# Upload asset\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" \\\n  -F \"file=@/path/to/photo.jpg\" \\\n  \"$IMMICH_URL/api/assets\"\n\n# Get thumbnail\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \\\n  \"$IMMICH_URL/api/assets/{assetId}/thumbnail?format=jpeg\" -o thumb.jpg\n\n# Get original file\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \\\n  \"$IMMICH_URL/api/assets/{assetId}/original\" -o original.jpg"
      },
      {
        "title": "Users",
        "body": "# List users\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/users\"\n\n# Get current user\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/user/me\""
      },
      {
        "title": "Search",
        "body": "# Search assets\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"query\":\"beach\",\"take\":10}' \"$IMMICH_URL/api/search/assets\""
      },
      {
        "title": "Libraries",
        "body": "# List libraries\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/libraries\"\n\n# Scan library\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" \\\n  \"$IMMICH_URL/api/libraries/{libraryId}/scan\""
      },
      {
        "title": "Jobs",
        "body": "# Get job statuses\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/jobs\"\n\n# Trigger job (e.g., thumbnail generation)\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"jobName\":\"thumbnail-generation\",\"force\":true}' \"$IMMICH_URL/api/jobs\""
      },
      {
        "title": "Script Usage",
        "body": "Use the bundled scripts in scripts/ for complex operations:\n\nupload_photos.py - Bulk upload photos\ndownload_album.py - Download entire album\nsync_library.py - Sync external library\n\nSee references/api-endpoints.md for complete endpoint reference."
      }
    ],
    "body": "Immich API Bridge\nConfiguration\nOption 1: Environment Variables\n\nWindows (PowerShell):\n\n$env:IMMICH_URL = \"https://your-immich-instance.com\"\n$env:IMMICH_API_KEY = \"your-api-key-here\"\n\n\nLinux/macOS (bash):\n\nexport IMMICH_URL=\"https://your-immich-instance.com\"\nexport IMMICH_API_KEY=\"your-api-key-here\"\n\n\nGenerate API Key in Immich: User Profile → API Keys → Create API Key\n\nOption 2: CLI Arguments\npython scripts/upload_photos.py --url \"https://your-immich.com\" --api-key \"your-key\" --folder ./photos\npython scripts/download_album.py --url \"https://your-immich.com\" --api-key \"your-key\" --album-id \"abc123\" --output ./downloads\n\nQuick Start\nAuthentication\n# Test connection\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/server-info/ping\"\n\nBase URL\n{IMMICH_URL}/api\n\nCommon Operations\nAlbums\n# List albums\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/albums\"\n\n# Create album\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"albumName\":\"My Album\"}' \"$IMMICH_URL/api/albums\"\n\n# Get album assets\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/albums/{albumId}\"\n\nAssets\n# Get all assets (paginated)\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/assets?limit=100\"\n\n# Upload asset\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" \\\n  -F \"file=@/path/to/photo.jpg\" \\\n  \"$IMMICH_URL/api/assets\"\n\n# Get thumbnail\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \\\n  \"$IMMICH_URL/api/assets/{assetId}/thumbnail?format=jpeg\" -o thumb.jpg\n\n# Get original file\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \\\n  \"$IMMICH_URL/api/assets/{assetId}/original\" -o original.jpg\n\nUsers\n# List users\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/users\"\n\n# Get current user\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/user/me\"\n\nSearch\n# Search assets\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"query\":\"beach\",\"take\":10}' \"$IMMICH_URL/api/search/assets\"\n\nLibraries\n# List libraries\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/libraries\"\n\n# Scan library\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" \\\n  \"$IMMICH_URL/api/libraries/{libraryId}/scan\"\n\nJobs\n# Get job statuses\ncurl -H \"x-api-key: $IMMICH_API_KEY\" \"$IMMICH_URL/api/jobs\"\n\n# Trigger job (e.g., thumbnail generation)\ncurl -X POST -H \"x-api-key: $IMMICH_API_KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"jobName\":\"thumbnail-generation\",\"force\":true}' \"$IMMICH_URL/api/jobs\"\n\nScript Usage\n\nUse the bundled scripts in scripts/ for complex operations:\n\nupload_photos.py - Bulk upload photos\ndownload_album.py - Download entire album\nsync_library.py - Sync external library\n\nSee references/api-endpoints.md for complete endpoint reference."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ninjazan420/immich-api",
    "publisherUrl": "https://clawhub.ai/ninjazan420/immich-api",
    "owner": "ninjazan420",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/immich-api",
    "downloadUrl": "https://openagent3.xyz/downloads/immich-api",
    "agentUrl": "https://openagent3.xyz/skills/immich-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/immich-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/immich-api/agent.md"
  }
}