Skip to main content

What Are AI Skills?

AI skills are structured instructions that you install into your own AI coding tool — Cursor, Claude Code, VS Code / GitHub Copilot, or any other IDE assistant — so it knows how to work with the Corsa API, SDK, webhooks, and rule engine. Once installed, your coding tool understands Corsa patterns, catches common mistakes, and generates correct integration code out of the box. These are not part of Corsa’s platform — they enhance the AI tools you already use for development. Skills are built on the open Agent Skills standard and work with 16+ AI coding tools.

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 directly from the Cursor Marketplace — search for Corsa. Or install manually:
git clone https://github.com/corsa-labs/corsa-skills.git
cp -r corsa-skills/corsa-integration/skills/corsa-integration ~/.cursor/skills/
cp -r corsa-skills/corsa-data-pipeline/skills/corsa-data-pipeline ~/.cursor/skills/
cp -r corsa-skills/corsa-webhook-debugging/skills/corsa-webhook-debugging ~/.cursor/skills/
cp -r corsa-skills/corsa-rule-authoring/skills/corsa-rule-authoring ~/.cursor/skills/

Claude Code

git clone https://github.com/corsa-labs/corsa-skills.git
cp -r corsa-skills/corsa-integration/skills/corsa-integration ~/.claude/skills/
cp -r corsa-skills/corsa-data-pipeline/skills/corsa-data-pipeline ~/.claude/skills/
cp -r corsa-skills/corsa-webhook-debugging/skills/corsa-webhook-debugging ~/.claude/skills/
cp -r corsa-skills/corsa-rule-authoring/skills/corsa-rule-authoring ~/.claude/skills/

VS Code / GitHub Copilot

git clone https://github.com/corsa-labs/corsa-skills.git
cp -r corsa-skills/corsa-integration/skills/corsa-integration .github/skills/
cp -r corsa-skills/corsa-data-pipeline/skills/corsa-data-pipeline .github/skills/
cp -r corsa-skills/corsa-webhook-debugging/skills/corsa-webhook-debugging .github/skills/
cp -r corsa-skills/corsa-rule-authoring/skills/corsa-rule-authoring .github/skills/

Other Tools

Clone the repository and copy the skill directories into your AI tool’s configured skills folder:
git clone https://github.com/corsa-labs/corsa-skills.git
Each skill lives in its own directory (e.g. corsa-integration/skills/corsa-integration) with a SKILL.md file that your AI tool reads automatically. Install as many skills as you need — each one is independent.

How It Works

When you ask your coding tool a question about Corsa — for example, “ingest a client using the Corsa SDK” — the skill provides it 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 coding tool.