# Send Morfeo Remotion Style 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": "morfeo-remotion-style",
    "name": "Morfeo Remotion Style",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/PauldeLavallaz/morfeo-remotion-style",
    "canonicalUrl": "https://clawhub.ai/PauldeLavallaz/morfeo-remotion-style",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/morfeo-remotion-style",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=morfeo-remotion-style",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "package.json",
      "references/AppleEmoji.tsx",
      "references/BrandIcon.tsx",
      "references/MorfeoStory-example.tsx",
      "references/styles.ts"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "morfeo-remotion-style",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T05:04:58.060Z",
      "expiresAt": "2026-05-07T05:04:58.060Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=morfeo-remotion-style",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=morfeo-remotion-style",
        "contentDisposition": "attachment; filename=\"morfeo-remotion-style-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "morfeo-remotion-style"
      },
      "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/morfeo-remotion-style"
    },
    "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/morfeo-remotion-style",
    "downloadUrl": "https://openagent3.xyz/downloads/morfeo-remotion-style",
    "agentUrl": "https://openagent3.xyz/skills/morfeo-remotion-style/agent",
    "manifestUrl": "https://openagent3.xyz/skills/morfeo-remotion-style/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/morfeo-remotion-style/agent.md"
  }
}
```
## Documentation

### Morfeo Remotion Style

Style guide for Remotion videos matching Morfeo Academy's brand.

### Brand Colors

export const colors = {
  lime: "#cdff3d",      // Primary accent - VERY IMPORTANT
  black: "#050508",     // Background
  darkGray: "#111111",  // Secondary bg
  white: "#FFFFFF",     // Text
  gray: "#888888",      // Muted text
};

### Typography

import { loadFont as loadDMSans } from "@remotion/google-fonts/DMSans";
import { loadFont as loadInstrumentSerif } from "@remotion/google-fonts/InstrumentSerif";
import { loadFont as loadJetBrainsMono } from "@remotion/google-fonts/JetBrainsMono";

export const fonts = {
  heading: \`${instrumentSerif}, serif\`,  // Títulos - ALWAYS italic
  body: \`${dmSans}, sans-serif\`,         // Cuerpo
  mono: \`${jetBrainsMono}, monospace\`,   // Código
};

Rules:

Headings: Instrument Serif, always italic, weight 400
Body: DM Sans, weight 400-600
Code/tech: JetBrains Mono

### Emojis

Use Apple emojis via CDN (Remotion can't render system emojis):

// See references/AppleEmoji.tsx for full component
<AppleEmoji emoji="🤖" size={28} />
<InlineEmoji emoji="🎙️" size={38} />  // For inline with text

### Brand Icons (WhatsApp, Telegram, etc.)

Use inline SVGs, not icon libraries (they don't work in Remotion):

// See references/BrandIcon.tsx for full component
<BrandIcon brand="whatsapp" size={44} />
<BrandIcon brand="telegram" size={44} />

### Spring Config

spring({ 
  frame, 
  fps, 
  from: 0, 
  to: 1, 
  config: { damping: 15 }  // Standard damping
});

### Entry Sequence (staggered reveals)

Tag (frame 0-15): Fade in + slide from top
Emoji (frame 15+): Scale spring from 0
Title (frame 30-50): Fade + slide from bottom
Lines (frame 60, 90, 120): Staggered fade in

### Pulsing Effect (for emojis)

const pulse = interpolate(
  frame % 60,
  [0, 30, 60],
  [1, 1.1, 1],
  { extrapolateRight: "clamp" }
);

### Lime Tag (top of screen)

<div style={{
  position: "absolute",
  top: 80,
  fontSize: 28,
  fontWeight: 600,
  fontFamily: fonts.body,
  color: colors.black,
  backgroundColor: colors.lime,
  padding: "12px 28px",
  borderRadius: 30,
  display: "flex",
  alignItems: "center",
  gap: 8,
}}>
  <AppleEmoji emoji="🤖" size={28} /> TEXT HERE
</div>

### Big Emoji (center)

<AppleEmoji emoji="🗣️" size={140} />

### Title (Instrument Serif italic)

<h1 style={{
  fontSize: 68,
  fontWeight: 400,
  fontFamily: fonts.heading,
  fontStyle: "italic",  // ALWAYS
  color: colors.white,
  textAlign: "center",
  lineHeight: 1.15,
}}>
  Text with <span style={{ color: colors.lime }}>lime accent</span>
</h1>

### Video Specs

Format: 1080x1920 (9:16 vertical stories)
FPS: 30
Duration: 5 seconds (150 frames) per story
Background: Always colors.black (#050508)

### Project Setup

npx create-video@latest --template blank
npm i @remotion/google-fonts

### File Structure

src/
├── styles.ts          # Colors & fonts exports
├── AppleEmoji.tsx     # Emoji component
├── BrandIcon.tsx      # Brand icons (WhatsApp, Telegram, etc.)
├── [StoryName].tsx    # Individual stories
└── Root.tsx           # Composition setup

### References

references/styles.ts - Complete styles file
references/AppleEmoji.tsx - Apple emoji component
references/BrandIcon.tsx - Brand icons component
references/MorfeoStory-example.tsx - Full story example

### DO NOT

❌ Use system fonts (won't render)
❌ Use icon libraries like simple-icons (won't work)
❌ Use non-italic headings
❌ Use colors outside the palette
❌ Forget the lime accent color
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: PauldeLavallaz
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T05:04:58.060Z
- Expires at: 2026-05-07T05:04:58.060Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/morfeo-remotion-style)
- [Send to Agent page](https://openagent3.xyz/skills/morfeo-remotion-style/agent)
- [JSON manifest](https://openagent3.xyz/skills/morfeo-remotion-style/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/morfeo-remotion-style/agent.md)
- [Download page](https://openagent3.xyz/downloads/morfeo-remotion-style)