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

vasperamesh

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vasperamesh

VasperaMesh CLI - AI Agent Orchestration Platform. Connect, coordinate, and orchestrate AI agents across your projects.

Source
npmnpm
Version
0.1.2
Version published
Weekly downloads
1
-87.5%
Maintainers
1
Weekly downloads
 
Created
Source

VasperaMesh CLI

Turn solo AI agents into collaborative swarms.

VasperaMesh is a multi-agent orchestration platform that coordinates AI agents across your codebase. Run security scans, code reviews, and automated analysis with 37+ production-ready agents.

npm version License: MIT

Installation

npm install -g vasperamesh

Quick Start

1. Create an Account

vasperamesh install

This opens your browser to create a free account at vasperamesh.com.

2. Connect Your Account

vasperamesh connect

You'll be prompted to either:

  • Paste your API key (get one from vasperamesh.com/api-keys)
  • Browser authentication (opens sign-in page)

3. Initialize Your Project

cd your-project
vasperamesh init

4. Run Your First Scan

# Scan current directory with all bundled agents
vasperamesh scan

# Scan with specific agents
vasperamesh scan --agents security-scanner,code-reviewer

# Scan specific files
vasperamesh scan src/auth.ts

Commands

CommandDescription
vasperamesh installFirst-time setup - create account
vasperamesh connectConnect existing account
vasperamesh initInitialize mesh in current project
vasperamesh scan [path]Scan code with AI agents
vasperamesh watchStream real-time events from mesh
vasperamesh debatesView agent debates and discussions
vasperamesh createCreate a new custom agent
vasperamesh publishPublish agent to marketplace

Local-First Scanning

Run scans locally without sending code to the cloud:

# Uses local LLM providers (Ollama, etc.)
vasperamesh scan --local

# Specify provider
vasperamesh scan --provider ollama --model llama3.2

Bundled Agents

VasperaMesh includes 37+ production-ready agents:

AgentDescription
security-scannerOWASP Top 10, SQL injection, XSS detection
code-reviewerCode quality, complexity, maintainability
todo-scannerFind and track TODO/FIXME comments
dependency-checkerOutdated packages, vulnerabilities
type-checkerTypeScript/type annotation issues
performance-analyzerMemory leaks, N+1 queries, bottlenecks
accessibility-checkerWCAG compliance, a11y issues
api-reviewerREST/GraphQL best practices

View all agents →

Real-Time Streaming

Watch agent activity in real-time:

vasperamesh watch

# Filter by severity
vasperamesh watch --severity critical,high

# Filter by agent
vasperamesh watch --agent security-scanner

Configuration

Configuration is stored in ~/.vasperamesh/config.json:

{
  "apiKey": "vm_...",
  "userId": "uuid",
  "email": "you@example.com",
  "defaultMeshId": "uuid"
}

Project-level configuration in .vasperamesh.json:

{
  "meshId": "your-mesh-id",
  "agents": ["security-scanner", "code-reviewer"],
  "exclude": ["node_modules", "dist", ".git"]
}

Environment Variables

VariableDescription
VASPERAMESH_API_URLAPI endpoint (default: https://www.vasperamesh.com)
VASPERAMESH_API_KEYAPI key (alternative to config file)

VS Code Extension

For IDE integration, install the VasperaMesh VS Code Extension:

  • Inline annotations for findings
  • Real-time agent status
  • One-click fixes

Data & Privacy

What We Collect

When you use VasperaMesh, we collect:

  • Account information: Email address, name (required for authentication)
  • Usage data: Commands run, agents used, scan statistics
  • Mesh metadata: Project names, agent configurations
  • Findings: Issues detected by agents (for dashboard display)

What We Don't Collect

  • Your source code is never stored on our servers (local-first scanning)
  • API keys for third-party services
  • Environment variables or secrets

Data Retention

  • Account data is retained while your account is active
  • Usage analytics are aggregated and anonymized after 90 days
  • You can delete your account and all data at any time

See our Privacy Policy for full details.

Requirements

  • Node.js 18+
  • npm or pnpm

Support

License

MIT License - see LICENSE for details.

Built by Vaspera Capital

Keywords

vasperamesh

FAQs

Package last updated on 08 Jan 2026

Related posts