[package]
edition = "2021"
rust-version = "1.74"
name = "agent-decision-log"
version = "0.1.0"
authors = ["Mukunda Rao Katta <mukunda.vjcs6@gmail.com>"]
build = false
exclude = [
".github/*",
"target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WHY-layer decision log for AI agents: record options considered, the option chosen, the rationale, and the outcome, then persist as JSONL."
homepage = "https://github.com/MukundaKatta/agent-decision-log-rs"
documentation = "https://docs.rs/agent-decision-log"
readme = "README.md"
keywords = [
"llm",
"agents",
"ai",
"log",
"audit",
]
categories = [
"development-tools::debugging",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/MukundaKatta/agent-decision-log-rs"
[lib]
name = "agent_decision_log"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"