[package]
edition = "2024"
name = "upskill"
version = "0.6.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Author and distribute AI-assistance content across coding agents"
homepage = "https://driftsys.github.io/upskill/"
readme = "README.md"
keywords = [
"agent",
"skills",
"cli",
"ai",
"package-manager",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/driftsys/upskill"
[lib]
name = "upskill"
path = "src/lib.rs"
[[bin]]
name = "upskill"
path = "src/main.rs"
[[example]]
name = "mangen"
path = "examples/mangen.rs"
[[test]]
name = "cli_add"
path = "tests/cli_add.rs"
[[test]]
name = "cli_bundle_install"
path = "tests/cli_bundle_install.rs"
[[test]]
name = "cli_ci_mode"
path = "tests/cli_ci_mode.rs"
[[test]]
name = "cli_doctor"
path = "tests/cli_doctor.rs"
[[test]]
name = "cli_exit_codes"
path = "tests/cli_exit_codes.rs"
[[test]]
name = "cli_fmt"
path = "tests/cli_fmt.rs"
[[test]]
name = "cli_global_scope"
path = "tests/cli_global_scope.rs"
[[test]]
name = "cli_install"
path = "tests/cli_install.rs"
[[test]]
name = "cli_lint"
path = "tests/cli_lint.rs"
[[test]]
name = "cli_list"
path = "tests/cli_list.rs"
[[test]]
name = "cli_mangen"
path = "tests/cli_mangen.rs"
[[test]]
name = "cli_misc"
path = "tests/cli_misc.rs"
[[test]]
name = "cli_new"
path = "tests/cli_new.rs"
[[test]]
name = "cli_quiet"
path = "tests/cli_quiet.rs"
[[test]]
name = "cli_remove"
path = "tests/cli_remove.rs"
[[test]]
name = "cli_search"
path = "tests/cli_search.rs"
[[test]]
name = "cli_stdio_discipline"
path = "tests/cli_stdio_discipline.rs"
[[test]]
name = "cli_update"
path = "tests/cli_update.rs"
[[test]]
name = "cli_ux_polish"
path = "tests/cli_ux_polish.rs"
[[test]]
name = "generate_agents"
path = "tests/generate_agents.rs"
[[test]]
name = "generate_rules"
path = "tests/generate_rules.rs"
[[test]]
name = "generate_skills"
path = "tests/generate_skills.rs"
[[test]]
name = "parse_bundles"
path = "tests/parse_bundles.rs"
[[test]]
name = "pipeline_local"
path = "tests/pipeline_local.rs"
[[test]]
name = "pipeline_lockfile"
path = "tests/pipeline_lockfile.rs"
[[test]]
name = "pipeline_source"
path = "tests/pipeline_source.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "3"
[dependencies.ctrlc]
version = "3.4"
[dependencies.dprint-plugin-markdown]
version = "=0.21.1"
[dependencies.pulldown-cmark]
version = "0.11"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.sha2]
version = "0.11.0"
[dependencies.tempfile]
version = "3.14"
[dependencies.thiserror]
version = "2.0"
[dependencies.ureq]
version = "2"
features = ["json"]
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.clap_mangen]
version = "0.2"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.serde_json]
version = "1.0.149"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true