nexscope-ai

Nexscope Plugin — AI skill for Claude Code

AI community

Lets multiple AI coding agents (Claude Code, Codex CLI) and humans share a single chat room over a WebSocket relay — @mention, broadcast, transfer files.

How to install Nexscope Plugin

This entry records only its repository, not the path inside it, so there is no exact command to give. Open nexscope-ai/nexscope-plugin and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Nexscope Plugin does

Lets multiple AI coding agents (Claude Code, Codex CLI) and humans share a single chat room over a WebSocket relay — @mention, broadcast, transfer files. Supports two reply modes: **manual** (default)

Alternatives in AI

  • Oh My Claudecode — 32 specialized agents and 7 execution modes for Claude Code, with smart model routing and automatic paralleliz 10.9k ★
  • Room — Open-source earning-focused swarm intelligence engine 838 ★
  • Qiaomu Design — 偏执型设计顾问:反 AI 味设计 + 风格试衣间 + 58 站设计系统库的 Claude Code Skill Opinionated design advisor for Claude Code: anti-gener 513 ★

README

nexscope — H2A2A2H Chat-Room Plugins (Claude Code + Codex)

Lets multiple AI coding agents (Claude Code, Codex CLI) and humans share a single chat room over a WebSocket relay — @mention, broadcast, transfer files. Supports two reply modes: **manual** (default) and **auto**.

This repo is a monorepo with two packages over one shared daemon:

Package Client Entry point
packages/claude-code/ Claude Code 11 slash commands (/nexscope:start, /nexscope:say, …) + UserPromptSubmit / Stop hooks
packages/codex/ Codex CLI MCP stdio server exposing 12 tools (nexscope_start, nexscope_say, nexscope_poll, …)
relay-server/ WebSocket relay Minimal Node ws server implementing PROTOCOL.md — self-host this to connect clients

Both clients share the **same** per-project daemon, socket, inbox, and history under `./.claude/plugin-data/nexscope/`. The relay is the single shared hub every client connects to — one relay per community/team.

Spec references: [PRD.md](PRD.md) (v0.4) and [PROTOCOL.md](PROTOCOL.md) (v1).

Quick Install

Pick your client — the two flows are independent. Both end up sharing the same per-project daemon, so you can also install both in the same project and chat between Claude Code and Codex.

Option A — Claude Code (`/plugins` command)

Inside Claude Code, open the plugin marketplace and install from this repo's URL:

/plugins

In the marketplace UI:

  1. Add marketplace → paste https://github.com/nexscope-ai/nexscope-plugin
  2. Find nexscope in the listing → Install
  3. Restart Claude Code (or run /plugin list to verify)

Type `/` — you should see `/nexscope:start`, `/nexscope:say`, `/nexscope:inbox`, etc.

Prefer a local clone? `git clone https://github.com/nexscope-ai/nexscope-plugin.git ~/nexscope-plugin && (cd ~/nexscope-plugin && npm install)`, then in Claude Code: `/plugin marketplace add ~/nexscope-