Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
30 lines
919 B
TOML
30 lines
919 B
TOML
[package]
|
|
name = "kei-ping"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
description = "Cross-window agent presence (heartbeat / list / watch). Auto-selects backend: Redis if redis-cli ping == PONG on localhost, else SQLite."
|
|
authors = ["Denis Parfionovich <info@greendragon.info>"]
|
|
license = "Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "kei-ping"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "kei_ping"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rusqlite = { workspace = true }
|
|
redis = { version = "0.27", default-features = false, features = ["aio", "tokio-comp"] }
|
|
tokio = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
[package.metadata.keisei]
|
|
trait = "PingStore"
|
|
description = "Atomar — cross-window agent heartbeat. Two engines (SQLite default, Redis auto if running)."
|
|
authors = ["Denis Parfionovich <info@greendragon.info>"]
|