JSPM

@agent-link/server

0.1.175
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5372
  • Score
    100M100P100Q116427F
  • License MIT

AgentLink relay server

Package Exports

  • @agent-link/server
  • @agent-link/server/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@agent-link/server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

AgentLink Server

npm License: MIT

Relay server for AgentLink — use Claude Code from any browser.

AgentLink lets you run Claude Code on your local machine and access it through a web interface. The server acts as an encrypted WebSocket relay between your browser and the local agent. No data is stored on the server.

Install

npm install -g @agent-link/server

Usage

# Start server (foreground)
agentlink-server start --port 3456

# Start server (background)
agentlink-server start --daemon --port 3456

# Stop server
agentlink-server stop

# Check status
agentlink-server status

# Upgrade to latest version
agentlink-server upgrade

# Auto-start on boot
agentlink-server service install --port 3456
agentlink-server service uninstall

How it works

Browser ↔ AgentLink Server ↔ AgentLink Client ↔ Claude Code
  (web)      (relay)            (your machine)     (CLI)

The server is a lightweight Express + WebSocket relay. It serves the web UI, assigns unique session URLs, and forwards encrypted messages between the browser and the agent.