Vigthoria CLI

1.8.7 · active · verified Wed Apr 22

Vigthoria CLI (version 1.8.7) is an AI-powered terminal coding assistant designed for subscribers of Vigthoria Coder. It integrates directly with Vigthoria's AI models and subscription system, providing a robust command-line interface for various development tasks. Key features include interactive natural language chat for coding assistance, compact session memory for resuming conversations, AI-driven file editing with diff previews, code generation from descriptions, code explanation, automatic bug fixing, and code review capabilities. It supports secure authentication with Vigthoria accounts, understands project context, and offers integration with Vigthoria Repo for cloud-based project management, including deep codebase search via ripgrep and atomic multi-file edits with rollback. The CLI requires Node.js version 18 or higher and is primarily distributed via `npm install -g` or dedicated platform installers. Release cadence is not explicitly stated but appears active.

Common errors

Warnings

Install

Quickstart

Demonstrates logging into Vigthoria and starting an interactive AI chat session.

vigthoria login
# Authenticate using email/password, API token, or browser OAuth

vigthoria chat
# Start an interactive AI chat session
# Example: "Explain this function: myFunc(a, b){ return a + b }"

# To resume a previous session:
vigthoria chat --resume

# For local project execution, you can also use npx:
npx vigthoria-chat

view raw JSON →