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 を選び、プロジェクト用または個人用コマンドをコピーします。
プロジェクトに導入.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プロジェクトに導入.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プロジェクトに導入.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-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-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 -yNative Gemini CLI
gemini skills install https://github.com/DeepVista-AI/deepvista-cli.git --scope workspace --path plugins/claude-code/skills/install-deepvista-cli⚠ インストールには open-source skills CLI を使用します。実行前にソースと権限を確認してください。
Skill の指示
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.