npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@stytch/is-agent

v0.3.0

Published

React components to detect AI Agents, powered by Stytch

Readme

@stytch/is-agent

React components and utilities to detect AI agents and bots, powered by Stytch.

Installation

npm install @stytch/is-agent

Quick Start

import React from 'react';
import { createAgentContext } from '@stytch/is-agent';

// Initialize with your Stytch public token
const { useIsAgent, IsAgent, IsHuman } = createAgentContext('your-stytch-public-token');

function App() {
  return (
    <div>
      <IsHuman>
        <p>This content is only shown to humans</p>
      </IsHuman>

      <IsAgent>
        <p>This content is only shown to bots</p>
      </IsAgent>
    </div>
  );
}

API Reference

createAgentContext(publicToken: string)

Creates a React context with bot detection capabilities using your Stytch public token.

Parameters:

  • publicToken - Your Stytch public token

Returns:

  • useIsAgent - React hook for bot detection
  • IsAgent - Component that renders children only for bots
  • IsHuman - Component that renders children only for humans

useIsAgent() Hook

A React hook that provides bot detection state and results.

Returns an object with:

  • isAgentClientHint: boolean | null - Whether the client is likely an agent
  • identity: string | null - Identity of the detected agent (if available)
  • loading: boolean - Whether the detection is in progress
  • error: Error | null - Any error that occurred during detection
function MyComponent() {
  const { isAgentClientHint, identity, loading, error } = useIsAgent();

  if (loading) return <div>Checking if you're a bot...</div>;
  if (error) return <div>Error: {error.message}</div>;

  return (
    <div>
      <p>Bot detected: {isAgentClientHint ? 'Yes' : 'No'}</p>
      {identity && <p>Bot identity: {identity}</p>}
    </div>
  );
}

<IsAgent> Component

Conditionally renders children only when the client is detected as a bot.

Props:

  • loadingComponent?: React.ReactNode - Component to show while loading
  • errorComponent?: React.ReactNode | ((props: { error: Error }) => React.ReactNode) - Component to show on error
  • children - Content to render for bots
<IsAgent loadingComponent={<div>Loading...</div>} errorComponent={<div>Error occurred</div>}>
  <p>Hello, bot!</p>
</IsAgent>

<IsHuman> Component

Conditionally renders children only when the client is detected as human.

Props:

  • loadingComponent?: React.ReactNode - Component to show while loading
  • errorComponent?: React.ReactNode | ((props: { error: Error }) => React.ReactNode) - Component to show on error
  • children - Content to render for humans
<IsHuman loadingComponent={<div>Loading...</div>} errorComponent={<div>Error occurred</div>}>
  <p>Hello, human!</p>
</IsHuman>

isAgent(publicToken: string)

Low-level function to check if the current client is a bot. This is used internally by the React components but can be used directly if needed.

Parameters:

  • publicToken - Your Stytch public token

Returns:

  • Promise<{ is_agent_client_hint: boolean; identity: string | null }>

Requirements

  • React 17.0.0 or higher
  • A valid Stytch public token

Getting a Stytch Public Token

  1. Sign up for a Stytch account
  2. Create a new project
  3. Copy your public token from the project dashboard

Support

For issues and contributions, please visit our GitHub repository and for help, please email [email protected].