Implements KryptoGO Payment checkout integration including Payment Intent creation, React SDK usePayment hook, and Direct API integration. Use when integrating crypto payment, creating checkout flows, or building KryptoGO 穩定幣收款頁面.
Implements KryptoGO Payment query functionality for checking payment intent status and listing payment intents. Use when building order status checking, transaction verification, or payment confirmation features for KryptoGO 穩定幣支付.
Implements KryptoGO Payment token transfer/withdrawal functionality using the Asset Pro Transfer API. Use when building withdrawal features, sending tokens to users, or implementing 穩定幣提領轉帳 for KryptoGO Payment.
Implements KryptoGO Payment webhook/callback handling for receiving payment status notifications. Use when building webhook endpoints, handling payment callbacks, or implementing 支付狀態通知 for KryptoGO Payment.
Provides KryptoGO Payment integration overview and guides users to the appropriate skill. Use when starting KryptoGO crypto payment integration, setting up environment, or needing general guidance about KryptoGO 穩定幣支付.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
AI Coding Agent skills for integrating KryptoGO Payment — accept USDT/USDC stablecoin payments with a single prompt.
Works with Claude Code, Cursor, Codex, GitHub Copilot, and other AI coding agents.
KryptoGO Payment is a stablecoin payment infrastructure that lets any application accept crypto payments. Instead of dealing with volatile cryptocurrencies, your customers pay with stablecoins (USDT/USDC) while you price in fiat (TWD/USD).
Key features:
After creating your organization:
Important: Your API key is displayed only once. Copy and store it securely. If lost, you'll need to create a new one.
Create a .env file in your project root:
KRYPTOGO_CLIENT_ID=your_client_id
KRYPTOGO_STUDIO_API_KEY=your_api_key
KRYPTOGO_ORIGIN=your_domain
Security: Always add
.envto.gitignore. Never expose your API key in client-side code. All API calls with the API key should be made from your server.
# Install all KryptoGO Payment skills
npx skills add kryptogo/kryptogo-payment-skill
# Or install selectively
npx skills add kryptogo/kryptogo-payment-skill --skill kryptogo-pay
# List available skills
npx skills add kryptogo/kryptogo-payment-skill --list
Tell your AI agent what you need:
> Help me integrate KryptoGO stablecoin payments
> /kryptogo-pay-checkout
> I need a USDT checkout page for my e-commerce app
| Skill | Description | When to Use |
|---|---|---|
/kryptogo-pay | Overview & environment setup | First-time setup, general guidance |
/kryptogo-pay-checkout | Create Payment Intents | Accept payments, build checkout flows |
/kryptogo-pay-query | Query Payment Intents | Check payment status, reconciliation |
/kryptogo-pay-webhook | Handle webhook callbacks | Receive real-time payment notifications |
/kryptogo-pay-transfer | Transfer tokens | Withdrawals, payouts, token distribution |
AI agents will automatically load the relevant skill when you mention:
| Skill | Keywords |
|---|---|
| kryptogo-pay | KryptoGO, stablecoin payment, crypto payment |
| kryptogo-pay-checkout | KryptoGO checkout, create payment, payment intent |
| kryptogo-pay-query | KryptoGO query, payment status |
| kryptogo-pay-webhook | KryptoGO webhook, callback, notification |
| kryptogo-pay-transfer | KryptoGO transfer, withdrawal, payout |
Best for apps that need a payment UI. The SDK provides a usePayment hook and pre-built payment modal.
npm install @kryptogo/kryptogokit-sdk-react wagmi [email protected] @tanstack/react-query
import { usePayment } from '@kryptogo/payment';
function PayButton() {
const { openPaymentModal, isSuccess, txHash } = usePayment();
return (
<button onClick={() => openPaymentModal({
fiat_amount: '10',
fiat_currency: 'USD',
callback_url: 'https://your-server.com/webhook',
order_data: { order_id: '12345' },
})}>
Pay $10 USD
</button>
);
}
Best for server-to-server integrations, custom frontends, or cross-platform apps.
curl -X POST https://wallet.kryptogo.app/v1/studio/api/payment/intent \
-H 'Content-Type: application/json' \
-H 'X-Client-ID: YOUR_CLIENT_ID' \
-H 'Origin: YOUR_DOMAIN' \
-H 'X-STUDIO-API-KEY: YOUR_API_KEY' \
-d '{"fiat_amount":"10.0","fiat_currency":"USD"}'
Get a working backend in 60 seconds:
npx claudepluginhub kryptogo/kryptogo-payment-skill --plugin kryptogo-payUltra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Frontend design skill for UI/UX implementation
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Memory compression system for Claude Code - persist context across sessions
Marketing skills for AI agents — conversion optimization, copywriting, SEO, paid ads, ad creative, and growth
Standalone image generation plugin using Nano Banana MCP server. Generates and edits images, icons, diagrams, patterns, and visual assets via Gemini image models. No Gemini CLI dependency required.