[package]
edition = "2024"
rust-version = "1.85"
name = "skref"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference implementation of the Agent Skills tooling: validate, read-properties, and to-prompt for SKILL.md skills"
homepage = "https://github.com/alephic-ai/skref"
documentation = "https://docs.rs/skref"
readme = "README.md"
keywords = [
"agent",
"skills",
"skill",
"cli",
"validation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/alephic-ai/skref"
[lib]
name = "skref"
path = "src/lib.rs"
[[bin]]
name = "skref"
path = "src/main.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[[test]]
name = "prompt"
path = "tests/prompt.rs"
[[test]]
name = "sample_skills"
path = "tests/sample_skills.rs"
[[test]]
name = "validator"
path = "tests/validator.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.unicode-normalization]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[profile.dist]
lto = "thin"
inherits = "release"