Skip to main content

What Are AI Skills?

Corsa publishes AI skills — structured instructions that teach your AI coding assistant how to work with the Corsa API, SDK, webhooks, and rule engine. When installed, your AI assistant understands Corsa patterns, catches common mistakes, and generates correct integration code out of the box. Skills are built on the open Agent Skills standard and work with 16+ AI tools including Cursor, Claude Code, VS Code / Copilot, OpenAI Codex CLI, and Gemini CLI.

Available Skills

Integration Guide

SDK setup, authentication, data ingestion, webhooks, and error handling.

Data Pipeline

Build production pipelines — backfill, real-time sync, entity mapping for exchanges and payment companies.

Webhook Debugging

Debug signature verification, missing events, duplicate deliveries, and handler failures.

Rule Authoring

Create transaction monitoring rules, configure conditions and thresholds, and test evaluations.

Installation

Cursor

Install from the Cursor Marketplace or add the GitHub repository directly:
# Via Cursor settings
# Settings → Features → Skills → Add Skill → paste the GitHub URL
https://github.com/corsa-labs/corsa-skills

Claude Code

claude mcp add-skill https://github.com/corsa-labs/corsa-skills

VS Code / GitHub Copilot

Add to your workspace .github/copilot-instructions.md or install via the VS Code extension marketplace.

Manual Installation

Clone the repository and symlink or copy the skill directories into your AI tool’s configuration folder:
git clone https://github.com/corsa-labs/corsa-skills.git
Each skill lives in its own directory with a SKILL.md file that your AI tool reads automatically.

How It Works

When you ask your AI assistant a question about Corsa — for example, “ingest a client using the Corsa SDK” — the skill provides the assistant with:
  • Correct code patterns — proper authentication format, SDK initialization, and API calls
  • Data model awareness — the right ingestion order, entity relationships, and required fields
  • Error prevention — catches common mistakes like wrong auth format, missing referenceId, or incorrect webhook setup
  • Debugging guidance — step-by-step troubleshooting for webhooks, rule evaluation, and API errors
Skills do not send your code to external services. They are plain Markdown files loaded locally by your AI tool.