📦 Qjzd

v1.3.2

Nav CLI 操作 用于管理 QJZD Nav 的备份、恢复和站点设置,包括上传背景图片、logo 和 favicon。

0· 17·0 当前·0 累计
下载技能包
最后更新
2026/4/20
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
该技能仅是对本地“qjzd-nav” CLI(用于备份和设置操作)的指令封装;其需求与说明均围绕该用途,不会索取无关凭据或安装。
评估建议
This skill is coherent and appears to simply document how to use your local qjzd-nav CLI. Before installing/using it: (1) confirm the qjzd-nav binary is the legitimate tool you expect (check vendor, version, and path); (2) ensure authentication for qjzd-nav is configured separately and securely (the skill references an auth helper); (3) be cautious about allowing autonomous runs because commands can delete backups, import data (which can overwrite), and upload local files — test commands manuall...
详细分析 ▾
用途与能力
Name and description match the runtime instructions and the declared required binary (qjzd-nav). The commands shown (backup, settings, upload) are exactly what the description says the skill does. References to an auth helper are reasonable for a CLI that needs credentials.
指令范围
SKILL.md only instructs the agent to run qjzd-nav subcommands and to upload local files; it does not request unrelated files, environment variables, or external endpoints. However, many commands are state-changing (delete, import, upload) and will affect the remote server and may transmit local files — users should be aware the agent will perform destructive or privacy-sensitive operations if invoked.
安装机制
No install spec and no code files — instruction-only. This minimizes disk-write risk because nothing is downloaded or installed by the skill itself.
凭证需求
The skill requests no environment variables or credentials. It does assume an existing, authenticated qjzd-nav CLI; any required auth is external (e.g., qjzd-nav-cli-auth), which is proportionate to the described function.
持久化与权限
always is false (no forced inclusion); the skill can be invoked autonomously by the agent by default (platform normal), but it does not request persistent installation or modify other skills' configuration.
安全有层次,运行前请审查代码。

运行时依赖

无特殊依赖

版本

latestv1.3.22026/4/19

- 版本号升至 1.3.2,未改动任何文件或文档。 - 本版本无新功能、修复或更新。

无害

安装命令

点击复制
官方npx clawhub@latest install qjzd-nav-cli-operations
镜像加速npx clawhub@latest install qjzd-nav-cli-operations --registry https://cn.longxiaskill.com

技能文档

使用本技能执行 qjzd-nav backupqjzd-nav settings。若认证可能未就绪,先执行 qjzd-nav auth current 或加载 qjzd-nav-cli-auth

命令

``bash qjzd-nav backup --help qjzd-nav settings --help `

备份

列出备份:
`bash qjzd-nav backup list qjzd-nav backup list --json `

导出备份(JSON): `bash qjzd-nav backup export qjzd-nav backup export --output ./backup.json qjzd-nav backup export --json `

导出含资源的备份(ZIP): `bash qjzd-nav backup export-zip qjzd-nav backup export-zip --output ./backup.zip `

下载备份文件: `bash qjzd-nav backup download --filename "qjzd-nav-backup-2024-01-01.json" --output ./download.json `

删除备份: `bash qjzd-nav backup delete --filename "qjzd-nav-backup-2024-01-01.json" `

导入备份(仅 JSON): `bash qjzd-nav backup import --file ./backup.json `

设置

获取当前设置: `bash qjzd-nav settings get qjzd-nav settings get --json `

更新设置: `bash qjzd-nav settings update --site-title "My Nav" --site-subtitle "Links" qjzd-nav settings update --logo-icon "i-lucide-star" qjzd-nav settings update --background-overlay 50 qjzd-nav settings update --show-shortcut-hints --show-edit-button `

上传文件(背景、logo 或 favicon): `bash # 上传并设为背景图(默认叠加 20%) qjzd-nav settings upload --type background --file ./bg.jpg

# 上传并设为 logo qjzd-nav settings upload --type logo --file ./logo.png

# 上传并设为 favicon qjzd-nav settings upload --type favicon --file ./favicon.ico `

支持的文件类型:

  • 背景:PNG、JPG、WEBP
  • Logo:PNG、JPG、SVG、ICO
  • Favicon:PNG、SVG、ICO

设置字段

| 字段 | 类型 | 说明 | | ------------------------ | ------- | ----------------------------------------------------- | | --site-title | string | 站点标题 | | --site-subtitle | string | 站点副标题 | | --logo-icon | string | Lucide 图标类名(如 i-lucide-compass) | | --logo-image | string | Logo 图片 URL | | --favicon | string | Favicon URL | | --background-image | string | 背景图片 URL | | --background-overlay | number | 背景叠加 0-100(上传时默认 20) | | --show-shortcut-hints | boolean | 显示快捷键提示 | | --sidebar-collapsed | boolean | 侧边栏默认收起 | | --show-edit-button | boolean | 显示编辑按钮 | | --show-settings-button | boolean | 显示设置按钮 |

规则

  • backup import 仅支持 JSON,不支持 ZIP。
  • 上传背景时,--background-overlay 默认为 20%。
  • 自动化与脚本请使用 --json`。
  • 备份文件存于服务器,最多保留 100 个。
数据来源ClawHub ↗ · 中文优化:龙虾技能库