Install deepvista cli
Skill DeepVista-AI/deepvista-cli/plugins/claude-code/skills/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.From its SKILL.md
npx -y skills add DeepVista-AI/deepvista-cli --skill install-deepvista-cliAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 5 commands, including `uv tool install deepvista-cli` and 4 more.
- fetches URLsInstructs the agent to fetch 1 URL, including https://github.com/DeepVista-AI/deepvista-cli/blob/main/skills/deepvista/reference/shared.md.
SKILL.md
1.4 KB, 252 tokens by cl100k_base, as published. Nobody here has run it
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
uv tool install deepvista-cli # preferred
# or
pip install deepvista-cli
Authenticate
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.
Load it for profile switching, headless-auth codes, credential paths, and
global-flag rules.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.