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

qwen-collab

v0.1.4

Published

Linux terminal multiplexer for Qwen Code - multiple AI agent sessions in tmux

Readme

Qwen Collab - Linux Terminal Multiplexer for Qwen Code

Qwen Collab — это инструмент для работы с несколькими сессиями Qwen Code в мини-терминалах на базе tmux. Форк идеи Collaborator, адаптированный для Linux и Qwen Code.

Возможности

  • 🖥️ Мини-терминалы: Запуск нескольких сессий Qwen Code в отдельных tmux-панелях
  • 🔄 Персистентность: Сессии сохраняются после закрытия и могут быть восстановлены
  • 🐧 Linux-native: Работает на любом Linux дистрибутиве с tmux
  • 🤖 Qwen Code: Интеграция с открытым AI-агентом Qwen Code

Требования

  • Node.js 20+
  • tmux 3.0+
  • Установленный Qwen Code

Установка

1. Установка зависимостей

# Установка Node.js (если не установлен)
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs

# Установка tmux
sudo apt-get install -y tmux

2. Установка Qwen Code

# Установка Qwen Code через npm
npm install -g @qwen-code/qwen-code@latest

# Или через скрипт установки
bash -c "$(curl -fsSL https://qwen-code-assets.oss-cn-hangzhou.aliyuncs.com/installation/install-qwen.sh)"

3. Установка Qwen Collab

# Клонирование репозитория
git clone https://github.com/MisterReds/qwen-collab.git
cd qwen-collab

# Установка зависимостей
npm install

# Сборка
npm run build

# Создание алиаса
echo 'alias qwen-collab="node $(pwd)/dist/cli.js"' >> ~/.bashrc
source ~/.bashrc

Или через установщик:

curl -fsSL https://raw.githubusercontent.com/MisterReds/qwen-collab/main/install.sh | bash

Использование

Быстрый старт

# Запуск с одной сессией Qwen Code
qwen-collab start

# Запуск с несколькими сессиями (горизонтальное разделение)
qwen-collab start --sessions 3

# Запуск с вертикальным разделением
qwen-collab start --sessions 2 --layout vertical

# Запуск в существующей рабочей директории
qwen-collab start --cwd /path/to/project

Управление сессиями

# Список активных сессий
qwen-collab list

# Подключение к существующей сессии
qwen-collab attach <session-id>

# Создание новой сессии Qwen Code
qwen-collab new [session-name]

# Закрытие сессии
qwen-collab kill <session-id>

# Закрытие всех сессий
qwen-collab kill-all

Горячие клавиши в tmux

| Клавиши | Действие | |---------|----------| | Ctrl+b % | Разделить вертикально | | Ctrl+b " | Разделить горизонтально | | Ctrl+b <стрелки> | Переключение между панелями | | Ctrl+b d | Отсоединиться от сессии | | Ctrl+b x | Закрыть панель | | Ctrl+b s | Список сессий | | Ctrl+b $ | Переименовать сессию |

Архитектура

┌─────────────────────────────────────────────────────────┐
│                    Qwen Collab CLI                       │
├─────────────────────────────────────────────────────────┤
│  Session Manager  │  Layout Engine  │  Config Manager   │
└─────────┬─────────┴─────────┬─────────┴─────────┬───────┘
          │                   │                   │
          ▼                   ▼                   ▼
    ┌───────────┐       ┌───────────┐       ┌───────────┐
    │   tmux    │       │   tmux    │       │   tmux    │
    │  session  │       │  session  │       │  session  │
    │    #1     │       │    #2     │       │    #3     │
    ├───────────┤       ├───────────┤       ├───────────┤
    │ Qwen Code │       │ Qwen Code │       │ Qwen Code │
    └───────────┘       └───────────┘       └───────────┘

Конфигурация

Конфигурационный файл: ~/.qwen-collab/config.json

{
  "defaultSessions": 1,
  "defaultLayout": "horizontal",
  "qwenCodePath": "qwen",
  "tmux": {
    "prefix": "C-b",
    "baseIndex": 1,
    "paneBaseIndex": 1
  },
  "theme": {
    "paneBorder": "green",
    "paneBorder_style": "thick"
  }
}

Отличия от Collaborator

| Функция | Collaborator | Qwen Collab | |---------|-------------|-------------| | Платформа | macOS | Linux | | UI | Electron (GUI) | TUI (tmux) | | AI Агент | Cloud Code | Qwen Code | | Установка | .app bundle | npm / CLI | | Canvas | Бесконечный | tmux панели |

Лицензия

FSL-1.1-ALv2 (как оригинальный Collaborator)

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request