{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ugc-manual",
    "name": "UGC Manual",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/PauldeLavallaz/ugc-manual",
    "canonicalUrl": "https://clawhub.ai/PauldeLavallaz/ugc-manual",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ugc-manual",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ugc-manual",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/generate.py",
      "scripts/pyproject.toml"
    ],
    "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/ugc-manual"
    },
    "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/ugc-manual",
    "agentPageUrl": "https://openagent3.xyz/skills/ugc-manual/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ugc-manual/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ugc-manual/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": "UGC-Manual",
        "body": "Generate lip-sync videos by combining an image with a custom audio file using ComfyDeploy's UGC-MANUAL workflow."
      },
      {
        "title": "Overview",
        "body": "UGC-Manual takes:\n\nAn image (person/character with visible face)\nAn audio file (user's voice recording)\n\nAnd produces a video where the person in the image lip-syncs to the audio."
      },
      {
        "title": "API Details",
        "body": "Endpoint: https://api.comfydeploy.com/api/run/deployment/queue\nDeployment ID: 075ce7d3-81a6-4e3e-ab0e-7a25edf601b5"
      },
      {
        "title": "Required Inputs",
        "body": "InputDescriptionFormatsimageImage with a visible faceJPG, PNGinput_audioAudio file to lip-syncMP3, WAV, OGG"
      },
      {
        "title": "Usage",
        "body": "uv run ~/.clawdbot/skills/ugc-manual/scripts/generate.py \\\n  --image \"path/to/image.jpg\" \\\n  --audio \"path/to/audio.mp3\" \\\n  --output \"output-video.mp4\""
      },
      {
        "title": "With URLs:",
        "body": "uv run ~/.clawdbot/skills/ugc-manual/scripts/generate.py \\\n  --image \"https://example.com/image.jpg\" \\\n  --audio \"https://example.com/audio.mp3\" \\\n  --output \"result.mp4\""
      },
      {
        "title": "Typical Use Cases",
        "body": "Custom voice recordings - User records their own audio via Telegram/WhatsApp\nPre-generated TTS - Audio generated externally (ElevenLabs, etc.)\nMusic/sound sync - Sync mouth movements to any audio"
      },
      {
        "title": "Example Pipeline",
        "body": "# 1. Convert Telegram voice message to MP3 (if needed)\nffmpeg -i voice.ogg -acodec libmp3lame -q:a 2 voice.mp3\n\n# 2. Generate lip-sync video\nuv run ugc-manual... --image face.jpg --audio voice.mp3 --output video.mp4"
      },
      {
        "title": "Difference from VEED-UGC",
        "body": "FeatureUGC-ManualVEED-UGCAudio sourceUser providesGenerated from briefScriptN/AAuto-generatedVoiceUser's recordingElevenLabs TTSUse caseCustom audioAutomated content"
      },
      {
        "title": "Notes",
        "body": "Image should have a clearly visible face (frontal or 3/4 view)\nAudio quality affects output quality\nProcessing time: ~2-5 minutes depending on audio length\nAudio auto-conversion: The script automatically converts any audio format (MP3, OGG, M4A, etc.) to WAV PCM 16-bit mono 48kHz before sending to FabricLipsync\nRequires ffmpeg installed on the system"
      }
    ],
    "body": "UGC-Manual\n\nGenerate lip-sync videos by combining an image with a custom audio file using ComfyDeploy's UGC-MANUAL workflow.\n\nOverview\n\nUGC-Manual takes:\n\nAn image (person/character with visible face)\nAn audio file (user's voice recording)\n\nAnd produces a video where the person in the image lip-syncs to the audio.\n\nAPI Details\n\nEndpoint: https://api.comfydeploy.com/api/run/deployment/queue Deployment ID: 075ce7d3-81a6-4e3e-ab0e-7a25edf601b5\n\nRequired Inputs\nInput\tDescription\tFormats\nimage\tImage with a visible face\tJPG, PNG\ninput_audio\tAudio file to lip-sync\tMP3, WAV, OGG\nUsage\nuv run ~/.clawdbot/skills/ugc-manual/scripts/generate.py \\\n  --image \"path/to/image.jpg\" \\\n  --audio \"path/to/audio.mp3\" \\\n  --output \"output-video.mp4\"\n\nWith URLs:\nuv run ~/.clawdbot/skills/ugc-manual/scripts/generate.py \\\n  --image \"https://example.com/image.jpg\" \\\n  --audio \"https://example.com/audio.mp3\" \\\n  --output \"result.mp4\"\n\nWorkflow Integration\nTypical Use Cases\nCustom voice recordings - User records their own audio via Telegram/WhatsApp\nPre-generated TTS - Audio generated externally (ElevenLabs, etc.)\nMusic/sound sync - Sync mouth movements to any audio\nExample Pipeline\n# 1. Convert Telegram voice message to MP3 (if needed)\nffmpeg -i voice.ogg -acodec libmp3lame -q:a 2 voice.mp3\n\n# 2. Generate lip-sync video\nuv run ugc-manual... --image face.jpg --audio voice.mp3 --output video.mp4\n\nDifference from VEED-UGC\nFeature\tUGC-Manual\tVEED-UGC\nAudio source\tUser provides\tGenerated from brief\nScript\tN/A\tAuto-generated\nVoice\tUser's recording\tElevenLabs TTS\nUse case\tCustom audio\tAutomated content\nNotes\nImage should have a clearly visible face (frontal or 3/4 view)\nAudio quality affects output quality\nProcessing time: ~2-5 minutes depending on audio length\nAudio auto-conversion: The script automatically converts any audio format (MP3, OGG, M4A, etc.) to WAV PCM 16-bit mono 48kHz before sending to FabricLipsync\nRequires ffmpeg installed on the system"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/PauldeLavallaz/ugc-manual",
    "publisherUrl": "https://clawhub.ai/PauldeLavallaz/ugc-manual",
    "owner": "PauldeLavallaz",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ugc-manual",
    "downloadUrl": "https://openagent3.xyz/downloads/ugc-manual",
    "agentUrl": "https://openagent3.xyz/skills/ugc-manual/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ugc-manual/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ugc-manual/agent.md"
  }
}