skills/local/debian-pkg-query/SKILL.md
Debian 软件包查询工具 - 查询 packages.debian.org 和 tracker.debian.org 的软件包信息、CVE、版本历史等
npx skillsauth add Zeno-sole/zeno-skills debian-pkg-queryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
查询 Debian 软件包信息,支持 packages.debian.org 和 tracker.debian.org。
# Python API
from debian_pkg_query import DebianPackageQuery
query = DebianPackageQuery()
info = query.get_package_info("bzip2")
cves = query.get_cve_list("bzip2")
versions = query.get_version_history("bzip2")
# CLI
python3 debian-pkg-query.py info bzip2
python3 debian-pkg-query.py cve bzip2
python3 debian-pkg-query.py versions bzip2
python3 debian-pkg-query.py report bzip2
| 方法 | 说明 |
|------|------|
| get_package_info(pkg) | 获取软件包基本信息 |
| get_cve_list(pkg) | 获取 CVE 列表 |
| get_version_history(pkg) | 获取版本历史 |
| generate_report(pkg) | 生成完整评估报告 |
tools
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
development
Convert Jenkins v25-crp_info_collect job output to Excel (.xlsx) format. Use when the user needs to extract theme information from Jenkins CRP (Code Review Platform) info collection jobs and convert it to a structured Excel file with columns for 主题名称, 主题地址, 仓库, 源码名及版本, 责任人. Works with job URLs like https://jenkinswh.uniontech.com/view/ISO-Builder/job/v25-repo-iso-work/view/repo/job/v25-crp_info_collect/
data-ai
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.