[package]
edition = "2024"
rust-version = "1.85"
name = "agentlink-cli"
version = "0.0.1"
authors = ["The agentlink contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "One brain for every AI coding agent — shared rules and skills with zero file duplication"
homepage = "https://github.com/fialhosoft/agentlink"
readme = false
keywords = [
"ai",
"agents",
"claude",
"cursor",
"codex",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/fialhosoft/agentlink"
[[bin]]
name = "agentlink"
path = "src/main.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[dependencies.agentlink-domain]
version = "0.0.1"
[dependencies.agentlink-fs]
version = "0.0.1"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dev-dependencies.agentlink-domain]
version = "0.0.1"
features = ["testing"]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unused_qualifications = "warn"