Scaffold LogicSRC and CommandBoard plugins

This commit is contained in:
Anthony Ettinger 2026-06-06 11:24:02 +00:00
parent 59927e140c
commit 5c9ea821f6
67 changed files with 5958 additions and 0 deletions

View file

@ -0,0 +1,23 @@
import type { PluginManifest } from "@logicsrc/plugin-core";
export const coinPayManifest: PluginManifest = {
id: "coinpay",
name: "CoinPay",
version: "1.0.0",
type: ["payment", "identity", "escrow"],
default: true,
capabilities: [
"did.auth",
"wallet.connect",
"payment.request",
"payment.send",
"escrow.create",
"escrow.fund",
"escrow.release",
"escrow.refund",
"webhook.payment_status",
"reputation.payment_event"
],
commands: ["wallet", "escrow", "pay", "tip"],
env: ["COINPAY_API_URL", "COINPAY_API_KEY", "COINPAY_WEBHOOK_SECRET"]
};