{
  "schema": "snappy-card/1",
  "skill": "snappy-remotion",
  "tier": "public",
  "origin_tier": "base",
  "purpose": "You are operating the programmatic video generation layer for Snappy. This skill turns text, images, and data into polished video without manual editing -- quote cards, social clips, course intros, data visualizations, branded overlays. Everything renders from React components via Remotion into MP4 files ready for distribution.",
  "verbs": [
    {
      "name": "add",
      "args": [
        "name",
        "description"
      ],
      "effect": "write-reversible",
      "firstCall": "npx tsx ~/.claude/skills/snappy-remotion/api.ts add \"<name>\" <description>"
    },
    {
      "name": "list",
      "args": [],
      "effect": "read",
      "firstCall": "npx tsx ~/.claude/skills/snappy-remotion/api.ts list"
    },
    {
      "name": "preview",
      "args": [
        "composition-id"
      ],
      "effect": "write-reversible",
      "firstCall": "npx tsx ~/.claude/skills/snappy-remotion/api.ts preview <composition-id>"
    },
    {
      "name": "render",
      "args": [
        "composition-id"
      ],
      "effect": "write-reversible",
      "firstCall": "npx tsx ~/.claude/skills/snappy-remotion/api.ts render <composition-id>"
    },
    {
      "name": "scaffold",
      "args": [],
      "effect": "draft",
      "firstCall": "npx tsx ~/.claude/skills/snappy-remotion/api.ts scaffold"
    }
  ],
  "faces": [],
  "agents": [],
  "uses": [
    "snappy-video",
    "snappy-image",
    "snappy-content",
    "snappy-positioning",
    "snappy-youtube",
    "snappy-linkedin",
    "snappy-course",
    "snappy-ops",
    "snappy-faces"
  ],
  "used_by": [],
  "checks": {
    "pass": 44,
    "fail": 3,
    "defer": 14,
    "line": "44 of 47 checks pass",
    "failing": [
      {
        "id": 10,
        "rule": "One term names each concept",
        "says": "mixed synonym sets: endpoint/url/route/path"
      },
      {
        "id": 55,
        "rule": "Eval scenarios are multi-call with ground truth",
        "says": "eval manifest missing"
      },
      {
        "id": 57,
        "rule": "Eval manifest contains a disjoint holdout",
        "says": "0 disjoint holdout scenario(s)"
      }
    ]
  },
  "coverage": null,
  "spec": null,
  "evals": null,
  "files": [
    "AGENTS.md",
    "SKILL.md",
    "api.ts",
    "refusals.test.ts"
  ],
  "total_size": 53458,
  "checksum": "sha256:9dd1fdbec4f0c56c3e498a02b4dd072c739221c0e1ae9b9ef8d76434a86cb134",
  "built_at": "2026-09-09T22:10:23.483Z",
  "openapi": {
    "openapi": "3.1.0",
    "info": {
      "title": "snappy-remotion",
      "version": "0.0.0",
      "description": "Snappy Remotion generates programmatic video from React components. Renders quote cards, social clips, course intros, data visualizations, branded overlays from text/images/data into MP4 without manual editing. Project lives at ~/projects/snappy-remotion. Triggers on: remotion, render video, quote card, social clip, course intro, data viz, branded overlay, programmatic video, video from text, animated quote, generate video, video template, batch render."
    },
    "x-snappy-transport": "cli",
    "servers": [
      {
        "url": "npx tsx ~/.claude/skills/snappy-remotion/api.ts",
        "description": "The hand itself. Every path is a verb word, every query or body key an argument."
      }
    ],
    "paths": {
      "/add": {
        "post": {
          "operationId": "snappy_remotion_add",
          "summary": "snappy-remotion add",
          "x-snappy-effect": "write-reversible",
          "x-snappy-annotations": {
            "readOnlyHint": false,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "requestBody": {
            "required": true,
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "PascalCase composition name to create",
                      "x-snappy-position": 0
                    },
                    "description": {
                      "type": "string",
                      "description": "One-sentence description of the thing",
                      "x-snappy-position": 1
                    }
                  },
                  "required": [
                    "name",
                    "description"
                  ]
                }
              }
            }
          },
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/list": {
        "get": {
          "operationId": "snappy_remotion_list",
          "summary": "snappy-remotion list",
          "x-snappy-effect": "read",
          "x-snappy-annotations": {
            "readOnlyHint": true,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "parameters": [
            {
              "name": "limit",
              "in": "query",
              "required": false,
              "schema": {
                "type": "integer",
                "description": "How many compositions to return. The count is the FLAG --limit, never a positional word; default 20, ceiling 200",
                "default": 20,
                "minimum": 1,
                "maximum": 200,
                "x-snappy-flag": "--limit"
              }
            }
          ],
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/preview": {
        "post": {
          "operationId": "snappy_remotion_preview",
          "summary": "snappy-remotion preview",
          "x-snappy-effect": "write-reversible",
          "x-snappy-annotations": {
            "readOnlyHint": false,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "requestBody": {
            "required": true,
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "composition-id": {
                      "type": "string",
                      "description": "Remotion composition id to open in Studio; omit for the whole project",
                      "x-snappy-position": 0
                    }
                  },
                  "required": [
                    "composition-id"
                  ]
                }
              }
            }
          },
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/render": {
        "post": {
          "operationId": "snappy_remotion_render",
          "summary": "snappy-remotion render",
          "x-snappy-effect": "write-reversible",
          "x-snappy-annotations": {
            "readOnlyHint": false,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "requestBody": {
            "required": true,
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "composition-id": {
                      "type": "string",
                      "description": "Remotion composition id",
                      "x-snappy-position": 0
                    }
                  },
                  "required": [
                    "composition-id"
                  ]
                }
              }
            }
          },
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      },
      "/scaffold": {
        "post": {
          "operationId": "snappy_remotion_scaffold",
          "summary": "snappy-remotion scaffold",
          "x-snappy-effect": "draft",
          "x-snappy-annotations": {
            "readOnlyHint": false,
            "destructiveHint": false,
            "idempotentHint": false,
            "openWorldHint": true
          },
          "requestBody": {
            "required": false,
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            }
          },
          "responses": {
            "200": {
              "description": "The verb's own answer, as printed by `--json`."
            }
          }
        }
      }
    },
    "components": {
      "schemas": {
        "SnappyRefusal": {
          "type": "object",
          "required": [
            "outcome",
            "code",
            "message"
          ],
          "properties": {
            "outcome": {
              "type": "string",
              "const": "refused"
            },
            "code": {
              "type": "string",
              "description": "A row of the closed refusal table."
            },
            "message": {
              "type": "string"
            },
            "fix": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}