[package]
edition = "2024"
rust-version = "1.96.0"
name = "shepherd-cli"
version = "6.4.5"
authors = [
"FL03 <joe@pzzld.org>",
"Scattered-Systems LLC <support@scsys.io>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "shepherd"
description = "The canonical shepherd command-line interface over the per-project registry, run artifacts, and sprint pipeline."
homepage = "https://github.com/FL03/shepherd/wiki"
readme = "README.md"
keywords = [
"agent",
"orchestration",
"sprint",
"cli",
"plugin",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/FL03/shepherd.git"
[package.metadata.docs.rs]
all-features = false
features = ["full"]
rustc-args = [
"--cfg",
"docsrs",
]
version = "v{{version}}"
[package.metadata.release]
no-dev-version = true
tag-name = "v{{version}}"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/shepherd-{ version }-{ target }.tar.gz"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
disabled-strategies = [
"quick-install",
"compile",
]
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/shepherd-{ version }-{ target }.zip"
pkg-fmt = "zip"
[features]
alloc = [
"serde/alloc",
"serde_json/alloc",
"shepherd/alloc",
]
bundled = ["shepherd/bundled"]
default = [
"bundled",
"std",
]
full = [
"default",
"shepherd/full",
]
native = ["full"]
nightly = ["shepherd/nightly"]
sqlite-wasm = ["shepherd/sqlite-wasm"]
std = [
"alloc",
"anyhow/std",
"clap/std",
"serde/std",
"serde_json/std",
"shepherd/std",
"thiserror/std",
"tracing/std",
]
wasi = [
"bundled",
"shepherd/wasi",
"std",
"wasi-vfs",
]
wasi-vfs = ["shepherd/wasi-vfs"]
wasm = [
"shepherd/wasm",
"sqlite-wasm",
"std",
]
[lib]
name = "shepherd_cli"
path = "src/lib.rs"
bench = false
[[bin]]
name = "shepherd"
path = "bin/cli.rs"
doc = false
[[test]]
name = "claude_hook_cli"
path = "tests/claude_hook_cli.rs"
[[test]]
name = "codex_hook_cli"
path = "tests/codex_hook_cli.rs"
[[test]]
name = "compile_cli"
path = "tests/compile_cli.rs"
required-features = ["std"]
[[test]]
name = "content_compiler"
path = "tests/content_compiler.rs"
required-features = ["std"]
[[test]]
name = "context"
path = "tests/context.rs"
[[test]]
name = "dispatch_cli"
path = "tests/dispatch_cli.rs"
required-features = ["std"]
[[test]]
name = "dispatch_service"
path = "tests/dispatch_service.rs"
required-features = ["std"]
[[test]]
name = "dispatch_store"
path = "tests/dispatch_store.rs"
required-features = ["std"]
[[test]]
name = "guard_cli"
path = "tests/guard_cli.rs"
[[test]]
name = "legacy_retirement"
path = "tests/legacy_retirement.rs"
[[test]]
name = "migrate_layout"
path = "tests/migrate_layout.rs"
[[test]]
name = "run_store"
path = "tests/run_store.rs"
required-features = ["std"]
[[test]]
name = "wave_a_models_cli"
path = "tests/wave_a_models_cli.rs"
[[test]]
name = "wave_b1_mem_cli"
path = "tests/wave_b1_mem_cli.rs"
[[test]]
name = "wave_b1_status_handoff_cli"
path = "tests/wave_b1_status_handoff_cli.rs"
[[test]]
name = "wave_b2_run_cli"
path = "tests/wave_b2_run_cli.rs"
[[test]]
name = "wave_b2_seed_cli"
path = "tests/wave_b2_seed_cli.rs"
[[test]]
name = "wave_c_bootstrap_cli"
path = "tests/wave_c_bootstrap_cli.rs"
[[test]]
name = "wave_d_planning_cli"
path = "tests/wave_d_planning_cli.rs"
[[test]]
name = "wave_e_coordination"
path = "tests/wave_e_coordination.rs"
[[test]]
name = "wave_f_knowledge"
path = "tests/wave_f_knowledge.rs"
[[test]]
name = "wave_g_coordination"
path = "tests/wave_g_coordination.rs"
[[test]]
name = "wave_h_execution_cli"
path = "tests/wave_h_execution_cli.rs"
[dependencies.anyhow]
version = "1"
default-features = false
[dependencies.chrono]
version = "0.4"
features = ["std"]
default-features = false
[dependencies.clap]
version = "4"
features = [
"derive",
"cargo",
"env",
"error-context",
"help",
"usage",
]
default-features = false
[dependencies.glob]
version = "0.3.4"
default-features = false
[dependencies.rusqlite]
version = "0.40"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
default-features = false
[dependencies.serde-saphyr]
version = "1"
features = ["deserialize"]
default-features = false
[dependencies.serde_json]
version = "1"
default-features = false
[dependencies.sha2]
version = "0.11"
default-features = false
[dependencies.shepherd]
version = "6.4.5"
features = [
"config",
"compiler",
"json",
"parse",
"registry",
"render",
"schema",
"tracing",
]
default-features = false
package = "shepherd-sdk"
[dependencies.thiserror]
version = "2"
default-features = false
[dependencies.toml]
version = "1"
features = [
"display",
"parse",
"serde",
]
default-features = false
[dependencies.tracing]
version = "0.1"
features = [
"attributes",
"log",
]
default-features = false
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
default-features = false
[dependencies.uuid]
version = "1"
features = [
"v7",
"std",
]
default-features = false
[target."cfg(unix)".dependencies.rustix]
version = "1"
features = [
"fs",
"std",
"process",
]
default-features = false
[lints.clippy]
cast_possible_truncation = "warn"
cast_sign_loss = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "deny"