Skip to main content

What are Agent Skills?

Agent Skills are structured playbooks that encode the complete API call sequence, async completion pattern, error handling, and rate limit considerations for a common Framelane workflow. They are designed to be loaded by AI agents (Claude, GPT-4, Cursor Agent, etc.) to eliminate the need for the agent to figure out the multi-step API flow from scratch.

Loading skills via MCP

Skills are exposed as MCP resources from the Mintlify-hosted MCP server:
https://docs.framelane.io/mcp
Connect this to your agent to make all skills available as context.

Available skills

SkillWhat it orchestrates
render-videosource URL → create render → await webhook → download
transcribeaudio/video → transcribe → return transcript with word timestamps
generate-social-clipsource + time range → trim, crop 9:16, transcribe, multi-style captions → render
remove-backgroundimage/video → task → await → download
super-resolutionupscale → task → await → download
batch-taskssubmit N tasks in parallel, track all, return results map
webhook-setupregister endpoint, verify signature, handle retries

Skill format

Each skill is a structured YAML document that encodes:
  • Goal: what the skill accomplishes
  • Prerequisites: required API keys, webhook setup
  • Steps: ordered API calls with exact request shapes
  • Async pattern: how to wait for job completion
  • Error handling: which error codes to expect and how to recover
  • Rate limits: relevant limits to respect