🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Qjzd Nav Cli Content

by @nqdy666

Use when managing QJZD Nav links, categories, and tags from the terminal, including list, create, update, delete operations.

Versionv1.3.2
Downloads603
TERMINAL
clawhub install qjzd-nav-cli-content

πŸ“– About This Skill


name: qjzd-nav-cli-content version: 1.0.0 description: Use when managing QJZD Nav links, categories, and tags from the terminal, including list, create, update, delete operations. references: - ../qjzd-nav-cli - ../qjzd-nav-cli-auth metadata: openclaw: category: content-management requires: bins: ["qjzd-nav"] cliHelp: "qjzd-nav link --help && qjzd-nav category --help && qjzd-nav tag --help"

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 
qjzd-nav link list --tag-ids         # comma-separated
qjzd-nav link list --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  \
  --description "Search engine" \
  --icon "i-lucide-search" \
  --tags "tag-id-1,tag-id-2" \
  --order 0

Update a link:

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 

Delete a link:

qjzd-nav link delete --id 

Categories

List categories:

qjzd-nav category list
qjzd-nav category list --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    # optional, for subcategories

Update a category:

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

Delete a category:

qjzd-nav category delete --id 
qjzd-nav category delete --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 
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  --name "TypeScript" --color "#3178C6"

Delete a tag:

qjzd-nav tag delete --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 \ --tags ","

    πŸ”’ Constraints

  • 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.