Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

hzdb-clihzdb CLI 搜索

Agent Skill

hzdb-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

222

周安装

9

GitHub Stars

31

下载量

70
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hzdb-cli(hzdb CLI 搜索)
来源仓库:https://github.com/meta-quest/agentic-tools
仓库路径:skills/hzdb-cli
安装命令:
npx skills add https://github.com/meta-quest/agentic-tools --skill hzdb-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/meta-quest/agentic-tools --skill hzdb-cli

简介

hzdb-cli 用于查找、检索和筛选相关信息,支持基于关键词的任务场景定位。

  • 适用于数据库操作、查询优化和系统管理相关查询。
  • 可在 Codex、Claude、Cursor、Gemini CLI 中快速获取候选结果。
  • 需确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 建议结合来源仓库和原始 README 继续核验具体用法。

SKILL.md

hzdb CLI Reference

What is hzdb?

hzdb (Horizon Debug Bridge) is a Rust CLI tool for Meta Quest and Horizon OS development. It wraps ADB and Meta APIs into composable CLI commands, providing a scriptable alternative to MQDH (Meta Quest Developer Hub). It covers device management, app lifecycle, performance tracing, documentation search, and 3D asset discovery.

Source: meta-quest/agentic-tools

Installation

Install globally via npm:

npm install -g @meta-quest/hzdb

Or use directly with npx (no install required):

npx -y @meta-quest/hzdb --help

Verify installation:

hzdb --version

Device Connection

Before using on-device commands:

  1. Enable Developer Mode on your Quest (Settings > System > Developer)
  2. Enable USB Debugging when prompted
  3. Connect your Quest to your computer via USB-C

Verify the connection:

hzdb device list

If no devices appear: try a different USB cable (data-capable, not charge-only), accept the USB debugging prompt on the headset, or connect wirelessly with hzdb device connect <ip>.

MCP Server Mode

hzdb includes a built-in MCP (Model Context Protocol) server with ~40 tools that enable AI agents to interact with Quest devices programmatically.

hzdb mcp server

The server exposes tools for device management, app lifecycle, performance trace analysis, documentation search, and 3D asset search. When this plugin is installed, the MCP server is automatically configured for Claude Code.

Install MCP configuration into other AI tools:

hzdb mcp install cursor
hzdb mcp install claude-desktop
hzdb mcp install vscode

Relationship to ADB

hzdb wraps ADB and provides higher-level commands. You do not need to use adb directly for most Quest development tasks. hzdb handles device selection, provides structured output, and adds Quest-specific functionality (screenshots via metacam, Perfetto trace analysis, doc search) that raw ADB does not support.

If you need raw shell access to the device, use hzdb shell or hzdb adb shell.

Global Options

OptionDescription
-d, --device <DEVICE>Target device ID (overrides HZDB_DEVICE env var)
--format <FORMAT>Output format: table, json, plain (default: table)
--jsonShorthand for --format json
-v, --verboseIncrease logging verbosity
-q, --quietDecrease logging verbosity
--markdown-helpPrint full CLI reference in markdown

adb

Low-level ADB-compatible commands. Use these when you need direct ADB access.

  • adb devices — List connected devices (-l for extended info)
  • adb connect <address> — Connect to a device over WiFi (ip:port)
  • adb disconnect [address] — Disconnect from a device (all if no address)
  • adb shell <command> — Run a shell command on the device
  • adb pull <remote> [local] — Pull a file from the device
  • adb push <local> <remote> — Push a file to the device
  • adb install <apk> — Install an APK on the device
  • adb uninstall <package> — Uninstall a package
  • adb reboot — Reboot the device
  • adb logcat — View device logs with filtering options:

- -f, --follow — Stream logs continuously - -t, --tag <TAG> — Filter by tag - -l, --level <LEVEL> — Minimum level: V, D, I, W, E, F - -F, --filter <FILTER> — Filter expressions (e.g., "Unity:W ActivityManager:I *:S") - -e, --regex <REGEX> — Regex pattern to filter messages - -b, --buffer <BUFFER> — Log buffer: main, system, crash, radio, events, all - -C, --clear — Clear log buffer before reading - -n, --lines <N> — Number of recent lines (default: 100, 0 for all) - --pid <PID> — Filter by process ID - --out-format <FMT> — Output format: brief, long, process, raw, tag, thread, threadtime, time

  • adb forward <local> <remote> — Forward port connections (host → device)
  • adb reverse <remote> <local> — Reverse port connections (device → host)
  • adb root — Restart adbd with root permissions
  • adb getprop <property> — Get a device property
  • adb setprop <property> <value> — Set a device property
  • adb version — Print ADB version information

capture

Capture screenshots from the device.

  • capture screenshot — Take a screenshot of the current view

- -o, --output <FILE> — Output file path (default: screenshot_<timestamp>.png) - --width <WIDTH> — Width in pixels (default: 1024) - --height <HEIGHT> — Height in pixels (default: 1024) - --method <METHOD> — Capture method: metacam (default) or screencap

device

Manage connected Meta Quest devices.

  • device list — List all connected Quest devices
  • device info <device_id> — Show detailed device information (model, OS version, etc.)
  • device connect <address> — Connect to a device over WiFi (ip:port)
  • device disconnect [address] — Disconnect from a device
  • device reboot — Reboot the device
  • device wake — Wake the device from sleep
  • device battery — Get battery level and charging status
  • device proximity — Enable or disable the proximity sensor

- --enable / --disable — Set sensor state

app

Manage applications on the device.

  • app install <apk> — Install an APK

- -r, --replace — Replace existing app (keep data) - -g, --grant-permissions — Grant all runtime permissions - --downgrade — Allow version downgrade

  • app uninstall <package> — Uninstall an application

- -k, --keep-data — Keep app data and cache

  • app list — List installed applications

- -3, --third-party — Show only third-party apps - -s, --system — Show only system apps

  • app launch <package> — Launch an application

- -a, --activity <ACTIVITY> — Specific activity to launch

  • app stop <package> — Force-stop a running application
  • app clear <package> — Clear application data and cache
  • app info <package> — Show detailed app information
  • app path <package> — Show APK path on device

asset

Search Meta's 3D asset library for models.

  • asset search <query> — Search for 3D models

- -c, --count <N> — Number of results (default: 5, max: 10)

config

Manage hzdb configuration settings.

  • config get <key> — Get a configuration value
  • config set <key> <value> — Set a configuration value
  • config reset <key> — Reset a value to its default
  • config list — List all configuration settings

docs

Search and fetch Meta Quest developer documentation.

  • docs search <query> — Search developer documentation

- -c, --category <CAT> — Filter: ALL, UNITY, UNREAL, SPATIAL_SDK, ANDROID, NATIVE, WEB, RESOURCES, DESIGN, POLICY

  • docs fetch <url> — Fetch a documentation page (full URL or short path)
  • docs api-search <query> — Search API references using BM25 ranking

- -p, --platform <PLATFORM> — Platform: unity, unreal_ue4, unreal_ue5 - -n, --max-results <N> — Max results (default: 20)

  • docs api-details <name> — Get full details for an API entry (e.g., "OVRInput")

- -p, --platform <PLATFORM> — Platform: unity, unreal_ue4, unreal_ue5

  • docs api-stats — Show statistics about loaded API reference indexes

files

Manage files on the device.

  • files ls [path] — List files and directories (default: /sdcard/)

- -a, --all — Show hidden files

  • files pull <remote> [local] — Download a file from the device
  • files push <local> <remote> — Upload a file to the device
  • files rm <path> — Delete a file or directory

- -r, --recursive — Recursively delete directories

  • files mkdir <path> — Create a directory

- -p, --parents — Create parent directories as needed (default: true)

log

View device logs (shortcut for adb logcat).

  • log — View the last 100 log lines

- -n, --lines <N> — Number of recent lines (default: 100) - -t, --tag <TAG> — Filter by tag - -l, --level <LEVEL> — Minimum level: V, D, I, W, E, F - -c, --clear — Clear log buffer before reading

For advanced filtering (streaming, regex, multiple tags), use hzdb adb logcat instead.

perf

Performance analysis and Perfetto trace tools.

  • perf capture — Capture a Perfetto trace from a connected device

- --duration <MS> — Duration in milliseconds (default: 5000) - --app <PACKAGE> — App to trace (auto-detects foreground app) - -o, --output <NAME> — Output filename (without extension) - --gpu-render-stage — Enable GPU render stage tracing - --gpu-metrics — Enable GPU metrics (default: true) - --cpu-scheduling — Enable CPU scheduling (default: true) - --xr-runtime — Enable XR runtime metrics

  • perf load <session_id> — Load a trace for analysis
  • perf query <session_id> <sql> — Run SQL query on a loaded trace
  • perf context [session_id] — Get performance analysis context/summary
  • perf thread-state <session_id> <utid> — Get thread state breakdown

- --start-ts <NS> — Start time in nanoseconds - --end-ts <NS> — End time in nanoseconds

  • perf gpu-counters <session_id> — Get GPU counter metrics for frame ranges

- --start-ts <NS> — Start timestamps (comma-separated) - --end-ts <NS> — End timestamps (comma-separated)

  • perf hex-to-datetime <hex> — Convert hex timestamp to datetime
  • perf traces — List available Perfetto trace files

- -l, --limit <N> — Max traces to list (default: 10)

mcp

MCP server for AI assistant integration.

  • mcp server — Start the MCP server

- --transport <TYPE> — Transport: stdio (default), sse, streamable-http - --log-level <LEVEL> — Logging: DEBUG, INFO, WARNING, ERROR - --log-output <DEST> — Log destination: stderr, file, none - --log-file <PATH> — Path to log file - --debug — Enable debug mode - --meta-wand-token <TOKEN> — Meta Wand API token for 3D model search - --no-telemetry — Disable telemetry - --enable-full-docs — Enable full documentation tools - --disable-perf-tools — Disable performance profiling tools

  • mcp install <tool> — Install MCP server configuration into an AI tool

- Supported tools: android-studio, cursor, claude-desktop, claude-code, vscode, vscode-insiders, codex, zed, windsurf, antigravity, gemini-cli, open-code, lm-studio, project - Common options: --dry-run, --force, --executable <PATH>, -y (skip confirmation)

shell

Run a shell command on the device (shortcut for adb shell).

hzdb shell <command>

References

For detailed usage guides with workflows, examples, and troubleshooting:

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.73%
按下载量换算24

Claude

31.19%
按下载量换算22

Cursor

21.35%
按下载量换算15

Gemini CLI

9.23%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/meta-quest/agentic-tools --skill hzdb-cli 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills