Nvmix
Official Command Line Tool

Nvmix CLI: The Command Center.

Interact with Nvmix Flagship models and trigger multi-agent automations directly from your terminal.

PREREQUISITE

Package Installation

Make sure you have Python 3.9+ installed on your system. Install the Nvmix CLI globally using the Python package manager.

pip install nvmix-cli

Quickstart Developer Steps

1

Authenticate CLI Session

Run nvmix auth login to securely store the API key. This command prompts you for your Nvmix credentials token (starting with nv-) and saves it locally in the hidden ~/.nvmix/credentials file.

nvmix auth login
2

Run Basic Chat Streaming

Query the flagship Nvmix 3.1 model. The command-line client automatically displays the reasoning/thought process in a stylized, dim box before streaming the actual completion outputs in real-time.

nvmix chat "Write a Python script for data scraping"
nvmix chat output
» Nvmix Flagship:

[Nvmix Thought Process]
Thinking Process:
1. Identify the user request: Web scraping script in Python.
2. Select appropriate libraries: urllib or requests + BeautifulSoup.
3. Outline script structure: fetch page, parse HTML, extract content, save results.
4. Apply Nvmix brand guidelines.

Here is a clean Python script using BeautifulSoup to scrape article titles:

```python
import requests
from bs4 import BeautifulSoup

url = "https://example.com/news"
response = requests.get(url)

if response.status_code == 200:
    soup = BeautifulSoup(response.text, 'html.parser')
    titles = soup.find_all('h2', class_='story-title')
    for idx, title in enumerate(titles, 1):
        print(f"{idx}. {title.text.strip()}")
```
3

Execute Specialist Workflows

Trigger autonomous multi-agent pipelines. Run dedicated agents like the software engineering api-scaffold by matching their registered tags directly, outputting real-time engineering logs.

nvmix agent run api-scaffold
nvmix agent logs
» Agent: 🛠️ API Scaffold Agent

[Nvmix Thought Process]
1. Parse API routes and controller logic definitions.
2. Resolve database connection constraints and route paths.
3. Optimize ORM controller methods and TypeScript types.

Scaffolding Completed:
- Route: /api/v1/auth    » Created: Login/Register Hooks (100% Type-Safe)
- Route: /api/v1/billing » Created: Stripe Integration Hooks (100% Test Coverage)
- Route: DB Migrate Node  » Running: Prisma Schema Deployment