← 返回
未分类 中文

Qjzd Nav Cli Content

Use when managing QJZD Nav links, categories, and tags from the terminal, including list, create, update, delete operations.
用于在终端管理 QJZD Nav 链接、分类和标签,支持列表、创建、更新、删除操作。
nqdy666 nqdy666 来源
未分类 clawhub v1.3.2 1 版本 100000 Key: 无需
★ 0
Stars
📥 424
下载
💾 0
安装
1
版本
#latest

概述

QJZD Nav CLI Content

Use this skill for qjzd-nav link, qjzd-nav category, and qjzd-nav tag.

If auth may not be ready, check qjzd-nav auth current first or load qjzd-nav-cli-auth.

Commands

qjzd-nav link --help
qjzd-nav category --help
qjzd-nav tag --help

Links

List and filter links:

qjzd-nav link list
qjzd-nav link list --category-id <id>
qjzd-nav link list --tag-ids <ids>        # comma-separated
qjzd-nav link list --keyword <keyword>
qjzd-nav link list --page 1 --page-size 20
qjzd-nav link list --json

Create a link:

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

Update a link:

qjzd-nav link update --id <link-id> --title "New Title"
qjzd-nav link update --id <link-id> --url "https://new-url.com"
qjzd-nav link update --id <link-id> --category-id <new-category-id>

Delete a link:

qjzd-nav link delete --id <link-id>

Categories

List categories:

qjzd-nav category list
qjzd-nav category list --keyword <keyword>
qjzd-nav category list --page 1 --page-size 20
qjzd-nav category list --json

Create a category:

qjzd-nav category create \
  --name "Programming" \
  --description "Programming links" \
  --icon "i-lucide-code" \
  --order 0 \
  --parent-id <parent-id>   # optional, for subcategories

Update a category:

qjzd-nav category update --id <cat-id> --name "New Name"
qjzd-nav category update --id <cat-id> --icon "i-lucide-star"

Delete a category:

qjzd-nav category delete --id <cat-id>
qjzd-nav category delete --id <cat-id> --mode only --sub-action promote  # only delete category, move links to parent

Reorder categories:

qjzd-nav category reorder --items '[{"id":"xxx","order":1},{"id":"yyy","order":2}]'

Tags

List tags:

qjzd-nav tag list
qjzd-nav tag list --keyword <keyword>
qjzd-nav tag list --page 1 --page-size 20
qjzd-nav tag list --json

Create a tag:

qjzd-nav tag create --name "JavaScript" --color "#F7DF1E"

Update a tag:

qjzd-nav tag update --id <tag-id> --name "TypeScript" --color "#3178C6"

Delete a tag:

qjzd-nav tag delete --id <tag-id>

Rules

  • Link categoryId is required for creating links.
  • Tag IDs are comma-separated when multiple tags are needed.
  • Category deletion supports --mode only to only delete the category (links move to parent/default).
  • Use --json for automation and scripts.
  • Use --page and --page-size for pagination.

Common Workflow Example

# 1. List categories to get IDs
qjzd-nav category list --json

# 2. List tags to get IDs
qjzd-nav tag list --json

# 3. Create a link with category and tags
qjzd-nav link create \
  --title "GitHub" \
  --url "https://github.com" \
  --category-id <cat-id> \
  --tags "<tag-id-1>,<tag-id-2>"

版本历史

共 1 个版本

  • v1.3.2 当前
    2026-05-03 11:20 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Qjzd Nav Cli

nqdy666
用于涉及 QJZD Nav CLI 的任务,包括链接、分类、标签、备份、设置或身份验证。
★ 0 📥 457

Qjzd Nav Cli Auth

nqdy666
在配合 QJZD Nav CLI 登录、bearer token 认证、配置文件设置、配置文件切换、当前配置文件检查或修复缺失的 keyring 凭证时使用。
★ 0 📥 455

Qjzd Nav Cli Operations

nqdy666
用于管理 QJZD Nav 备份、还原和站点设置,包括上传背景图片、Logo 和 Favicon。
★ 0 📥 433