agentlink-cli 0.0.2

One brain for every AI coding agent — shared rules and skills with zero file duplication
[package]
name = "agentlink-cli"
description = "One brain for every AI coding agent — shared rules and skills with zero file duplication"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true

[[bin]]
name = "agentlink"
path = "src/main.rs"

[dependencies]
agentlink-domain.workspace = true
agentlink-fs.workspace = true
anyhow = "1"
clap = { version = "4", features = ["derive"] }
dialoguer = { version = "0.12", default-features = false }

[dev-dependencies]
agentlink-domain = { workspace = true, features = ["testing"] }
tempfile.workspace = true

[lints.rust]
unused_qualifications = "warn"

[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"