Coding & Refactoringmedium risk

install-deepvista-cli

Install the DeepVista CLI. Load when the `deepvista` binary is missing from PATH (hooks/commands return "command not found" or silently no-op), when the user asks how to install DeepVista, or when `deepvista auth login` hasn't been run yet. Ships with the DeepVista Claude Code plugin so the install path stays discoverable even before the CLI is present.

DeepVista-AI/deepvista-cli·plugins/claude-code/skills/install-deepvista-cli/SKILL.md
34/ 100Recommendation

Install this skill

Choose your coding agent and copy a project or personal installation command.

Pinned to the indexed commit
Project installation.agents/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a codex -y
Personal installation~/.agents/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a codex -g -y
Manual folder.agents/skills/install-deepvista-cliOfficial docs ↗
Project installation.claude/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a claude-code -y
Personal installation~/.claude/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a claude-code -g -y
Manual folder.claude/skills/install-deepvista-cliOfficial docs ↗
Project installation.agents/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a github-copilot -y
Personal installation~/.copilot/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a github-copilot -g -y
Manual folder.agents/skills/install-deepvista-cliOfficial docs ↗
Project installation.agents/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a cursor -y
Personal installation~/.cursor/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a cursor -g -y
Manual folder.agents/skills/install-deepvista-cliOfficial docs ↗
Project installation.agents/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a gemini-cli -y
Personal installation~/.gemini/skills/install-deepvista-cli
npx skills add https://github.com/DeepVista-AI/deepvista-cli/tree/6b090353a7721a7ab881f9233fc35e22bf431e38/plugins/claude-code/skills/install-deepvista-cli -a gemini-cli -g -y
Native Gemini CLIgemini skills install https://github.com/DeepVista-AI/deepvista-cli.git --scope workspace --path plugins/claude-code/skills/install-deepvista-cli
Manual folder.agents/skills/install-deepvista-cliOfficial docs ↗
⚠ Installation uses the open-source skills CLI. Inspect the source and permissions before running the command.

Skill instructions

View source on GitHub ↗
# Install the DeepVista CLI

The DeepVista Claude Code plugin requires the `deepvista` CLI to be installed
separately. Without it, the plugin's `SessionStart` hook exits silently and
the skill catalog won't sync — so `/skills` shows no DeepVista entries.

## Install

```bash
uv tool install deepvista-cli   # preferred
# or
pip install deepvista-cli
```

## Authenticate

```bash
deepvista auth login      # opens a browser for OAuth
deepvista auth status     # verify
```

## Trigger a first sync

Once the CLI is installed and authenticated, force the plugin's sync without
waiting for the next session start:

```
/refresh-skills
```

This writes skill stubs under `${CLAUDE_PLUGIN_ROOT}/skills/`.

## Full reference

The canonical install + auth + profile reference lives with the CLI itself:
[`skills/deepvista/reference/shared.md`](https://github.com/DeepVista-AI/deepvista-cli/blob/main/skills/deepvista/reference/shared.md).
Load it for profile switching, headless-auth codes, credential paths, and
global-flag rules.