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/ 100推薦值

匯入這個 Skill

選擇你的 coding agent,複製專案級或個人級安裝指令。

固定至平台收錄的 commit
匯入目前專案.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
匯入個人環境~/.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
手動放置目錄.agents/skills/install-deepvista-cliOfficial docs ↗
匯入目前專案.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
匯入個人環境~/.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
手動放置目錄.claude/skills/install-deepvista-cliOfficial docs ↗
匯入目前專案.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
匯入個人環境~/.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
手動放置目錄.agents/skills/install-deepvista-cliOfficial docs ↗
匯入目前專案.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
匯入個人環境~/.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
手動放置目錄.agents/skills/install-deepvista-cliOfficial docs ↗
匯入目前專案.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
匯入個人環境~/.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
手動放置目錄.agents/skills/install-deepvista-cliOfficial docs ↗
⚠ 安裝指令使用開源 skills CLI。執行前請檢查來源、腳本與權限。
# 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.