insforge-integrations

bởi insforge

Sử dụng khi kết nối nhà cung cấp xác thực bên ngoài (Clerk, Auth0, WorkOS, Kinde, Stytch, Better Auth) vào InsForge cho RLS dựa trên JWT, hoặc khi thêm trình hỗ trợ thanh toán OKX x402 cho tính năng thanh toán theo mức sử dụng trên chuỗi.

npx skills add https://github.com/insforge/agent-skills --skill insforge-integrations

InsForge Integrations

This skill covers integrating third-party providers with InsForge. Currently two categories are supported: auth providers (RLS via JWT claims) and payment facilitators (x402 HTTP payment protocol). Each provider has its own guide under this directory.

Auth Providers

ProviderGuideWhen to use
ClerkClerk JWT Templates + InsForge RLSClerk signs tokens directly via JWT Template — no server-side signing needed
Auth0Auth0 Actions + InsForge RLSAuth0 uses a post-login Action to embed claims into the access token
WorkOSWorkOS AuthKit + InsForge RLSWorkOS AuthKit middleware + server-side JWT signing with jsonwebtoken
KindeKinde + InsForge RLSKinde token customization for InsForge integration
StytchStytch + InsForge RLSStytch session tokens for InsForge integration
Better AuthBetter Auth + InsForge RLSSelf-hosted auth running in your InsForge Postgres — no third-party SaaS, no per-MAU cost

Payment Facilitators

ProviderGuideWhen to use
OKX x402OKX as x402 facilitator (USDG on X Layer)Pay-per-use HTTP endpoints settled onchain with zero gas for the payer

Common Patterns

Auth providers

  1. Provider signs or issues a JWT containing the user's ID
  2. JWT is passed to InsForge via accessToken in createClient() (deprecated alias: edgeFunctionToken)
  3. InsForge exposes claims through auth.jwt() in SQL
  4. RLS policies use a requesting_user_id() function to enforce row-level security

Payment facilitators (x402)

  1. Server returns 402 Payment Required with a JSON challenge base64-encoded in PAYMENT-REQUIRED header
  2. Client signs an EIP-3009 authorization using the stablecoin's EIP-712 domain
  3. Server forwards the signed payload to the facilitator's /verify + /settle endpoints
  4. Server records the settled payment in an InsForge table with a realtime trigger for live dashboards

Choosing a Provider

Auth

  • Clerk — Simplest setup; JWT Template handles signing, no server code needed
  • Auth0 — Flexible; uses post-login Actions for claim injection
  • WorkOS — Enterprise-focused; AuthKit middleware + server-side JWT signing
  • Kinde — Developer-friendly; built-in token customization
  • Stytch — API-first; session-based token flow
  • Better Auth — Self-hosted in your Postgres; no SaaS vendor; you own the user table. Pairs cleanly with InsForge's Postgres via a connection string + a small bridge route. Requires a one-time REVOKE after migrate to seal PostgREST exposure.

Payment facilitators

  • OKX x402 — Onchain pay-per-use via USDG on X Layer; zero gas for the payer

Setup

  1. Identify which provider the project uses
  2. Read the corresponding reference guide from the tables above
  3. Follow the provider-specific setup steps

Usage Examples

Each provider guide includes full code examples for:

  • Provider dashboard configuration (API keys, application settings, etc.)
  • Server and client code (JWT utilities for auth; facilitator client + signing utilities for payments)
  • Database setup (RLS for auth; payment table + realtime trigger for payments)
  • Environment variable setup

Refer to the specific references/<provider>.md file for complete examples.

Best Practices

Auth

  • All auth provider user IDs are strings (not UUIDs) — always use TEXT columns for user_id
  • Use requesting_user_id() instead of auth.uid() for RLS policies
  • Pass the JWT via accessToken — a static string, not a function; for short-lived tokens (Clerk) sync refreshes with client.setAccessToken(token, AuthChangeEvent.TOKEN_REFRESHED) after the initial same-user sign-in
  • Always get the JWT secret via npx -y @insforge/cli secrets get JWT_SECRET

Payment facilitators (x402)

  • Always check the result of the database insert(...) after settlement — settlement takes money onchain before the insert runs; a silent DB failure loses the record
  • Add UNIQUE to the tx_hash column to prevent duplicate records from retries
  • Verify EIP-712 domain (name, version) against the token contract's on-chain DOMAIN_SEPARATOR — wrong values produce Invalid Authority errors
  • Use a MOCK_OKX_FACILITATOR env flag for local dev so the full flow can be exercised without real funds

Common Mistakes

Auth

MistakeSolution
Using auth.uid() for RLSUse requesting_user_id() — third-party IDs are strings, not UUIDs
Using UUID columns for user_idUse TEXT — all supported providers use string-format IDs
Hardcoding the JWT secretAlways retrieve via npx -y @insforge/cli secrets get JWT_SECRET
Missing requesting_user_id() functionMust be created before RLS policies will work

Payments (x402)

MistakeSolution
Using an OKX exchange trading API keyCreate a separate Web3 API key at web3.okx.com/onchainos/dev-portal
Wrong EIP-712 domain valuesRead the token contract's DOMAIN_SEPARATOR — for USDG on X Layer use name: "Global Dollar", version: "1"
Ignoring DB insert error after settlementAlways destructure { error } and log/handle it — money has already moved
MOCK_OKX_FACILITATOR=true in productionMock mode is demo-only; it returns fake tx hashes and bypasses verification

Thêm skills từ insforge

insforge-debug
insforge
Sử dụng khi chẩn đoán vấn đề trong dự án InsForge — lỗi phản ứng (đối tượng lỗi SDK, HTTP 4xx/5xx, gateway timeout 502/503/504, lỗi hoặc hết thời gian chờ của edge function, lỗi đăng nhập/OAuth/auth, từ chối RLS, vấn đề kênh realtime, truy vấn chậm trên một endpoint, lỗi triển khai edge function hoặc Vercel), kiểm tra chủ động (đánh giá bảo mật/RLS, đánh giá hiệu suất/chỉ mục, kiểm tra sức khỏe hệ thống, sẵn sàng trước khi ra mắt), hoặc khi người dùng gặp lỗi nhưng không biết bắt đầu từ đâu.
insforge
insforge
Sử dụng kỹ năng này khi viết mã ứng dụng với InsForge hoặc @insforge/sdk: CRUD cơ sở dữ liệu, xác thực, tải lên bộ nhớ/RLS bộ nhớ, hàm, AI OpenRouter, thời gian thực, email, thanh toán Stripe hoặc Razorpay, hoặc trỏ công cụ tương thích S3 (aws CLI, AWS SDKs, rclone, Terraform, boto3) tới InsForge Storage. Kích hoạt khi có yêu cầu như thêm xác thực, lấy dữ liệu, tải tệp lên, làm cho bucket công khai, thêm thanh toán, bán đăng ký hoặc gửi email. Đối với cơ sở hạ tầng, di chuyển SQL, lệnh CLI hoặc nhà cung cấp thanh toán...
developmentdatabaseaws
insforge-cli
insforge
Sử dụng kỹ năng này bất cứ khi nào ai đó cần một backend, hoặc một tác vụ liên quan đến backend hoặc hạ tầng đám mây InsForge thông qua CLI InsForge: dự án, SQL, migrations, chính sách RLS, functions, storage, deployments, compute, secrets, config, schedules, logs, diagnostics, import/export, thiết lập AI/OpenRouter, thanh toán Stripe/Razorpay, thu thập dữ liệu web Apify / nguồn dữ liệu, phân tích sản phẩm PostHog, nhánh backend, bộ nhớ agent (ghi nhớ/gợi nhớ sự kiện và quyết định dự án), hoặc tài liệu CLI. Đối với mã ứng dụng với...
developmentdatabasedevops
insforge-debug
insforge
Sử dụng khi chẩn đoán sự cố trong dự án InsForge — lỗi phản ứng (đối tượng lỗi SDK, HTTP 4xx/5xx, gateway timeout 502/503/504, lỗi hoặc timeout hàm edge, lỗi đăng nhập/OAuth/xác thực, từ chối RLS, sự cố kênh realtime, truy vấn chậm trên một endpoint, lỗi triển khai hàm edge hoặc Vercel), kiểm tra chủ động (đánh giá bảo mật/RLS, đánh giá hiệu suất/chỉ mục, kiểm tra sức khỏe hệ thống, sẵn sàng trước khi ra mắt), hoặc khi người dùng gặp lỗi nhưng không biết bắt đầu từ đâu.
insforge-cli
insforge
Sử dụng kỹ năng này bất cứ khi nào ai đó cần một backend, hoặc một tác vụ liên quan đến backend hoặc cơ sở hạ tầng đám mây của InsForge thông qua InsForge CLI: dự án, SQL, migrations, chính sách RLS, hàm, lưu trữ, sao lưu, triển khai, tính toán, bí mật, cấu hình, lịch trình, nhật ký, chẩn đoán, quét và loại bỏ cố vấn, nhập/xuất, thiết lập và tổng quan sử dụng AI/OpenRouter, thanh toán Stripe/Razorpay, thu thập dữ liệu web Apify / nguồn dữ liệu, phân tích sản phẩm PostHog, nhánh backend, tư cách thành viên tổ chức...
insforge
insforge
Sử dụng kỹ năng này khi viết mã ứng dụng với InsForge hoặc @insforge/sdk: CRUD cơ sở dữ liệu, xác thực, tải lên bộ nhớ/RLS bộ nhớ, hàm, AI OpenRouter, thời gian thực, email, thanh toán Stripe hoặc Razorpay, hoặc trỏ công cụ tương thích S3 (aws CLI, AWS SDKs, rclone, Terraform, boto3) vào InsForge Storage. Kích hoạt khi có yêu cầu như thêm xác thực, lấy dữ liệu, tải lên tệp, làm bucket công khai, thêm thanh toán, bán gói đăng ký, hoặc gửi email. Đối với hạ tầng, di chuyển SQL, lệnh CLI, hoặc nhà cung cấp thanh toán...
insforge-integrations
insforge
Sử dụng khi tích hợp nhà cung cấp xác thực bên ngoài (Clerk, Auth0, WorkOS, Kinde, Stytch, Better Auth) vào InsForge cho RLS dựa trên JWT, hoặc khi thêm bộ xử lý thanh toán OKX x402 cho việc tính phí pay-per-use trên chuỗi.