qveris skill
npx skills add https://github.com/hqman/qveris --skill qveris使用 CLI 安装这个技能,并在你的工作区中直接复用对应的 SKILL.md 工作流。
中文文档 | English
A skill that enables Claude Code to dynamically search and execute tools via the QVeris API.
This skill requires uv, a fast Python package manager. Install it first:
macOS and Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
Windows:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
For other installation methods, see the official uv installation guide.
Option 1: Install via ClawdHub (Recommended)
clawdhub install qveris
Option 2: Install via NPX (For other coding agents)
npx skills add hqman/qveris
Option 3: Manual Installation
Copy this folder to your Claude Code skills directory:
cp -r qveris ~/.claude/skills/
Set your API key:
export QVERIS_API_KEY="your-api-key-here"
Get your API key at https://qveris.ai
Once installed, Claude Code will automatically use this skill when you ask questions about:
# Search for tools
uv run scripts/qveris_tool.py search "stock price data"
# Execute a tool
uv run scripts/qveris_tool.py execute <tool_id> --search-id <id> --params '{"symbol": "AAPL"}'
MIT