{
  "schemaVersion": "1.0",
  "item": {
    "slug": "open-animate",
    "name": "Open Animate",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/jacobcwright/open-animate",
    "canonicalUrl": "https://clawhub.ai/jacobcwright/open-animate",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/open-animate",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-animate",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/animation-cookbook.md",
      "references/asset-generation.md",
      "references/composition-patterns.md",
      "references/media-guide.md",
      "references/scene-config.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",
      "slug": "open-animate",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T20:54:36.187Z",
      "expiresAt": "2026-05-09T20:54:36.187Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-animate",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-animate",
        "contentDisposition": "attachment; filename=\"open-animate-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "open-animate"
      },
      "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/open-animate"
    },
    "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/open-animate",
    "agentPageUrl": "https://openagent3.xyz/skills/open-animate/agent",
    "manifestUrl": "https://openagent3.xyz/skills/open-animate/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/open-animate/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": "Open Animate — Creative Suite for Agents",
        "body": "Create professional motion graphics and generate visual assets. Describe what you want. Get an MP4."
      },
      {
        "title": "Prerequisites",
        "body": "This skill builds on Remotion skills for core Remotion API patterns:\n\nnpx skills add remotion-dev/skills"
      },
      {
        "title": "1. Initialize project",
        "body": "npx oanim init my-video\ncd my-video"
      },
      {
        "title": "2. Compose using @oanim/core",
        "body": "import { fadeUp, popIn, Background, SafeArea, palettes } from '@oanim/core';\n\nSee references/animation-cookbook.md for the full presets reference."
      },
      {
        "title": "3. Preview",
        "body": "npx remotion studio"
      },
      {
        "title": "4. Render to MP4",
        "body": "npx oanim render"
      },
      {
        "title": "5. Generate and use media assets (optional)",
        "body": "# Generate image, video, or audio\nnpx oanim assets gen-image --prompt \"dark gradient abstract\" --out public/bg.png\nnpx oanim assets run --model fal-ai/kling-video/v1/standard/text-to-video \\\n  --input '{\"prompt\":\"cinematic abstract motion\",\"duration\":\"5\"}' --out public/clip.mp4\nnpx oanim assets run --model fal-ai/stable-audio \\\n  --input '{\"prompt\":\"ambient electronic, no vocals\",\"duration_in_seconds\":30}' --out public/music.mp3\n\nThen use in your composition:\n\nimport { Img, OffthreadVideo, Audio, staticFile } from 'remotion';\n\n<Img src={staticFile('bg.png')} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />\n<OffthreadVideo src={staticFile('clip.mp4')} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />\n<Audio src={staticFile('music.mp3')} volume={0.25} />"
      },
      {
        "title": "Capabilities",
        "body": "CapabilityToolProject scaffoldingoanim initAnimation presets (fadeUp, popIn, springs)@oanim/coreComponents (Terminal, Card, Badge, GlowOrb)@oanim/coreScene transitions (fadeBlur, clipCircle, wipe)@oanim/coreTypography (AnimatedCharacters, TypewriterText, CountUp)@oanim/coreDesign tokens (5 palettes, fonts, spacing)@oanim/coreRendering to videooanim renderCloud renderingoanim render --cloudAI image generationoanim assets gen-imageAI video generationoanim assets run (kling, minimax, hunyuan models)AI audio generationoanim assets run (stable-audio model)Media compositing<Img>, <OffthreadVideo>, <Audio> via staticFile()Image editingoanim assets edit-imageBackground removaloanim assets remove-bgImage upscalingoanim assets upscaleAny fal.ai modeloanim assets run"
      },
      {
        "title": "References",
        "body": "references/workflow.md — Step-by-step agent workflow\nreferences/scene-config.md — animate.json schema reference\nreferences/composition-patterns.md — Multi-scene composition architecture\nreferences/animation-cookbook.md — Full @oanim/core presets reference\nreferences/asset-generation.md — AI asset generation guide\nreferences/media-guide.md — Using generated media in compositions (Img, Video, Audio)"
      },
      {
        "title": "Templates",
        "body": "templates/launch-video.md — 4-scene product launch (5s)\ntemplates/explainer.md — Step-based explainer video (20s)\ntemplates/logo-reveal.md — Logo animation with glow (5s)\ntemplates/meme-caption.md — Vertical social clip (6s)\ntemplates/investor-update.md — Metrics dashboard (15s)"
      }
    ],
    "body": "Open Animate — Creative Suite for Agents\n\nCreate professional motion graphics and generate visual assets. Describe what you want. Get an MP4.\n\nPrerequisites\n\nThis skill builds on Remotion skills for core Remotion API patterns:\n\nnpx skills add remotion-dev/skills\n\nWorkflow\n1. Initialize project\nnpx oanim init my-video\ncd my-video\n\n2. Compose using @oanim/core\nimport { fadeUp, popIn, Background, SafeArea, palettes } from '@oanim/core';\n\n\nSee references/animation-cookbook.md for the full presets reference.\n\n3. Preview\nnpx remotion studio\n\n4. Render to MP4\nnpx oanim render\n\n5. Generate and use media assets (optional)\n# Generate image, video, or audio\nnpx oanim assets gen-image --prompt \"dark gradient abstract\" --out public/bg.png\nnpx oanim assets run --model fal-ai/kling-video/v1/standard/text-to-video \\\n  --input '{\"prompt\":\"cinematic abstract motion\",\"duration\":\"5\"}' --out public/clip.mp4\nnpx oanim assets run --model fal-ai/stable-audio \\\n  --input '{\"prompt\":\"ambient electronic, no vocals\",\"duration_in_seconds\":30}' --out public/music.mp3\n\n\nThen use in your composition:\n\nimport { Img, OffthreadVideo, Audio, staticFile } from 'remotion';\n\n<Img src={staticFile('bg.png')} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />\n<OffthreadVideo src={staticFile('clip.mp4')} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />\n<Audio src={staticFile('music.mp3')} volume={0.25} />\n\nCapabilities\nCapability\tTool\nProject scaffolding\toanim init\nAnimation presets (fadeUp, popIn, springs)\t@oanim/core\nComponents (Terminal, Card, Badge, GlowOrb)\t@oanim/core\nScene transitions (fadeBlur, clipCircle, wipe)\t@oanim/core\nTypography (AnimatedCharacters, TypewriterText, CountUp)\t@oanim/core\nDesign tokens (5 palettes, fonts, spacing)\t@oanim/core\nRendering to video\toanim render\nCloud rendering\toanim render --cloud\nAI image generation\toanim assets gen-image\nAI video generation\toanim assets run (kling, minimax, hunyuan models)\nAI audio generation\toanim assets run (stable-audio model)\nMedia compositing\t<Img>, <OffthreadVideo>, <Audio> via staticFile()\nImage editing\toanim assets edit-image\nBackground removal\toanim assets remove-bg\nImage upscaling\toanim assets upscale\nAny fal.ai model\toanim assets run\nReferences\nreferences/workflow.md — Step-by-step agent workflow\nreferences/scene-config.md — animate.json schema reference\nreferences/composition-patterns.md — Multi-scene composition architecture\nreferences/animation-cookbook.md — Full @oanim/core presets reference\nreferences/asset-generation.md — AI asset generation guide\nreferences/media-guide.md — Using generated media in compositions (Img, Video, Audio)\nTemplates\ntemplates/launch-video.md — 4-scene product launch (5s)\ntemplates/explainer.md — Step-based explainer video (20s)\ntemplates/logo-reveal.md — Logo animation with glow (5s)\ntemplates/meme-caption.md — Vertical social clip (6s)\ntemplates/investor-update.md — Metrics dashboard (15s)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jacobcwright/open-animate",
    "publisherUrl": "https://clawhub.ai/jacobcwright/open-animate",
    "owner": "jacobcwright",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/open-animate",
    "downloadUrl": "https://openagent3.xyz/downloads/open-animate",
    "agentUrl": "https://openagent3.xyz/skills/open-animate/agent",
    "manifestUrl": "https://openagent3.xyz/skills/open-animate/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/open-animate/agent.md"
  }
}