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.