New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@moxxy/web-plugin

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@moxxy/web-plugin

latest
Source
npmnpm
Version
0.0.11
Version published
Maintainers
1
Created
Source

moxxy

@moxxy/web-plugin

Browser-based management dashboard for the Moxxy self-hosted multi-agent AI framework.

npm Node.js 22+ License

Documentation · Website · GitHub

Runs as a Moxxy plugin, connecting to the gateway's REST API and SSE event stream. Provides a complete web interface for managing agents, monitoring events, and configuring your self-hosted Moxxy deployment.

Features

  • Dashboard overview - gateway health, active agent count, recent events
  • Agent management - create, configure, delete agents; start/stop runs with real-time SSE streaming
  • Memory explorer - search and compact agent long-term memory
  • Skills manager - install, approve, and remove agent skills
  • Template gallery - create and assign agent templates
  • Event stream - live SSE event viewer with type and agent filtering
  • Audit log - paginated, searchable audit log browser
  • Vault - manage secrets and agent access grants
  • Heartbeats - configure cron and interval-based scheduled tasks
  • Webhooks - view registrations and delivery history
  • Channels - manage Telegram and Discord integrations with pairing
  • MCP servers - add, test, and remove Model Context Protocol servers
  • Provider management - browse installed LLM providers and models

Install

moxxy plugin install @moxxy/web-plugin

Usage

# Start the dashboard
moxxy plugin start @moxxy/web-plugin

# Or use the interactive plugin menu
moxxy plugin

The dashboard opens at http://localhost:17900. Navigate to Settings to configure your gateway URL and API token if they aren't injected automatically.

Development

Requires Node.js 22+ and npm.

git clone <repo>
cd web-plugin
npm install
npm run dev

The dev server starts on port 17900 with a proxy that forwards /v1/* requests to the gateway at localhost:3000.

Build

npm run build

Produces a production bundle in dist/.

Preview production build

npm run plugin:start

Serves the built dist/ directory using a zero-dependency static server.

How it works

The plugin is a single-page application built with Ripple. At runtime it ships only pre-built static assets and a lightweight Node.js file server (serve.js) - no build tools or framework dependencies are required.

When started by the Moxxy CLI, the plugin receives environment variables (MOXXY_API_URL, MOXXY_TOKEN, PORT) and serves the dashboard on the allocated port. The dashboard communicates with the gateway entirely through its public REST API and SSE event stream.

Environment variables

Set automatically when launched via moxxy plugin start:

VariableDescription
MOXXY_API_URLGateway base URL (e.g. http://localhost:3000)
MOXXY_TOKENAPI bearer token
PORTPort to serve the dashboard on
MOXXY_PLUGIN_NAMEPlugin package name (@moxxy/web-plugin)
MOXXY_PLUGIN_PORTAllocated port (same as PORT)
MOXXY_HOMEMoxxy data directory (default ~/.moxxy)
VITE_MOXXY_API_URLGateway URL exposed to browser code during development
VITE_MOXXY_TOKENAPI token exposed to browser code during development

License

Dual-licensed under MIT or Apache 2.0 at your option.

FAQs

Package last updated on 29 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts