qwencloud/qwencloud-ai

qwencloud-update-check

[QwenCloud] Check for qwencloud-ai updates and notify the user when a new version is available.

View source
Original skill document

Rendered from the source repository. Headings, examples, code, tables, links, and referenced images are preserved.

Qwen Update Checker

Automatic version checker for the qwencloud/qwencloud-ai skill pack. Compares the locally installed version against the latest release on GitHub and notifies the user when an update is available.

This skill is referenced by all other qwencloud/qwencloud-ai. When any skill runs, it checks if this skill is installed and delegates version checking here.

How It Works

  1. Reads the installed version from version.json (the version field bundled with this skill).
  2. Fetches the latest version from the remote repository (GitHub raw content).
  3. Compares versions using semver. Returns {"has_update": true} if a newer version exists.
  4. Records the check timestamp (last_interaction) in <repo_root>/.agents/state.json to rate-limit network requests to once every 24 hours.

Usage

Other skills invoke this script automatically. You can also run it manually:

bash
python3 <path-to-this-skill>/scripts/check_update.py --print-response

CLI Arguments

ArgumentDescription
--print-responsePrint result as formatted JSON to stdout
--forceBypass 24-hour rate limit and check immediately

Output Format

json
{
  "has_update": true
}

Configuration

Environment VariableDefaultDescription
QWEN_SKILLS_REPOqwencloud/qwencloud-aiGitHub repo for remote version check

State File

The last_interaction timestamp is stored at <repo_root>/.agents/state.json for rate-limiting. Check results are not cached in the state file. This file persists across sessions and is shared with gossamer.py for fatigue control.

from this repository

More skills

All skills
qwencloud
Community

qwencloud-audio-tts

[QwenCloud] Synthesize speech from text with Qwen TTS models. TRIGGER when: user wants to convert text to speech, create voiceovers, generate audio narration, read text aloud, build TTS applications, mentions speech synthesis/voice generation/audio output from text, or explicitly invokes this skill by name (e.g. use qwencloud-audio-tts). DO NOT TRIGGER when: user wants speech recognition/ASR, text generation without audio, non-Qwen audio tasks.

installs
1
GitHub stars
39
Updated
Jul 22
qwencloud
Community

qwencloud-image-generation

[QwenCloud] Generate and edit images using Wan and Qwen Image models. Supports text-to-image, image editing (style transfer, subject consistency, text rendering), and interleaved text-image output. TRIGGER when: user wants to create illustrations, product images, artistic designs, posters, text-to-image generation, edit/transform existing images, apply style transfer, generate images based on reference photos, interleaved text-image content, mentions Wan/Qwen Image models/AI art creation, or explicitly invokes this skill by name (e.g. use qwencloud-image-generation). DO NOT TRIGGER when: user wants to understand/analyze existing images or OCR (use qwencloud-vision), video generation (use qwencloud-video-generation), text-only tasks.

installs
1
GitHub stars
39
Updated
Jul 22
qwencloud
Community

qwencloud-model-selector

[QwenCloud] Recommend the best Qwen model and parameters. TRIGGER when: choosing between Qwen models, comparing Qwen model pricing, understanding Qwen model capabilities, checking usage or billing, viewing cost history, when an execution skill needs model selection advice, or user explicitly invokes this skill by name (e.g. use qwencloud-model-selector). DO NOT TRIGGER when: non-Qwen model discussions (OpenAI, Gemini, etc.), general AI questions unrelated to Qwen.

installs
1
GitHub stars
39
Updated
Jul 22
qwencloud
Community

qwencloud-ops-auth

[QwenCloud] Configure authentication (API keys, endpoints). TRIGGER when: setting up QWENAPIKEY, troubleshooting 401/auth errors, when another skill reports missing credentials, or user explicitly invokes this skill by name (e.g. use qwencloud-ops-auth). DO NOT TRIGGER when: non-auth Qwen tasks, general API usage questions.

installs
1
GitHub stars
39
Updated
Jul 22