AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Xmake Packages

skill-xmake-io-xmake-skills-xmake-packages · by xmake-io

Use when adding third-party C/C++ dependencies to an Xmake project — via `add_requires` / `add_packages`, configuring package options, pinning versions, or using `xrepo` from the command line.

No reviews yet
0 installs
4 views
0.0% view→install

Install

$ agentstack add skill-xmake-io-xmake-skills-xmake-packages

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-xmake-io-xmake-skills-xmake-packages)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Xmake Packages? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Xmake Packages

Xmake has a built-in package manager (xrepo) that fetches and builds C/C++ dependencies and wires them into your targets.

Adding a dependency

add_requires("fmt 10.2.1", "spdlog")

target("app")
    set_kind("binary")
    add_files("src/*.cpp")
    add_packages("fmt", "spdlog")

add_requires declares what you need (and optionally a version). add_packages attaches the package to a specific target, adding its includes, links, and defines automatically.

Version selectors

add_requires("zlib 1.3.x")        -- semver range
add_requires("openssl >=3.0")
add_requires("cmake master")      -- branch
add_requires("boost 1.84.0")

Package options

add_requires("boost", {configs = {regex = true, system = true, shared = false}})
add_requires("ffmpeg", {configs = {shared = true, gpl = false}})

Options map to the package's own configurable features — check the package with xrepo info .

Optional and system packages

add_requires("mysql", {optional = true})          -- build continues if missing
add_requires("zlib", {system = true})             -- only use the system copy
add_requires("zlib", {system = false})            -- force xrepo to build it

Conditional / platform-specific

if is_plat("linux") then
    add_requires("libuuid")
end

add_requires("directxtk", {plat = "windows"})

Private repositories

add_repositories("my-repo https://github.com/me/my-xmake-repo.git")
add_requires("mypkg")

CLI — xrepo

xrepo search fmt
xrepo info fmt
xrepo install "fmt 10.2.1"
xrepo env -b fmt bash          # shell with fmt on PATH/PKG_CONFIG_PATH

Troubleshooting

  • Force a rebuild of a package: xmake require --force fmt
  • Clear the package cache: xmake require --clean
  • Show resolved packages: xmake require --info fmt

When to branch out

  • Exposing package usage behind an option → xmake-options
  • Cross-compiled packages → xmake-toolchains

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.