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

symbiont-sdk-js

v0.3.1

Published

Symbiont JavaScript SDK - Monorepo

Readme

Symbiont JavaScript/TypeScript SDK

npm version TypeScript License: MIT

A comprehensive, type-safe JavaScript/TypeScript SDK for building and managing AI agents on the Symbiont platform. Get started quickly with full TypeScript support, intelligent caching, and enterprise-grade security.

🚀 Quick Start

Prerequisites

The Symbiont SDK requires a running Symbiont runtime. Choose one of these options:

Option 1: Docker (Recommended)

# Start Symbiont runtime with Docker
docker run --rm -p 8080:8080 ghcr.io/thirdkeyai/symbi:latest mcp

Option 2: Build from Source

# Clone and build the runtime
git clone https://github.com/thirdkeyai/symbiont
cd symbiont
cargo build --release
cargo run -- mcp --port 8080

Installation

npm install @symbiont/core

Hello World

import { SymbiontClient } from '@symbiont/core';

const client = new SymbiontClient({
  apiKey: process.env.SYMBIONT_API_KEY,
  environment: 'production'
});

await client.connect();

// Create and execute your first agent
const agent = await client.agents.createAgent({
  name: 'textProcessor',
  description: 'Processes and analyzes text input',
  parameters: [{ name: 'text', type: { name: 'string' }, required: true }],
  returnType: { name: 'string' },
  capabilities: ['text_processing']
});

const result = await client.agents.executeAgent(
  agent.id,
  { text: 'Hello, Symbiont!' }
);

console.log('Result:', result.result);

✨ Core Features

  • 🤖 AI Agent Management - Create, deploy, and execute intelligent agents
  • 🔐 Security-First - Built-in policy management and secrets handling
  • 🛡️ Type Safety - Full TypeScript support with runtime validation
  • ⚡ High Performance - Intelligent caching and optimized networking
  • 🔄 Auto-Authentication - Seamless token management and refresh
  • 📦 Modular Design - Use only what you need
  • 🌍 Cross-Platform - Node.js, browser, and edge runtime support

📚 Documentation

🎯 Getting Started

Complete installation guide, configuration options, and your first agent

📖 User Guides

🔍 API Reference

Complete API documentation with examples and type definitions

🏗️ Architecture

📦 SDK Packages

| Package | Purpose | Installation | |---------|---------|--------------| | @symbiont/core | Main client and authentication | npm install @symbiont/core | | @symbiont/agent | Agent lifecycle management | npm install @symbiont/agent | | @symbiont/policy | Policy creation and validation | npm install @symbiont/policy | | @symbiont/secrets | Secure secrets management | npm install @symbiont/secrets | | @symbiont/tool-review | Security review workflow | npm install @symbiont/tool-review | | @symbiont/mcp | MCP protocol integration | npm install @symbiont/mcp |

🛠️ Configuration

Environment Variables

# Required
SYMBIONT_API_KEY=your_api_key_here

# Optional
SYMBIONT_API_URL=https://api.symbiont.dev
SYMBIONT_ENVIRONMENT=production

Client Configuration

const client = new SymbiontClient({
  apiKey: process.env.SYMBIONT_API_KEY,
  environment: 'production',
  validationMode: 'strict',
  timeout: 30000,
  debug: false
});

🎯 Common Use Cases

Agent Creation and Execution

// Create a data analysis agent
const agent = await client.agents.createAgent({
  name: 'dataAnalyzer',
  description: 'Analyzes datasets and generates insights',
  parameters: [
    { name: 'dataset', type: { name: 'object' }, required: true },
    { name: 'analysisType', type: { name: 'string' }, required: false }
  ],
  capabilities: ['data_processing', 'visualization'],
  policies: [dataAccessPolicy]
});

const insights = await client.agents.executeAgent(agent.id, {
  dataset: myData,
  analysisType: 'trend_analysis'
});

Policy Management

import { PolicyBuilder } from '@symbiont/policy';

// Create access control policy
const policy = new PolicyBuilder('dataAccessPolicy')
  .allow('read', 'analyze')
    .where('user.department', 'equals', 'analytics')
    .where('data.classification', 'not-equals', 'restricted')
  .require('approval')
    .where('action', 'equals', 'export')
  .build();

Secrets Management

import { SecretManager } from '@symbiont/secrets';

const secrets = new SecretManager({
  providers: [
    { name: 'environment', priority: 100 },
    { name: 'vault', priority: 200, endpoint: 'https://vault.company.com' }
  ]
});

const apiKey = await secrets.getSecret('EXTERNAL_API_KEY');

🆘 Getting Help

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for development setup and guidelines.

git clone https://github.com/thirdkeyai/symbiont-sdk-js
cd symbiont-sdk-js
npm install
npm run build
npm test

📄 License

MIT License - see LICENSE file for details.


Ready to build the future of AI? Get started now →