skills/xget/SKILL.md
Execute Xget work in real developer workflows. Use this skill when a task involves Xget URL rewriting, registry/package/container/API acceleration, integrating Xget into Git, download tools, package managers, container builds, AI SDKs, CI/CD, deployment, or self-hosting, or adapting commands and config from the live README `Use Cases` section into the user's files, environment, shell, or base URL.
npx skillsauth add caobingsheng/skills xgetInstall 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.
Default to execution, not instruction. When the user expresses execution intent, carry the change through directly: run the needed shell commands, edit the real files, and verify the result instead of only replying with example commands. Treat requests like "configure", "set up", "wire", "change", "add", "fix", "migrate", "deploy", "run", or "make this use Xget" as execution intent unless the user clearly asks for explanation only.
Resolve the base URL first:
XGET_BASE_URL from the environmenthttps://xget.example.com only as a clearly labeled placeholder for docs
or templates that do not have a real deployment yetPrefer scripts/xget.mjs over manual guessing for live platform data, URL
conversion, and README Use Cases lookup.
Only stop to ask when a missing fact blocks safe execution, such as an unknown real base URL for a command that must run against a live deployment. If the user only needs docs or templates, use the placeholder path rules below.
XGET_BASE_URL, open the reference guide and:
node scripts/xget.mjs topics --format json--match or fetch a specific section with
node scripts/xget.mjs snippet --base-url https://xget.example.com --heading "Docker Compose Configuration" --format textUse in Project is ambiguous, fetch its parent section instead.node scripts/xget.mjs platforms --format json when the answer depends on
current prefixes, and use convert for exact URL rewrites..env
guidance when the user's project needs more than one integration point./{prefix}/.../crates/... rather than /crates/api/v1/crates/.../ip/{provider}/.../cr/{registry}/...development
Use when working with tdd workflows tdd refactor
testing
Generate failing tests for the TDD red phase to define expected behavior and edge cases.
development
Implement the minimal code needed to make failing tests pass in the TDD green phase.
tools
Use when working with tdd workflows tdd cycle