[package]
name = "skillpack"
version = "0.13.2"
edition = "2021"
rust-version = "1.85"
authors = ["nordicnode <128633122+nordicnode@users.noreply.github.com>"]
license = "MIT"
description = "Generate, verify, and maintain AI agent guidance (skills, plugins, AGENTS.md) for Claude Code, Cursor, Codex, Copilot, and 10+ AI coding ecosystems — one command turns any CLI or library into an agent-discoverable skill pack."
homepage = "https://github.com/nordicnode/skillpack"
repository = "https://github.com/nordicnode/skillpack"
documentation = "https://docs.rs/skillpack"
keywords = ["cli", "claude", "agent", "skills", "ai-agents"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
exclude = [
"/.claude",
"/.github",
"/docs/logo.png",
"/scripts",
"/memory:",
"2026-07-09-skillpack-design.md",
]
[lib]
name = "skillpack"
path = "src/lib.rs"
[[bin]]
name = "skillpack"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4"
dialoguer = { version = "0.11", default-features = false, features = ["fuzzy-select", "editor"] }
toml = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
tera = { version = "1", default-features = false }
anyhow = "1"
regex = "1"
once_cell = "1"
tempfile = "3"
notify = "8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
proptest = "1"
assert_cmd = "2"
predicates = "3"
insta = "1"
[profile.release]
lto = true
codegen-units = 1
strip = true
[lints.rust]
unsafe_code = "deny"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "allow", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"