skillpack 0.13.2

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.
Documentation
[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]
# Process-group kill on timeout: `killpg` reaps the whole tree the child
# spawned (`go run .`, `dotnet run`, `swift run`, etc.) so a hung `--help`
# probe can't orphan grandchildren. The single `unsafe` use is isolated in
# `spawn.rs::kill_tree` and audited; everything else stays `unsafe_code = deny`.
libc = "0.2"

[dev-dependencies]
proptest = "1"
assert_cmd = "2"
predicates = "3"
insta = "1"

# The Edition 2021 default is fine for warnings; we keep profiles lean.
[profile.release]
lto = true
codegen-units = 1
strip = true

[lints.rust]
# Keep the codebase clean in CI without needing a separate clippy config layer.
unsafe_code = "deny"

[lints.clippy]
all = { level = "warn", priority = -1 }
# V1 keeps `pedantic` as `allow`: the codebase is green under `all`, and the
# remaining pedantic nits (let...else refactors, format!-append, bool-count,
# fn-too-long) are stylistic churn that risks behavior for no correctness gain.
# Re-enable pedantic as `warn` once the V1 surface stabilizes and the team has
# time to absorb the ~22 remaining suggestions deliberately.
pedantic = { level = "allow", priority = -1 }
# Allow module_name_injections-style patterns we use; these are pragmatic relaxations.
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"