Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
insforge avatar

Insforge Integrations

  • 22.8k installs
  • 36 repo stars
  • Updated August 4, 2026
  • insforge/agent-skills

insforge-integrations is an agent skill that >-.

About

name insforge-integrations description Use when wiring an external auth provider Clerk Auth0 WorkOS Kinde Stytch Better Auth into InsForge for JWT-based RLS or when adding the OKX x402 payment facilitator for onchain pay-per-use billing license MIT metadata author insforge version 1 2 0 organization InsForge date April 2026 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 Provider Guide When to use Clerk references clerk md Clerk JWT Templates InsForge RLS Clerk signs tokens directly via JWT Template no server-side signing needed Auth0 references auth0 md Auth0 Actions InsForge RLS Auth0 uses a post-login Action to embed claims into the access token WorkOS references workos md WorkOS AuthKit InsForge RLS WorkOS AuthKit middleware server-side JWT signing with jsonwebtoken Kinde references kinde md Kinde InsForge RLS Kinde token customization for InsForge integration Stytch references stytch md Stytch InsForge RLS Stytch session

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

Insforge Integrations by the numbers

  • 22,844 all-time installs (skills.sh)
  • +2,949 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #25 of 2,203 Security skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

insforge-integrations capabilities & compatibility

Capabilities
insforge integrations · **provider signs or issues a jwt** containing th · **jwt is passed to insforge** via `accesstoken` · **insforge exposes claims** through `auth.jwt()` · **rls policies** use a `requesting_user_id()` fu
Use cases
documentation
From the docs

What insforge-integrations says it does

license: MIT metadata: author: insforge version: "1.2.0" organization: InsForge date: April 2026 --- # InsForge Integrations This skill covers integrating **third-party providers** with InsForge.
SKILL.md
Currently two categories are supported: **auth providers** (RLS via JWT claims) and **payment facilitators** (x402 HTTP payment protocol).
SKILL.md
Each provider has its own guide under this directory.
SKILL.md
**Provider signs or issues a JWT** containing the user's ID 2.
SKILL.md
npx skills add https://github.com/insforge/agent-skills --skill insforge-integrations

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs22.8k
repo stars36
Security audit2 / 3 scanners passed
Last updatedAugust 4, 2026
Repositoryinsforge/agent-skills

What problem does insforge-integrations solve for developers using this skill?

>-

Who is it for?

Developers who need insforge-integrations patterns described in the cached skill documentation.

Skip if: Skip when docs are empty or the task is outside the skill's documented scope.

When should I use this skill?

>-

What you get

Actionable workflows and conventions from SKILL.md for insforge-integrations.

  • Auth0 Post Login Action script
  • Next.js InsForge client configuration
  • RLS-enforced data access flow

By the numbers

  • Requires `@auth0/nextjs-auth0` v4 or newer
  • Defines a 4-step workflow from Auth0 app creation through dependency configuration

Files

SKILL.mdMarkdownGitHub ↗

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()
  • Always get the JWT secret via npx @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 @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

Related skills

Forks & variants (1)

Insforge Integrations has 1 known copy in the catalog totaling 263 installs. They canonicalize to this original listing.

How it compares

Use insforge-integrations for Auth0-to-InsForge JWT RLS; choose generic OAuth guides when InsForge edge tokens and RLS are not in scope.

FAQ

What does insforge-integrations do?

>-

When should I use insforge-integrations?

>-

Is insforge-integrations safe to install?

Review the Security Audits panel on this page before installing in production.

Securityappsec

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.