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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@usecrow/client

v0.1.17

Published

Headless client for Crow AI agents - streaming, auth, tools

Readme

@usecrow/client

Headless client for Crow AI agents. Framework-agnostic TypeScript client with streaming, authentication, tool calling, and conversation management.

Installation

npm install @usecrow/client

Quick Start

import { CrowClient } from '@usecrow/client';

const client = new CrowClient({
  productId: 'YOUR_PRODUCT_ID',
  apiUrl: 'https://api.usecrow.org',
});

// Send message and stream response
for await (const event of client.sendMessage('Hello!')) {
  if (event.type === 'content') {
    console.log(event.text);
  }
}

Features

Identity / Authentication

// Identify user with JWT from your backend
client.identify({
  token: 'jwt-from-your-backend',
  name: 'John Doe',
  email: '[email protected]',
});

// Reset on logout
client.resetUser();

Client-Side Tools

Register tools that execute in the browser with results flowing back to the agent:

client.registerTools({
  addToCart: async ({ productId, quantity }) => {
    await cartApi.add(productId, quantity);
    return { status: 'success', data: { cartCount: 3 } };
  },
  
  getCurrentPage: async () => {
    return { status: 'success', data: { path: window.location.pathname } };
  },
});

Streaming Events

for await (const event of client.sendMessage('Help me checkout')) {
  switch (event.type) {
    case 'content':
      // Text content chunk
      updateUI(event.accumulated);
      break;
    case 'thinking':
      // Reasoning/thinking trace
      showReasoning(event.content);
      break;
    case 'tool_call_start':
      // Server-side tool started
      showToolStatus(event.toolName);
      break;
    case 'client_tool_call':
      // Client-side tool requested
      // (automatically executed if registered)
      break;
    case 'done':
      // Stream complete
      break;
  }
}

Conversation Management

// Get conversation history (for verified users)
const conversations = await client.getConversations();

// Load and switch to a conversation
await client.switchConversation(conversationId);

// Start new conversation
client.clearMessages();

Context

// Set context data sent with messages
client.setContext({
  page: '/checkout',
  cartTotal: 99.99,
});

API Reference

CrowClient

Constructor Options

| Option | Type | Required | Description | |--------|------|----------|-------------| | productId | string | Yes | Your Crow product ID | | apiUrl | string | No | API URL (default: https://api.usecrow.org) | | model | string | No | Default model to use |

Methods

| Method | Description | |--------|-------------| | sendMessage(content) | Send message, returns async generator of events | | send(content) | Send message and wait for complete response | | stop() | Stop current generation | | identify(options) | Identify user with JWT | | resetUser() | Reset user identity | | registerTools(handlers) | Register client-side tools | | setContext(data) | Set context data | | clearMessages() | Clear messages, start new conversation | | getConversations() | Get conversation list (verified users) | | loadHistory(id) | Load conversation history | | switchConversation(id) | Switch to different conversation | | destroy() | Clean up resources |

Properties

| Property | Type | Description | |----------|------|-------------| | messages | Message[] | Current messages | | isLoading | boolean | Whether currently streaming | | conversationId | string \| null | Current conversation ID |

TypeScript Support

Full TypeScript support with exported types:

import type {
  CrowClientConfig,
  Message,
  StreamEvent,
  ToolHandler,
  ToolResult,
} from '@usecrow/client';

License

MIT