{
  "schemaVersion": "1.0",
  "item": {
    "slug": "removebg-api",
    "name": "removebg-api",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rolandkakonyi/removebg-api",
    "canonicalUrl": "https://clawhub.ai/rolandkakonyi/removebg-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/removebg-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=removebg-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/removebg_api.py"
    ],
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/removebg-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/removebg-api",
    "agentPageUrl": "https://openagent3.xyz/skills/removebg-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/removebg-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/removebg-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": "removebg-api",
        "body": "Use remove.bg for high-quality background removal."
      },
      {
        "title": "API key setup",
        "body": "Create/sign in at https://www.remove.bg/dashboard#api-key\nCreate an API key\nConfigure REMOVE_BG_API_KEY in OpenClaw config (openclaw.json) so it is present in runtime environment."
      },
      {
        "title": "Important",
        "body": "Skill metadata (requires.env) declares that REMOVE_BG_API_KEY is required.\nMetadata does not auto-load shell env files.\nPreferred: provide key via OpenClaw config-managed environment."
      },
      {
        "title": "Usage (preferred: uv)",
        "body": "Run from the skill directory:\n\nuv run scripts/removebg_api.py --input /path/in.jpg --output /path/out.png\n\nOptions:\n\n--size auto|preview|full|4k (default: auto)\n\n\n--format png|jpg|zip (default: png)\nSecurity defaults:\n\n\n--input must be a real image file inside the OpenClaw workspace.\n\n\nAllowed input types: .png, .jpg, .jpeg, .webp (extension + magic-byte validation).\n\n\n--output must be under outputs/removebg-api/ inside the workspace.\n\n\nLarge/abusive files are rejected (size + dimension limits).\n\n\nThis prevents arbitrary file read/write outside normal skill boundaries.\n\nExample:\n\nuv run scripts/removebg_api.py --input ./input.jpg --output ./output.png --size auto --format png"
      },
      {
        "title": "Fallback (without uv)",
        "body": "python3 scripts/removebg_api.py --input ./input.jpg --output ./output.png"
      },
      {
        "title": "Output",
        "body": "Writes result file to --output\nPrints MEDIA: line for chat workflows"
      },
      {
        "title": "Notes",
        "body": "API usage may consume free credits / paid quota.\nNo absolute-path requirement for skill docs; use local paths in examples."
      }
    ],
    "body": "removebg-api\n\nUse remove.bg for high-quality background removal.\n\nAPI key setup\nCreate/sign in at https://www.remove.bg/dashboard#api-key\nCreate an API key\nConfigure REMOVE_BG_API_KEY in OpenClaw config (openclaw.json) so it is present in runtime environment.\nImportant\nSkill metadata (requires.env) declares that REMOVE_BG_API_KEY is required.\nMetadata does not auto-load shell env files.\nPreferred: provide key via OpenClaw config-managed environment.\nUsage (preferred: uv)\n\nRun from the skill directory:\n\nuv run scripts/removebg_api.py --input /path/in.jpg --output /path/out.png\n\n\nOptions:\n\n--size auto|preview|full|4k (default: auto)\n\n--format png|jpg|zip (default: png) Security defaults:\n\n--input must be a real image file inside the OpenClaw workspace.\n\nAllowed input types: .png, .jpg, .jpeg, .webp (extension + magic-byte validation).\n\n--output must be under outputs/removebg-api/ inside the workspace.\n\nLarge/abusive files are rejected (size + dimension limits).\n\nThis prevents arbitrary file read/write outside normal skill boundaries.\n\nExample:\n\nuv run scripts/removebg_api.py --input ./input.jpg --output ./output.png --size auto --format png\n\nFallback (without uv)\npython3 scripts/removebg_api.py --input ./input.jpg --output ./output.png\n\nOutput\nWrites result file to --output\nPrints MEDIA: line for chat workflows\nNotes\nAPI usage may consume free credits / paid quota.\nNo absolute-path requirement for skill docs; use local paths in examples."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/rolandkakonyi/removebg-api",
    "publisherUrl": "https://clawhub.ai/rolandkakonyi/removebg-api",
    "owner": "rolandkakonyi",
    "version": "0.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/removebg-api",
    "downloadUrl": "https://openagent3.xyz/downloads/removebg-api",
    "agentUrl": "https://openagent3.xyz/skills/removebg-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/removebg-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/removebg-api/agent.md"
  }
}