Skip to main content
AI coding agents like Claude Code, Cursor, and Windsurf can build Cloudglue integrations faster when they understand the SDK and API patterns. This page covers how to teach your agent to build applications with Cloudglue APIs.

Cloudglue Skills

Cloudglue Skills are pre-packaged knowledge bundles that follow the agentskills.io specification. They provide your coding agent with core concepts, correct code patterns, method signatures, and troubleshooting guidance — so it writes working Cloudglue integrations on the first try.
Recommended — Skills are the fastest way to teach any compatible agent how to build with Cloudglue. They work with Claude Code, Cursor, Windsurf, and any agent that supports the agentskills.io spec.
npx skills add cloudglue/skills
Once installed, agents automatically learn to consult documentation in priority order:
  1. Embedded package docs — version-locked Markdown shipped with the JS SDK (most reliable)
  2. Source code — full type information from node_modules
  3. Remote docs — conceptual guides at docs.cloudglue.dev
View the source on GitHub.

More Ways to Teach Your Agent

MCP Server

Connect AI assistants like Claude Desktop and Cursor to Cloudglue’s video understanding tools via the Model Context Protocol.

Embedded Package Docs

The JS SDK ships 14 Markdown files covering all APIs, version-locked to your installed SDK version.

llms.txt

Comprehensive documentation index in Markdown format. Feed it to any LLM that needs broad Cloudglue context.

Embedded Package Docs

The Cloudglue JS SDK (@cloudglue/cloudglue-js) ships documentation alongside the code. After installing the SDK, you’ll find 14 Markdown files covering every API surface:
ls node_modules/@cloudglue/cloudglue-js/docs/
These docs are version-locked to the exact SDK version installed in your project, making them the most reliable reference for agents — no risk of mismatched method signatures or deprecated patterns. When Cloudglue Skills are installed, they automatically use these embedded docs as the tier-1 information source. No extra configuration is needed. View the SDK on npm or GitHub.

Context Files

Cloudglue publishes an llms.txt file following the emerging convention for LLM-friendly documentation:
https://docs.cloudglue.dev/llms.txt
This file provides a comprehensive index of all Cloudglue documentation and API endpoints in a single Markdown document. It’s useful for feeding broad context to any LLM, but for SDK-specific coding tasks, prefer skills or embedded docs for more precise results.
1

Install Cloudglue Skills

Install skills in your project directory to teach your coding agent how to build with Cloudglue APIs.
npx skills add cloudglue/skills
2

Install the JS SDK

Run npm install @cloudglue/cloudglue-js. The embedded docs in the package become the agent’s tier-1 reference, automatically used by Cloudglue Skills.
3

(Optional) Configure MCP Server

For AI assistants like Claude Desktop or Cursor, add the MCP Server for direct video analysis capabilities in your chat workflow.