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

Skills are static, machine-readable YAML playbooks — no MCP or account needed to read them. Fetch any docs page as raw markdown by appending .md to its URL, or install the self-contained Framelane skill for the full agent workflow. Once you hold a key, drive the actual calls through the authenticated action MCP at https://mcp.framelane.io/mcp.

Available skills

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