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

isa_agent_sdk

v0.1.0

Published

A comprehensive React SDK for building AI-powered chat interfaces with LangGraph backend integration

Downloads

1

Readme

isA Agent SDK

A comprehensive TypeScript SDK for building AI agent applications with modular, event-driven architecture.

🚀 Quick Start

npm install isa-agent-sdk
import { AIClient, AgentConfig, useAI } from 'isa-agent-sdk';

// Basic setup
const config = new AgentConfig()
  .withEndpoint('http://localhost:8000')
  .withTransport('sse')
  .build();

const client = new AIClient(config);

📚 Documentation

👉 Complete documentation is in the docs/ directory

Start Here: docs/SDK_USAGE_GUIDE.md

The main guide covering:

  • ✅ Installation & Setup
  • ✅ Quick Start Examples
  • ✅ Core Concepts
  • ✅ Configuration
  • ✅ Basic Usage Patterns

Integration with App SDK: docs/INTEGRATION_GUIDE.md

Complete guide for integrating this Agent SDK into the isA App SDK:

  • ✅ Step-by-step integration
  • ✅ Enhanced provider setup
  • ✅ Complete working examples
  • ✅ Combined hooks and configuration

Additional Guides:

🎯 Key Features

  • 🤖 Agent-First Design - Built specifically for AI agent interactions
  • ⚡ Event-Driven Architecture - Real-time streaming and updates
  • 🧩 Modular Components - Use only what you need
  • 🎨 Rich UI Components - Pre-built chat interfaces and controls
  • 🔧 Framework Agnostic - Works with React, Vue, or vanilla JS
  • 📱 Responsive Design - Mobile-friendly components
  • 🎭 Extensible - Custom modules, tools, and transports

🏗️ Architecture

Application Layer (React/Vue/Widget Components)
Integration Layer (Hooks, Composables, Adapters)
Module Layer (Chat, Tools, Memory, Speech)
Core Layer (AIClient, EventBus, StateManager)
Foundation Layer (Types, Transport, Utils, Config)

📦 What's Included

Core Modules

  • ChatModule - Conversation management
  • SessionModule - Session persistence
  • MemoryModule - Context and memory
  • ToolModule - Tool registration and execution

Advanced Modules

  • CanvasModule - Interactive visual AI
  • RAGModule - Retrieval-Augmented Generation
  • HITLModule - Human-in-the-loop workflows

UI Components

  • ChatInterface - Complete chat UI
  • MessageBubble - Message display
  • TextInput - Advanced input controls
  • Button, Icon, Typography - Design primitives

🚀 Getting Started

  1. Read the main guide: docs/SDK_USAGE_GUIDE.md
  2. For App SDK integration: docs/INTEGRATION_GUIDE.md
  3. Explore modules: docs/SDK_MODULES_GUIDE.md
  4. See examples: docs/SDK_EXAMPLES_GUIDE.md

🤝 Integration with isA App SDK

This Agent SDK is designed to seamlessly integrate with the isA App SDK (full-stack framework with Auth0, Supabase, Stripe).

See the complete integration guide: docs/INTEGRATION_GUIDE.md

📄 License

MIT


📖 Start with the main documentation →