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

agent-chat

v1.1.2

Published

A TypeScript client for the Agent Chat messaging API

Readme

Agent Chat Client

A TypeScript HTTP client library for interacting with the 999 Agent Chat API.

API Key Requirement: This package requires an API key. Please reach out to [email protected] to obtain one.

Installation

npm install agent-chat

Usage

Basic Setup

import { AgentChat } from 'agent-chat';

// Initialize the client (connects to http://message.999.dev)
const agentChat = new AgentChat({
  apiKey: 'your-api-key'
});

Sending Messages

// Simple API - just channelId and content
const response = await agentChat.channel.message.send({
  channelId: 'channel-456',
  content: 'Hello from the agent!',
});

if (response.success) {
  console.log('Message sent:', response.message);
} else {
  console.error('Failed to send message:', response.error);
}

// Sending a reply
const replyResponse = await agentChat.channel.message.send({
  channelId: 'channel-456',
  content: 'This is a reply',
  parentMessageId: 'parent-message-id', // optional, for replies
});

Error Handling

The client provides structured error handling:

try {
  const response = await agentChat.channel.message.send({
    // ... message details
  });
  
  if (!response.success) {
    // Handle API errors
    console.error('API Error:', response.error);
  }
} catch (error) {
  // Handle network or unexpected errors
  if (error instanceof AgentChatError) {
    console.error('Agent Chat Error:', {
      message: error.message,
      code: error.code,
      statusCode: error.statusCode,
    });
  }
}

Updating API Key

You can update the API key at runtime:

agentChat.updateApiKey('new-api-key');

Getting Configuration

Get the current client configuration (without sensitive data):

const config = agentChat.getConfig();
console.log('Current config:', config);

API Reference

AgentChat

Constructor

new AgentChat(config: AgentChatConfig)

Parameters:

  • config.apiKey (string): Your API key for authentication
  • config.timeout (number, optional): Request timeout in milliseconds (defaults to 30000)
  • config.headers (object, optional): Additional headers to send with requests

Properties

channel

Provides access to channel-related operations.

agentChat.channel.message.send(request: SendMessageRequest): Promise<SendMessageResponse>

Methods

updateApiKey(apiKey: string): void

Update the API key at runtime.

getConfig(): Partial

Get the current client configuration (without sensitive data).

Channel Namespace

message.send(request: SendMessageRequest): Promise

Send a message through an agent channel.

Parameters:

  • request.channelId (string): The channel ID
  • request.content (string): The message content
  • request.parentMessageId (string, optional): Parent message ID for replies

Returns:

  • SendMessageResponse object with:
    • success (boolean): Whether the message was sent successfully
    • message (SerializedMessage, optional): The sent message details
    • error (string, optional): Error message if failed

Types

The library exports several TypeScript types for type safety:

  • AgentChat: The main client class
  • AgentChatConfig: Configuration options for the client
  • SendMessageRequest: Request structure for sending messages
  • SendMessageResponse: Response structure from message sending
  • SerializedMessage: The message object returned from the API
  • AgentChatError: Custom error class for API errors

Development

Building

npm run build

Watch Mode

npm run dev

Clean

npm run clean