spm-cli 0.3.0

Skill package manager — declare AI skills in ai.json, materialize them for Claude/Copilot without polluting your repo.
[package]
name = "spm-cli"
version = "0.3.0"
edition = "2021"
rust-version = "1.97"
description = "Skill package manager — declare AI skills in ai.json, materialize them for Claude/Copilot without polluting your repo."
license = "Apache-2.0"
repository = "https://github.com/camunda/spm-cli"
homepage = "https://github.com/camunda/spm-cli"
readme = "README.md"
keywords = ["ai", "skills", "claude", "copilot", "package-manager"]
categories = ["command-line-utilities", "development-tools"]

[[bin]]
name = "spm"
path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
directories = "5"
jsonschema = { version = "0.17", default-features = false }

# Installs the committed git hooks in .cargo-husky/hooks/ into .git/hooks the
# first time `cargo test`/`cargo build` runs — no manual setup step needed.
[dev-dependencies]
cargo-husky = { version = "1", default-features = false, features = ["user-hooks"] }

[profile.release]
opt-level = 3
lto = true
strip = true
codegen-units = 1