bynn-web-sdk

bynn-web-sdk is a skill for Claude Code from Bynn-Intelligence/skills. It costs 89 tokens per session (2,188 once invoked), scanned A, original, MIT.

A website component for adding Bynn identity verification, a process that checks an applicant’s identity. It can show a verification form or button inside a page.

In plain words
What is it for?
Use it to add identity checks to a website with npm or a script tag. It helps manage verification sessions and choose when to use Bynn’s Sessions API instead.
Why use it?
It removes the need to build the verification screen and session flow yourself. It also lets you prefill or hide applicant fields and respond to verification events.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the bynn plugin — 10 skills shipped together

Good fit Use it to add identity checks to a website with npm or a script tag. It helps manage verification sessions and choose when to use Bynn’s Sessions API instead.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bynn-intelligence/skills/bynn-web-sdk
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Bynn-Intelligence/skills --skill bynn-web-sdk
Clone the repo
git clone --depth 1 https://github.com/Bynn-Intelligence/skills

Made for: Claude Code.

Or install bynn, the plugin that ships this one along with the rest of its 10 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bynn-web-sdk

README.md
[![agentmods](https://agentmods.dev/badge/skills/bynn-intelligence/skills/bynn-web-sdk.svg)](https://agentmods.dev/skills/bynn-intelligence/skills/bynn-web-sdk)
Your own site
<a href="https://agentmods.dev/skills/bynn-intelligence/skills/bynn-web-sdk"><img src="https://agentmods.dev/badge/skills/bynn-intelligence/skills/bynn-web-sdk.svg" alt="Measured on agentmods" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,188 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00089 $0.02188
Opus 5 $0.00044 $0.01094
Sonnet 5 $0.00018 $0.00438
Haiku 4.5 $0.00009 $0.00219

Measured 7d ago against content hash c2eb2d6654fa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

bynn-web-sdk scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s https://registry.npmjs.org/@bynn-intelligence/websdk/latest | jq -r .version
plugins/bynn/skills/bynn-web-sdk/SKILL.md · 253 lines

How it starts

The opening of the file, as written. The whole thing — 253 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Bynn Web SDK

The fastest way to put identity verification on a page. The SDK renders the form, creates the session, and opens the verification flow. You provide a public key, a KYC level, and a parent element.

Install

Package manager, which is the path that stays current on its own:

npm install @bynn-intelligence/websdk
import { Bynn } from '@bynn-intelligence/websdk';

Script tag, from a CDN that resolves to the latest published build:

<script src="https://unpkg.com/@bynn-intelligence/websdk/dist/bynn.min.js"></script>
<script type="module">
  import * as Bynn from 'https://unpkg.com/@bynn-intelligence/websdk/dist/bynn.esm.js';
</script>

https://cdn.jsdelivr.net/npm/@bynn-intelligence/websdk/dist/bynn.min.js works the same way if you prefer jsDelivr.

Pinning a version

Pinning is the right call for production, because an unversioned CDN URL means a third party can change your verification flow without a deploy on your side. Bynn serves version-pinned builds at:

https://static.bynn.com/sdk/js/<version>/bynn.min.js
https://static.bynn.com/sdk/js/<version>/bynn.esm.js

Look the current version up rather than copying one. Any of these answers it:

npm view @bynn-intelligence/websdk version
curl -s https://registry.npmjs.org/@bynn-intelligence/websdk/latest | jq -r .version

The dashboard also shows a ready-made snippet with the current version at https://dashboard.bynn.com/integration, under "Bynn.js (easy integration)".

Then pin deliberately and upgrade on your own schedule. A version number written down in a guide is stale the moment a release ships, so treat any version you see quoted anywhere as an example, not as the current one.

Mount

The SDK needs one parent element:

<div id="verification-form"></div>
const bynn = Bynn({
  apiKey: 'your_PUBLIC_api_key',
  kycLevel: 'your_kyc_level',
  parentId: 'verification-form',
  fields: [
    { name: 'first_name',    visible: true },
    { name: 'last_name',     visible: true },
    { name: 'email_address', visible: false, value: '[email protected]' },
    { name: 'phone_number',  visible: true },
    { name: 'unique_id',     visible: false, value: '550e8400-e29b-41d4-a716-446655440000' }
  ]
});

bynn.mount();

Read the full file on GitHub · 253 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 253 lines · 89 tokens per session scan A c2eb2d6654fa

Subscribe to this mod's changes

bynn-web-sdk is a skill published in the GitHub repository Bynn-Intelligence/skills (0 stars, last pushed 14d ago), licensed MIT. It adds 89 tokens to every session and 2,188 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

compiler-review

Review Rust port code for port fidelity, convention compliance, and error handling. Compares against the original TypeScript source.

react/react · 27 tokens

add-session-recording

Add privacy-aware session recording and replay to React applications using the Temps SDK. Captures user interactions for playback while respecting privacy through input masking, element blocking, and GDPR-compliant consent flows. Use when the user wants to: (1) Add session recording to their app, (2) Implement session…

gotempsh/temps · 148 tokens

wcag

Expert WCAG (Web Content Accessibility Guidelines) advisor covering WCAG 2.0, 2.1, and 2.2 — the W3C international accessibility standards. Use this skill whenever a user asks about WCAG success criteria, conformance levels (A/AA/AAA), accessibility audits, POUR principles, accessibility statements, ARIA patterns…

Sushegaad/Claude-Skills-Governance-Risk-and-Compliance · 162 tokens

accessibility-auditor

Audit web pages and components for WCAG 2.2 accessibility compliance. Use when a user asks to check accessibility, find a11y issues, audit for WCAG compliance, fix screen reader problems, check color contrast, ensure keyboard navigation works, or prepare for accessibility regulations like the European Accessibility…

TerminalSkills/skills · 69 tokens

wicked-garden-product-accessibility

Use when auditing code for WCAG 2.1 AA compliance — keyboard navigation, ARIA patterns, color contrast, and semantic HTML. Produces prioritized remediation with code-level fixes. NOT for running automated a11y tools (use product:a11y command) or visual design review (use product/visual-review).

mikeparcewski/wicked-garden · 72 tokens

accessibility-audit

Audit web pages and apps for WCAG 2.1 AA accessibility compliance. Use when fixing lighthouse issues, contrast ratios, ARIA labels, or keyboard navigation.

pstuart/pstuart · 38 tokens