Claude Code Plugins

Community-maintained marketplace

Feedback

Use when testing Weavr integrations in sandbox - simulate deposits, card transactions, KYC/KYB verification, wire transfers, and 2FA challenges

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name weavr-simulator
description Use when testing Weavr integrations in sandbox - simulate deposits, card transactions, KYC/KYB verification, wire transfers, and 2FA challenges

Weavr Simulator API

API Reference: https://weavr-simulator-api.redoc.ly/

Sandbox-only testing tool for simulating financial operations.

Quick Start

// Simulate account deposit - POST /accounts/{account_id}/deposit
// Header: api-key (API_Secret_Key)
{
  "depositAmount": { "currency": "GBP", "amount": 10000 },
  "senderName": "Test Sender",
  "reference": "Test deposit"
}
// Response: { "code": "COMPLETED" }

Core Endpoints

Category Endpoint Purpose
Accounts POST /accounts/{id}/deposit Simulate incoming wire transfer
Cards POST /cards/{id}/purchase Simulate card transaction
Cards POST /cards/{id}/merchant_refund Simulate refund
Identity POST /consumers/{id}/verify Auto-verify consumer KYC
Identity POST /corporates/{id}/verify Auto-verify corporate KYB
Transfers POST /wiretransfers/outgoing/{id}/accept Complete OWT
Transfers POST /wiretransfers/outgoing/{id}/reject Reject OWT
2FA POST /factors/{cred_id}/challenges/{id}/verify_success Pass 2FA

Authentication

Header: api-key with your API Secret Key (not the regular api-key)

Reference Files

See references/endpoints.md for full endpoint details and request bodies.