New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@tiwater/viber

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@tiwater/viber

Agent Framework for Vibe-working

npmnpm
Version
0.4.0
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source
Viber Logo

Agent Framework supporting React and Svelte

Viber is a flexible multi-agent AI framework for building collaborative AI applications. It provides:

  • 🤖 Agent System - Define and orchestrate multiple AI agents
  • 🛠️ Tool Framework - Decorator-based tool definitions with Zod schemas
  • 📦 Space Management - Organize conversations, artifacts, and tasks
  • 🔄 State Management - Zustand-based reactive state
  • 🎯 Framework Agnostic - Works with React, Svelte, or vanilla JS

Installation

npm install viber
# or
pnpm add viber

Quick Start

import { Agent, Space, streamText } from 'viber';

// Create an agent
const agent = new Agent({
  name: 'Assistant',
  model: 'openai:gpt-4o',
  systemPrompt: 'You are a helpful assistant.',
});

// Stream a response
const result = await agent.streamText({
  messages: [{ role: 'user', content: 'Hello!' }],
});

Documentation

See the docs folder for full documentation and examples.

License

MIT

Keywords

multi-agent

FAQs

Package last updated on 26 Jan 2026

Related posts