Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.corsa.finance/llms.txt

Use this file to discover all available pages before exploring further.

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 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

npx add-skill corsa-labs/corsa-skills
Or clone manually into your personal skills directory:
git clone https://github.com/corsa-labs/corsa-skills.git ~/.claude/skills/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 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.