[package]
edition = "2021"
name = "equip"
version = "0.1.4"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Equips local agents with centrally-managed skills from local and remote sources."
homepage = "https://github.com/trentdavies/equip"
readme = "README.md"
keywords = [
"agent",
"skills",
"cli",
"claude",
"codex",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trentdavies/equip"
[lib]
name = "equip"
path = "src/lib.rs"
[[bin]]
name = "equip"
path = "src/main.rs"
[[test]]
name = "cli_flags"
path = "tests/cli_flags.rs"
[[test]]
name = "functional_agent_ops"
path = "tests/functional_agent_ops.rs"
[[test]]
name = "functional_bundle_ops"
path = "tests/functional_bundle_ops.rs"
[[test]]
name = "functional_dry_run"
path = "tests/functional_dry_run.rs"
[[test]]
name = "functional_equip_kit"
path = "tests/functional_equip_kit.rs"
[[test]]
name = "functional_install_ops"
path = "tests/functional_install_ops.rs"
[[test]]
name = "functional_reconcile"
path = "tests/functional_reconcile.rs"
[[test]]
name = "functional_skill_plugin_ops"
path = "tests/functional_skill_plugin_ops.rs"
[[test]]
name = "functional_source_ops"
path = "tests/functional_source_ops.rs"
[[test]]
name = "functional_status_config_cache"
path = "tests/functional_status_config_cache.rs"
[[test]]
name = "functional_unapply"
path = "tests/functional_unapply.rs"
[[test]]
name = "integration_archive_and_shortcuts"
path = "tests/integration_archive_and_shortcuts.rs"
[[test]]
name = "integration_bundle"
path = "tests/integration_bundle.rs"
[[test]]
name = "integration_config_source_agent"
path = "tests/integration_config_source_agent.rs"
[[test]]
name = "integration_install_uninstall"
path = "tests/integration_install_uninstall.rs"
[[test]]
name = "smoke_test"
path = "tests/smoke_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "3"
[dependencies.dialoguer]
version = "0.11"
[dependencies.dirs]
version = "6"
[dependencies.glob-match]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.similar]
version = "2"
[dependencies.tempfile]
version = "3"
[dependencies.toml]
version = "0.8"
[dependencies.zip]
version = "2"
[dev-dependencies]