web3auth-integration-guide

web3auth-integration-guide is a skill for Claude Code, Codex from nirholas/three.ws. It costs 60 tokens per session (1,174 once invoked), scanned A, original, Apache-2.0.

An integration guide for adding social login to Web3 applications, so users can sign in with services such as Google, Apple, email, Discord, or Twitter and receive a blockchain wallet.

In plain words
What is it for?
Use it to implement login flows, wallet creation, session handling, key recovery, and RainbowKit integration with Web3Auth.
Why use it?
It explains how to reduce the setup burden of traditional wallets, seed phrases, and separate wallet extensions for new users.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to implement login flows, wallet creation, session handling, key recovery, and RainbowKit integration with Web3Auth.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nirholas/three.ws/web3auth-integration-guide
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 nirholas/three.ws --skill web3auth-integration-guide
Clone the repo
git clone --depth 1 https://github.com/nirholas/three.ws

Made for: Claude Code, Codex.

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 web3auth-integration-guide

README.md
[![agentmods](https://agentmods.dev/badge/skills/nirholas/three.ws/web3auth-integration-guide/github.svg)](https://agentmods.dev/skills/nirholas/three.ws/web3auth-integration-guide)
Your own site
<a href="https://agentmods.dev/skills/nirholas/three.ws/web3auth-integration-guide"><img src="https://agentmods.dev/badge/skills/nirholas/three.ws/web3auth-integration-guide/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for web3auth-integration-guide

Your own site · 80×15
<a href="https://agentmods.dev/skills/nirholas/three.ws/web3auth-integration-guide"><img src="https://agentmods.dev/badge/skills/nirholas/three.ws/web3auth-integration-guide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,174 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00060 $0.01174
Opus 5 $0.00030 $0.00587
Sonnet 5 $0.00012 $0.00235
Haiku 4.5 $0.00006 $0.00117

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

Security

Grade A, and why

web3auth-integration-guide scanned grade A with 0 findings 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 6d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

data/skills/security/web3auth-integration-guide/SKILL.md · 173 lines

How it starts

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

Web3Auth Integration Guide

Web3Auth enables social login (Google, Apple, email) for Web3 apps. Users get a wallet without knowing what a wallet is. Zero-friction onboarding for DeFi.

Why Web3Auth?

Traditional Flow Web3Auth Flow
1. Install MetaMask 1. Click "Sign in with Google"
2. Create wallet 2. Done ✅
3. Write down seed phrase
4. Fund with ETH for gas
5. Start using dApp

Architecture

User clicks "Sign in with Google"
    │
    ▼
Web3Auth SDK → OAuth Provider (Google, Apple, etc.)
    │
    ▼
MPC Key Generation (threshold splitting)
    │
    ├── Share 1: Device (browser)
    ├── Share 2: Web3Auth network
    └── Share 3: Recovery (optional)
    │
    ▼
Ethereum wallet created silently
    │
    ▼
User is logged in with a wallet, no seed phrase needed

Quick Start

npm install @web3auth/modal @web3auth/ethereum-provider
import { Web3Auth } from '@web3auth/modal';
import { EthereumPrivateKeyProvider } from '@web3auth/ethereum-provider';

const chainConfig = {
  chainNamespace: 'eip155',
  chainId: '0xa4b1',  // Arbitrum One
  rpcTarget: 'https://arb1.arbitrum.io/rpc',
  displayName: 'Arbitrum One',
  blockExplorerUrl: 'https://arbiscan.io',
  ticker: 'ETH',
  tickerName: 'Ethereum',
};

const web3auth = new Web3Auth({
  clientId: process.env.WEB3AUTH_CLIENT_ID!,
  web3AuthNetwork: 'sapphire_mainnet',
  chainConfig,
  uiConfig: {
    appName: 'SperaxOS',
    mode: 'dark',
    loginMethodsOrder: ['google', 'apple', 'twitter', 'email_passwordless'],
  },
});

await web3auth.initModal();

Login Methods

Method Flow Best For
Google OAuth 2.0 Most users
Apple Sign in with Apple iOS users
Email Passwordless (magic link) Privacy-focused
Twitter/X OAuth Social-native users
Discord OAuth Gaming/community
SMS OTP verification Mobile users
Passkeys WebAuthn/FIDO2 Security-focused

Read the full file on GitHub · 173 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. 6d ago First seen · 173 lines · 60 tokens per session scan A 8f9be7a6c830

Subscribe to this mod's changes

web3auth-integration-guide is a skill published in the GitHub repository nirholas/three.ws (114 stars, last pushed today), licensed Apache-2.0. It adds 60 tokens to every session and 1,174 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

migrate-to-portal

Migrate an existing Squid SDK indexer (EVM or Solana) off the v2 gateway and onto the Portal data source. Covers the package swap (@subsquid/evm-processor → @subsquid/evm-stream + @subsquid/evm-objects + @subsquid/batch-processor for EVM; @subsquid/solana-stream@^0.x → ^1.x for Solana), the API/type shape changes, and…

subsquid-labs/portal-mcp-server · 200 tokens

portal

Query blockchain data across 130+ networks with SQD Portal, including EVM, Solana, Substrate, Bitcoin, Tron, and Hyperliquid, and choose the right execution path: Portal MCP for bounded answers, Portal Stream API/curl for raw exports, or Pipes/Squid for durable pipelines.

subsquid-labs/portal-mcp-server · 64 tokens

quicknode-skill

Quicknode blockchain infrastructure for 80+ chains: Core RPC API, Streams, Webhooks, Blazar WSS, Solana gRPC, HyperCore gRPC, SQL Explorer, Metaplex DAS API, Blockbook, Ordinals & Runes API, Swap API, x402, MPP, Agent Subscriptions, CLI, and MCP. Use for any Quicknode product, blockchain data access, or wallet-paid…

quiknode-labs/blockchain-skills · 93 tokens

solana-rpc

Expert assistant for Solana JSON-RPC — works with any provider: QuickNode, Helius, Triton, Ankr, Chainstack, or public endpoints. Standard JSON-RPC methods are identical across providers; only the URL differs. Use whenever the user wants raw Solana data: fetch transactions by signature, read account state, get block…

Vo1ganin/crypto-claude-skills · 195 tokens

midnight-api

Comprehensive guide to Midnight Network APIs (v8.0+) for building decentralized applications. Use when users need to integrate Midnight APIs including Compact Runtime, DApp Connector, ZSwap, Wallet, and Ledger APIs, connect DApps to Midnight wallets, generate and verify zero-knowledge proofs programmatically, manage…

mzf11125/midnight_agent_skills · 104 tokens

emblem-ai

One-shot user management for apps, multi-chain wallet authentication, an AI-powered assistant, and AI app introspection. Use when the user wants to let website users sign in with wallets, email/password, or social login and give each user a wallet-enabled account, then embed EmblemAI chat surfaces, connect plugins, or…

EmblemCompany/Agent-skills · 100 tokens