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

@nexoraplatform/cli

v1.11.0

Published

Nexora Platform CLI Agent - Remote bot management and deployment for Discord bots

Downloads

1,033

Readme

Nexora CLI

🚀 Enterprise-grade CLI Agent for Remote Discord Bot Management

Nexora CLI is a secure, production-ready command-line tool that acts as a local agent for the Nexora Platform. It enables seamless remote management, deployment, and monitoring of Discord bots through an intuitive terminal interface.

✨ Features

  • 🔐 Secure Authentication - Agent key-based authentication with AES-256 encryption
  • 🤖 Remote Bot Management - Start, stop, and monitor bots from anywhere
  • 📊 Real-time Monitoring - Live status, logs, and metrics streaming
  • 🔄 Bi-directional Sync - Automatic synchronization with web dashboard
  • 🌐 Multi-Environment - Support for dev, staging, and production environments
  • 📝 Audit Trail - Complete command history and activity logging

📦 Installation

# Global installation (recommended)
npm install -g @nexora/cli

# Or using yarn
yarn global add @nexora/cli

# Or using pnpm
pnpm add -g @nexora/cli

🚀 Quick Start

1. Initialize Configuration

nexora init

2. Login with Agent Key

Generate an Agent Key from your Nexora Dashboard, then:

nexora login --key nxk_your_agent_key_here

Or set environment variables:

export NEXORA_AGENT_KEY="nxk_your_agent_key_here"
export NEXORA_API_URL="https://api.nexora.io"
nexora login

3. Check Status

nexora status

4. Start a Bot

nexora start <botId>

📖 Commands

| Command | Description | |---------|-------------| | nexora init | Initialize CLI configuration | | nexora login | Authenticate with Nexora Platform | | nexora status | Show agent and bot status | | nexora start <botId> | Start a bot | | nexora stop <botId> | Stop a bot | | nexora logs <botId> | View bot logs (live streaming with -f) | | nexora logout | Remove local credentials | | nexora --version | Display CLI version | | nexora --help | Show help information |

🔧 Configuration

Configuration is stored at ~/.nexora/config.json:

{
  "agentKey": "nxk_***",
  "apiUrl": "https://api.nexora.io",
  "agentId": "agent_123",
  "organizationId": "org_456"
}

🌍 Environment Variables

  • NEXORA_AGENT_KEY - Your agent authentication key
  • NEXORA_API_URL - API endpoint (default: http://localhost:3001)

🛡️ Security

  • Agent keys are stored with 0600 permissions (owner read/write only)
  • All API communication uses HTTPS in production
  • Credentials are encrypted using machine-specific keys
  • Automatic token refresh with short-lived session tokens

📊 Example Usage

View Live Logs

nexora logs bot_abc123 -f

Check Status with JSON Output

nexora status --json

Force Stop a Bot

nexora stop bot_abc123 --force

🤝 Contributing

Contributions are welcome! Please visit our GitHub repository for guidelines.

📄 License

MIT © Nexora Team

🔗 Links


Made with ❤️ by the Nexora Team