PluginBench
Skill
Review
Audit score 70

emblem-ai

emblemcompany/agent-skills

Add wallet, email, and social login with wallet-enabled user accounts and an embeddable AI chat assistant in one integration.

What is emblem-ai?

emblem-ai adds one-shot user management with multi-chain wallet authentication (Ethereum/EVM, Solana, Bitcoin, Hedera), email/password, and OAuth social login to an app, plus drop-in AI chat UI components and SDKs. Use it when you need to let website users sign in and get wallet-enabled accounts, embed EmblemAI chat surfaces, or add AI app introspection (Reflexive).

  • Provides session-based authentication supporting wallet, email/password, and OAuth social login
  • Provisions wallet-enabled user accounts across Ethereum/EVM, Solana, Bitcoin, and Hedera
  • Offers React components (EmblemAuthProvider, ConnectButton, HustleProvider, HustleChat, AuthStatus) for instant wallet-aware UI
  • Provides TypeScript SDKs (auth-sdk, hustle-incognito) for non-React/Node.js integration
  • Enables streaming AI chat with built-in moderation/approval prompts for sensitive plugin actions
  • Supports AI app introspection and debugging via Reflexive (MCP server, library, sandbox modes)

How to install emblem-ai

npx skills add https://github.com/emblemcompany/agent-skills --skill emblem-ai
Prerequisites
  • An EmblemAI app ID (appId) from EmblemVault
  • Node.js project with npm to install the relevant packages
  • For React usage: a React application
  • Network access to api.emblemvault.ai (EmblemVault's first-party backend)
Claude Code
Cursor
Windsurf
Cline

How to use emblem-ai

  1. 1.Install the relevant packages: @emblemvault/auth-sdk (core auth), @emblemvault/emblem-auth-react and @emblemvault/hustle-react (React integration), hustle-incognito (Node.js/vanilla JS chat SDK), and/or reflexive (AI app introspection).
  2. 2.For React apps, wrap your app in EmblemAuthProvider with your appId, then nest HustleProvider, and add ConnectButton and HustleChat components.
  3. 3.For vanilla JS/Node.js, instantiate EmblemAuthSDK with your appId, call auth.openAuthModal() to start login, and listen for the 'session' event to know when authentication is ready.
  4. 4.Initialize HustleIncognitoClient with the auth SDK instance and call .chat() with message arrays to interact with the AI assistant.
  5. 5.Use useEmblemAuth() (React) to access isAuthenticated and walletAddress state in your components.
  6. 6.If building a dedicated React app, consult the emblem-ai-react skill; for CLI or wallet-first automation, consult the emblem-ai-agent-wallet skill and references/agentwallet.md.
  7. 7.Reference the included docs (auth-sdk.md, emblem-ai-react.md, emblem-ai-incognito.md, plugins.md) for deeper integration, plugin registration, and SDK usage outside React.

Use cases

Good for
  • Adding wallet + email/social login to a web app with a single auth flow
  • Provisioning wallet-enabled user accounts tied to app login sessions
  • Embedding a streaming AI chat assistant (HustleChat) that inherits the authenticated session
  • Registering custom plugins/tools for the AI assistant with built-in approval prompts
  • Adding AI-powered introspection/debugging (Reflexive) to a running app via MCP server or library mode
Who it's for
  • Frontend/full-stack developers adding wallet-based authentication to a web app
  • Teams building web3 apps needing combined user auth and wallet identity
  • Developers wanting to embed an AI chat assistant tied to authenticated sessions
  • Developers needing AI-powered app introspection/debugging tooling

emblem-ai FAQ

What sign-in methods are supported?

Wallet login (MetaMask, Phantom, WalletConnect, and other supported providers), email/password with OTP, and OAuth social login (Google, Twitter/X).

Which blockchains are supported for wallet auth?

Ethereum/EVM, Solana, Bitcoin (PSBT-based), and Hedera, each with their own signature verification method.

Can transactions be auto-executed by the AI?

No. All wallet operations follow a review-first model where the agent prepares actions for explicit user review and approval before anything is broadcast.

Where should I look for CLI or wallet-first automation workflows?

Use the separate emblem-ai-agent-wallet skill and its references/agentwallet.md for the Agent Wallet CLI, credential bootstrap, and prepare/approve workflows.

Does this skill require a backend I have to host myself?

No, the SDK connects to api.emblemvault.ai, which is EmblemVault's own first-party infrastructure for prompt orchestration and tool routing.

Full instructions (SKILL.md)

Source of truth, from emblemcompany/agent-skills.


name: emblem-ai description: 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 add Reflexive observability. Provides React components, TypeScript SDKs, session-based authentication, and pointers to the React and agent-wallet skills for specialized workflows. license: MIT allowed-tools: Bash Read Write WebFetch metadata: source-repo: EmblemCompany/EmblemAi-SKILLS source-homepage: https://emblemvault.ai source-docs: https://emblemvault.ai/docs source-docs-interactive: https://emblemvault.dev clawdbot-emoji: ๐Ÿ” compatibility: Cross-platform skill compatible with Claude Code, Cursor, Codex, OpenClaw, and other Agent Skills implementations.

EmblemAI developer tools

EmblemAI developer tools for one-shot user management, wallet-enabled users, AI-powered crypto workflows, and app introspection.

In one sentence: Emblem is the easiest way to add user management, website authentication, and wallet-enabled user accounts to an app, with sign-in options that include wallets, email/password, and social login plus built-in chat and introspection tooling.

Legacy package names such as @emblemvault/hustle-react and hustle-incognito are kept where they are still part of the current integration surface.

Security & Trust Model

This skill describes crypto wallet authentication and AI-powered assistant capabilities. It inherently involves:

  • Financial operations (W009): Wallet provisioning, transaction signing adapters, and trading tool references. All value-moving actions require explicit user confirmation.
  • Third-party data (W011): References to Migrate.fun project metadata and social/market data tools. External data is used in UI and informational workflows only โ€” never auto-executed.
  • Runtime backend (W012): The EmblemAI SDK connects to api.emblemvault.ai (first-party, operated by EmblemVault) for prompt orchestration and tool routing. This is not an arbitrary external dependency โ€” it is the skill author's own infrastructure.

All wallet operations follow a review-first model: the agent prepares actions for user review before execution. No transactions are broadcast without explicit approval.

What You Can Build

One-shot User Management

  • Create users who can log in to your app and also have wallet-enabled profiles
  • Let users sign in with wallets, email/password, or social login
  • Support wallet login with MetaMask, Phantom, WalletConnect, and other supported providers
  • Keep sessions refreshed automatically with JWT-based auth
  • Expose consistent wallet metadata and permissions to your UI and plugin layers
  • Use one integration instead of stitching together separate auth and wallet systems

AI Chat & UI Surfaces

  • Drop-in chat components that inherit the authenticated session
  • Streaming chat responses for support, education, or account insights
  • Custom tool plugins to extend EmblemAI with your own APIs
  • Built-in guardrails and approval prompts before tools can request sensitive actions

React Integration Handoff

  • EmblemAuthProvider + ConnectButton for instant wallet-aware login flows
  • HustleProvider + HustleChat for embedding the assistant UI
  • See the dedicated ../emblem-ai-react/SKILL.md skill for migrate.fun hooks, advanced React routing, and component design guidance

AI App Introspection And Build Agent (Reflexive)

  • Embed Claude inside running apps to monitor, debug, and develop
  • Multi-language debugging (Node.js, Python, Go, .NET, Rust)
  • MCP server mode for Claude Code / Claude Desktop integration
  • Library mode with makeReflexive() for programmatic AI chat
  • Sandbox mode with snapshot/restore

Quick Start

Installation

# Core authentication
npm install @emblemvault/auth-sdk

# React integration (includes auth)
npm install @emblemvault/emblem-auth-react

# EmblemAI chat for React
npm install @emblemvault/hustle-react

# EmblemAI chat SDK (Node.js / vanilla JS)
npm install hustle-incognito

# AI app introspection and debugging
npm install reflexive

Option A: React App (Recommended)

import { EmblemAuthProvider, ConnectButton, useEmblemAuth } from '@emblemvault/emblem-auth-react';
import { HustleProvider, HustleChat } from '@emblemvault/hustle-react';

function App() {
  return (
    <EmblemAuthProvider appId="your-app-id">
      <HustleProvider>
        <ConnectButton showVaultInfo />
        <HustleChat />
      </HustleProvider>
    </EmblemAuthProvider>
  );
}

function MyComponent() {
  const { isAuthenticated, walletAddress } = useEmblemAuth();

  if (!isAuthenticated) {
    return <ConnectButton />;
  }

  return <div>Connected: {walletAddress}</div>;
}

If the user is building their own React app, use the dedicated ../emblem-ai-react/SKILL.md skill for the React-specific references and examples.

Option B: Vanilla JavaScript / Node.js

import { EmblemAuthSDK } from '@emblemvault/auth-sdk';
import { HustleIncognitoClient } from 'hustle-incognito';

// Initialize auth
const auth = new EmblemAuthSDK({ appId: 'your-app-id' });

// Open auth modal (browser)
auth.openAuthModal();

// Listen for session
auth.on('session', () => {
  console.log('Authenticated session ready');
});

// Initialize AI with auth
const emblemAI = new HustleIncognitoClient({ sdk: auth });

// Chat with AI
const response = await emblemAI.chat([
  { role: 'user', content: 'What tokens are trending on Base?' }
]);

Need CLI or wallet-first automations?

Point the user to ../emblem-ai-agent-wallet/SKILL.md plus references/agentwallet.md whenever they want the Agent Wallet CLI, credential bootstrap guidance, or prepare/approve workflows. Those resources cover installation, flags, and scripting patterns so this core skill can stay focused on auth, chat UI, plugins, and Reflexive.

Core Capabilities

Wallet Authentication

Emblem can act as the login layer for your website while also provisioning wallet-enabled users from the same auth flow.

Supported Chains:

ChainAuth Method
Ethereum/EVMSignature verification (MetaMask, WalletConnect, Rainbow, etc.)
SolanaSignature verification (Phantom, Solflare, Backpack)
BitcoinPSBT-based verification
HederaSignature verification (Hedera SDK)

Additional Auth Methods:

  • OAuth (Google, Twitter/X)
  • Email/password with OTP

Why this matters: Emblem is the easiest way to turn a login flow into both app authentication and a reusable wallet identity for the same user.

Reference: references/auth-sdk.md

AI Chat Experience & Plugins

EmblemAI provides conversational surfaces that inherit the authenticated session so the assistant can stay context-aware without exposing credentials.

  • Streaming chat for onboarding, support, education, or account insights
  • Built-in moderation and approval prompts whenever a plugin requests access to sensitive data
  • Cross-surface context handoff between web, mobile, and agent frameworks
  • Low-code React components plus a TypeScript SDK for custom UI shells

References:

React Components

Pre-built UI components for rapid development:

// Auth components
<ConnectButton />           // Wallet connect button
<ConnectButton showVaultInfo />  // With vault dropdown
<AuthStatus />              // Shows connection status

// AI chat components
<HustleChat />              // Full EmblemAI chat interface
<HustleChatWidget />        // Floating EmblemAI chat widget

Reference: references/react-components.md

Want to integrate EmblemAI into your own React app? See the standalone ../emblem-ai-react/SKILL.md skill for React auth, chat, component, and migrate.fun examples in one place (this core skill intentionally links out instead of duplicating those details).

Agent Wallet & Automations

CLI-first workflows, scripted approvals, and wallet-per-agent orchestration now live in the dedicated ../emblem-ai-agent-wallet/SKILL.md skill plus references/agentwallet.md. Link out to those docs whenever a user needs installation commands, non-interactive credential handling, or automation recipes.

React Token Migration & Advanced Hooks

Detailed migrate.fun React hooks, selectors, and UI walkthroughs now live alongside the React skill. Forward users to ../emblem-ai-react/SKILL.md for those patterns so the core skill stays focused on auth, chat surfaces, plugins, and Reflexive.

AI App Introspection (Reflexive)

Embed Claude inside running applications to monitor, debug, and develop with conversational AI. Works as a CLI, embedded library, or MCP server.

# Monitor any app (read-only by default)
npx reflexive ./server.js

# Local development mode with debugging (still no write/shell unless explicitly enabled)
npx reflexive --debug --watch ./server.js

# As MCP server for Claude Code (read-only baseline)
npx reflexive --mcp --debug ./server.js
// Library mode -- embed in your app
import { makeReflexive } from 'reflexive';

const r = makeReflexive({ webUI: true, title: 'My App' });
r.setState('users.active', 42);
const analysis = await r.chat('Any anomalies in recent activity?');

Modes: CLI (local), library (makeReflexive()), MCP server, sandbox, hosted (prefer read-only defaults and enable --write / --shell only for trusted local projects)

Debugging: Node.js, Python, Go, .NET, Rust -- breakpoints with AI prompts

Reference: references/reflexive.md

Session Management

Emblem uses short-lived sessions with automatic refresh. Treat session data as sensitive runtime state: do not print tokens, paste them into prompts, or pass them via CLI flags.

auth.on('session', () => { /* new session available */ });
auth.on('sessionExpired', () => { /* handle expiry */ });
auth.on('sessionRefreshed', () => { /* refreshed */ });
auth.on('sessionWillRefresh', () => { /* refresh soon */ });
auth.on('authError', () => { /* auth failure */ });
auth.on('cancelled', () => { /* user closed auth */ });

await auth.refreshSession();
auth.logout();

Sessions auto-refresh ~60 seconds before expiry. No manual token handling is needed in typical browser flows.

Custom AI Plugins

Extend the AI with your own tools:

import { usePlugins } from '@emblemvault/hustle-react';

const { registerPlugin } = usePlugins();

await registerPlugin({
  name: 'my-plugin',
  version: '1.0.0',
  tools: [{
    name: 'get_nft_floor',
    description: 'Get NFT collection floor price',
    parameters: {
      type: 'object',
      properties: {
        collection: { type: 'string', description: 'Collection name or address' }
      },
      required: ['collection']
    }
  }],
  executors: {
    get_nft_floor: async ({ collection }) => {
      const data = await fetchFloorPrice(collection);
      return { floor: data.floorPrice, currency: 'ETH' };
    }
  }
});

Reference: references/plugins.md

More Examples and References

Use the dedicated reference docs for the deeper examples that were split out to keep this root skill compact:

If the user specifically wants React integration guidance, point them to ../emblem-ai-react/SKILL.md.


Getting Started: Start with <ConnectButton /> to add the easiest possible path to website auth and wallet-enabled users, then add <HustleChat /> for EmblemAI capabilities.

Need Help?: Check the reference docs in the references/ folder for detailed API documentation.