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

tlnt-cli

v0.1.2

Published

Multi-Agent AI Collaboration Platform with Tmux Orchestration

Readme

TLNT - Multi-Agent AI Collaboration Platform

npm version TypeScript License: MIT

TLNT is a powerful multi-agent AI collaboration platform that combines tmux orchestration with multi-LLM support for seamless human-AI collaboration.

🚀 Features

Multi-Agent Orchestration

  • Tmux Integration: Each tmux pane represents a single AI agent
  • Agent Coordination: Coordinated task execution across multiple agents
  • Real-time Communication: Agent-to-agent messaging via HMS-NET
  • Visual Theming: Custom themes for agent identification

Multi-LLM Support

  • OpenAI Integration: GPT-4, GPT-3.5-turbo with native API support
  • Anthropic Claude: Claude-3 family with streaming capabilities
  • Google Gemini: Gemini Pro with advanced reasoning
  • Unified Interface: Single API for all providers
  • System Key Management: Native API key configuration

HMS System Integration

  • HMS-NFO: Clojure-based ETL and data lake integration
  • HMS-API: Laravel program management interface
  • HMS-NET: Go-based agent communication system
  • Cross-System Data Flow: Seamless integration across platforms

Professional CLI Experience

  • React + Ink UI: Rich terminal user interface
  • Commander.js: Robust command structure
  • Agent Lifecycle: Discover, add, reload, and manage agents
  • Status Monitoring: Real-time system and agent status

📦 Installation

npm install -g tlnt-cli

Or using yarn:

yarn global add tlnt-cli

🎯 Quick Start

1. Initialize a new session

tlnt new

2. Start with a specific provider

tlnt new --provider openai
tlnt new --provider anthropic
tlnt new --provider gemini

3. Use multi-agent theme

tlnt new --provider gemini --theme multi-agent

4. Check system status

tlnt status

🛠️ Configuration

API Keys

Set your API keys as environment variables:

export OPENAI_API_KEY="your-openai-key"
export ANTHROPIC_API_KEY="your-anthropic-key"
export GEMINI_API_KEY="your-gemini-key"

HMS System Integration

Configure HMS endpoints:

export HMS_NFO_URL="http://localhost:3000"    # Clojure ETL
export HMS_API_URL="http://localhost:8000"    # Laravel API
export HMS_NET_URL="http://localhost:9000"    # Go messaging

📚 Commands

Agent Management

tlnt agent add <name>           # Add new agent
tlnt agent list                 # List all agents
tlnt agent reload <name>        # Reload specific agent
tlnt agent remove <name>        # Remove agent

Session Management

tlnt new [options]              # Create new session
tlnt status                     # Show system status
tlnt themes                     # List available themes
tlnt providers                  # Show LLM providers

Development

tlnt dev                        # Start development mode
tlnt build                      # Build all packages
tlnt test                       # Run test suite

🏗️ Architecture

┌─────────────────────────────────────────────────────────────┐
│                    TLNT CLI Platform                        │
├─────────────────────────────────────────────────────────────┤
│  CLI Layer (React + Ink)                                   │
│  ├─ Agent Commands    ├─ Session Mgmt    ├─ Status Display │
├─────────────────────────────────────────────────────────────┤
│  Tmux Orchestration                                        │
│  ├─ Session Manager   ├─ Agent Registry  ├─ Theme Engine   │
├─────────────────────────────────────────────────────────────┤
│  Multi-LLM Abstraction                                     │
│  ├─ OpenAI Client     ├─ Anthropic Client ├─ Gemini Client │
├─────────────────────────────────────────────────────────────┤
│  HMS System Integration                                    │
│  ├─ HMS-NFO (Clojure) ├─ HMS-API (Laravel) ├─ HMS-NET (Go) │
├─────────────────────────────────────────────────────────────┤
│  Core Foundation                                           │
│  ├─ Config Management ├─ Tool Registry   ├─ Error Handling │
└─────────────────────────────────────────────────────────────┘

🧪 Development

Prerequisites

  • Node.js >= 18.0.0
  • npm >= 8.0.0
  • tmux (for orchestration features)

Build from Source

git clone https://github.com/tlnt-cli/tlnt.git
cd tlnt
npm install
npm run build
npm test

Package Structure

packages/
├── core/     # LLM, HMS, Tmux orchestration
├── cli/      # Terminal UI and commands
└── sdk/      # External integration library

Scripts

npm run build        # Build all packages
npm run dev          # Development mode
npm run test         # Run tests
npm run lint         # Lint code
npm run format       # Format code
npm run typecheck    # Type checking
npm run clean        # Clean build artifacts

🤝 Contributing

We welcome contributions! Please see our Contributing Guidelines for details.

Development Workflow

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Make your changes
  4. Run tests: npm test
  5. Commit changes: git commit -m 'Add amazing feature'
  6. Push to branch: git push origin feature/amazing-feature
  7. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙋 Support

🏆 Acknowledgments


TLNT - Empowering Multi-Agent AI Collaboration 🚀