[package]
edition = "2024"
rust-version = "1.95"
name = "lifeloop-cli"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provider-neutral lifecycle abstraction and normalizer for AI harnesses"
readme = "README.md"
keywords = [
"lifecycle",
"ai",
"ccd",
"harness",
"agents",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/nantobv/lifeloop"
[lib]
name = "lifeloop"
path = "src/lib.rs"
[[bin]]
name = "lifeloop"
path = "src/main.rs"
[[bin]]
name = "lifeloop-bump-schema"
path = "src/bin/lifeloop-bump-schema.rs"
[[bin]]
name = "lifeloop-fake-ccd-client"
path = "src/bin/lifeloop-fake-ccd-client.rs"
[[test]]
name = "cli_asset"
path = "tests/cli_asset.rs"
[[test]]
name = "cli_conformance"
path = "tests/cli_conformance.rs"
[[test]]
name = "cli_event"
path = "tests/cli_event.rs"
[[test]]
name = "cli_host_hook"
path = "tests/cli_host_hook.rs"
[[test]]
name = "cli_manifest"
path = "tests/cli_manifest.rs"
[[test]]
name = "cli_receipt"
path = "tests/cli_receipt.rs"
[[test]]
name = "cli_telemetry"
path = "tests/cli_telemetry.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "domain_modules"
path = "tests/domain_modules.rs"
[[test]]
name = "fake_client"
path = "tests/fake_client.rs"
[[test]]
name = "fixity_pilot_event_invoke"
path = "tests/fixity_pilot_event_invoke.rs"
[[test]]
name = "foreign_manifest_boundary"
path = "tests/foreign_manifest_boundary.rs"
[[test]]
name = "host_assets"
path = "tests/host_assets.rs"
[[test]]
name = "host_assets_profiles"
path = "tests/host_assets_profiles.rs"
[[test]]
name = "kernel_purity"
path = "tests/kernel_purity.rs"
[[test]]
name = "live_evidence_claude"
path = "tests/live_evidence_claude.rs"
[[test]]
name = "manifest_claims"
path = "tests/manifest_claims.rs"
[[test]]
name = "protocol"
path = "tests/protocol.rs"
[[test]]
name = "router"
path = "tests/router.rs"
[[test]]
name = "router_callbacks"
path = "tests/router_callbacks.rs"
[[test]]
name = "router_e2e_subprocess"
path = "tests/router_e2e_subprocess.rs"
[[test]]
name = "router_failure_mapping"
path = "tests/router_failure_mapping.rs"
[[test]]
name = "router_negotiation"
path = "tests/router_negotiation.rs"
[[test]]
name = "router_receipts"
path = "tests/router_receipts.rs"
[[test]]
name = "spec_alignment"
path = "tests/spec_alignment.rs"
[[test]]
name = "telemetry"
path = "tests/telemetry.rs"
[[test]]
name = "wire_contract"
path = "tests/wire_contract.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"