📦 Qjzd

v1.3.2

Nav Cli Content:在终端管理 QJZD Nav 链接、分类和标签,支持列表、创建、更新、删除操作。

0· 18·0 当前·0 累计
下载技能包
最后更新
2026/4/19
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
该技能仅为 qjzd-nav CLI 的指令辅助工具,其请求的操作、需求与指令均与此目的保持内部一致。
评估建议
This skill is a documentation-style wrapper around the qjzd-nav CLI. Before using: ensure the qjzd-nav binary you have is from a trusted source, confirm the CLI's authentication method (qjzd-nav-cli-auth) is configured correctly, and be cautious when running destructive commands (delete/update/reorder)—consider exporting or backing up current data first. The skill itself does not request secrets, but the underlying CLI will require whatever credentials your QJZD Nav instance uses, so treat those...
详细分析 ▾
用途与能力
Name and description match the runtime instructions: all commands reference the qjzd-nav CLI and content-management actions (links, categories, tags). No unrelated services, binaries, or credentials are requested.
指令范围
SKILL.md only instructs running qjzd-nav CLI commands and checking auth with qjzd-nav auth current or the companion auth skill. It does not ask the agent to read arbitrary files, environment variables, or post data to unexpected endpoints.
安装机制
Instruction-only skill with no install spec and no code files; nothing is downloaded or written to disk by the skill itself.
凭证需求
No environment variables, credentials, or config paths are required by the skill. Auth is referenced but delegated to qjzd-nav-cli-auth, which is appropriate for a CLI-based workflow.
持久化与权限
always is false and the skill is user-invocable. It does not request persistent system presence or modify other skills' configuration.
安全有层次,运行前请审查代码。

运行时依赖

无特殊依赖

版本

latestv1.3.22026/4/19

- 此版本未检测到文件变更。 - 未引入新功能、错误修复或文档更新。

无害

安装命令

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

技能文档

在需要执行 qjzd-nav linkqjzd-nav categoryqjzd-nav tag 时使用本技能。 若认证可能未就绪,先执行 qjzd-nav auth current 或加载 qjzd-nav-cli-auth

命令

``bash qjzd-nav link --help qjzd-nav category --help qjzd-nav tag --help `

链接

列出并筛选链接:
`bash qjzd-nav link list qjzd-nav link list --category-id qjzd-nav link list --tag-ids # 逗号分隔 qjzd-nav link list --keyword qjzd-nav link list --page 1 --page-size 20 qjzd-nav link list --json `

创建链接: `bash qjzd-nav link create \ --title "Google" \ --url "https://google.com" \ --category-id \ --description "Search engine" \ --icon "i-lucide-search" \ --tags "tag-id-1,tag-id-2" \ --order 0 `

更新链接: `bash qjzd-nav link update --id --title "New Title" qjzd-nav link update --id --url "https://new-url.com" qjzd-nav link update --id --category-id `

删除链接: `bash qjzd-nav link delete --id `

分类

列出分类: `bash qjzd-nav category list qjzd-nav category list --keyword qjzd-nav category list --page 1 --page-size 20 qjzd-nav category list --json `

创建分类: `bash qjzd-nav category create \ --name "Programming" \ --description "Programming links" \ --icon "i-lucide-code" \ --order 0 \ --parent-id # 可选,用于子分类 `

更新分类: `bash qjzd-nav category update --id --name "New Name" qjzd-nav category update --id --icon "i-lucide-star" `

删除分类: `bash qjzd-nav category delete --id qjzd-nav category delete --id --mode only --sub-action promote # 仅删除分类,链接移至父级 `

重排分类: `bash qjzd-nav category reorder --items '[{"id":"xxx","order":1},{"id":"yyy","order":2}]' `

标签

列出标签: `bash qjzd-nav tag list qjzd-nav tag list --keyword qjzd-nav tag list --page 1 --page-size 20 qjzd-nav tag list --json `

创建标签: `bash qjzd-nav tag create --name "JavaScript" --color "#F7DF1E" `

更新标签: `bash qjzd-nav tag update --id --name "TypeScript" --color "#3178C6" `

删除标签: `bash qjzd-nav tag delete --id `

规则

  • 创建链接时必须提供 categoryId
  • 多个标签用逗号分隔。
  • 删除分类时加 --mode only 可仅删分类,链接移至父级/默认。
  • 自动化脚本请加 --json
  • 分页使用 --page--page-size

常见工作流示例

`bash # 1. 获取分类 ID qjzd-nav category list --json

# 2. 获取标签 ID qjzd-nav tag list --json

# 3. 用分类和标签创建链接 qjzd-nav link create \ --title "GitHub" \ --url "https://github.com" \ --category-id \ --tags "," ``

数据来源ClawHub ↗ · 中文优化:龙虾技能库