[package]
edition = "2021"
rust-version = "1.85"
name = "skillpack"
version = "0.13.2"
authors = ["nordicnode <128633122+nordicnode@users.noreply.github.com>"]
build = false
exclude = [
"/.claude",
"/.github",
"/docs/logo.png",
"/scripts",
"/memory:",
"2026-07-09-skillpack-design.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"
documentation = "https://docs.rs/skillpack"
readme = "README.md"
keywords = [
"cli",
"claude",
"agent",
"skills",
"ai-agents",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/nordicnode/skillpack"
[lib]
name = "skillpack"
path = "src/lib.rs"
[[bin]]
name = "skillpack"
path = "src/main.rs"
[[test]]
name = "integration_end_to_end"
path = "tests/integration_end_to_end.rs"
[[test]]
name = "property_proptest"
path = "tests/property_proptest.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.dialoguer]
version = "0.11"
features = [
"fuzzy-select",
"editor",
]
default-features = false
[dependencies.notify]
version = "8"
[dependencies.once_cell]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.tempfile]
version = "3"
[dependencies.tera]
version = "1"
default-features = false
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["json"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.proptest]
version = "1"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.rust]
unsafe_code = "deny"
[profile.release]
lto = true
codegen-units = 1
strip = true