Vigthoria CLI
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
-
npm ERR! code ENOTFOUND npm ERR! syscall getaddrinfo npm ERR! network getaddrinfo ENOTFOUND registry.npmjs.org
cause No internet connection, npm registry unreachable, or corporate proxy blocking access to npmjs.org.fixCheck your internet connection, configure npm proxy settings, or temporarily set an alternative npm registry (e.g., `npm config set registry https://registry.npmmirror.com` then `npm config delete registry` after install). -
`vigthoria: command not found` or `'vigthoria' is not recognized as an internal or external command, operable program or batch file.`
cause The directory where `npm install -g` places executables is not in your system's PATH, or a new terminal session is required.fixAfter installation, open a new terminal window. If the problem persists, manually add the npm global bin directory (e.g., `/usr/local/bin` on macOS/Linux or `%APPDATA%\npm` on Windows) to your system's PATH environment variable. -
`Access denied` or `EACCES: permission denied` during `npm install -g` on Windows.
cause Insufficient administrative privileges to write to the global npm installation directory.fixRun your terminal (e.g., PowerShell or Command Prompt) as an Administrator and retry the installation.
Warnings
- gotcha When installing via npm, corporate network proxies can prevent `vigthoria-cli` from downloading packages, resulting in `ENOTFOUND` errors.
- gotcha On Windows, PowerShell's default execution policy might block the bundled installation scripts or prevent global commands from running.
- gotcha The `vigthoria-cli` requires Node.js version 18.0.0 or higher to function correctly. Installation or execution might fail on older Node.js versions.
Install
-
npm install vigthoria-cli -
yarn add vigthoria-cli -
pnpm add vigthoria-cli
Quickstart
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