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.
39 lines
1.1 KiB
Rust
39 lines
1.1 KiB
Rust
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright 2026 <author org>
|
|
//!
|
|
//! Crate-local error type. Maps into `kei_runtime_core::Error` via `From`
|
|
//! so the `MemoryBackend` trait surface stays in runtime-core variants.
|
|
|
|
use thiserror::Error;
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum Error {
|
|
#[error("redis: {0}")]
|
|
Redis(#[from] redis::RedisError),
|
|
|
|
#[error("serde: {0}")]
|
|
Serde(#[from] serde_json::Error),
|
|
|
|
#[error("not found: {0}")]
|
|
NotFound(String),
|
|
|
|
#[error("dna: {0}")]
|
|
Dna(String),
|
|
|
|
#[error("config: {0}")]
|
|
Config(String),
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
impl From<Error> for kei_runtime_core::Error {
|
|
fn from(e: Error) -> Self {
|
|
match e {
|
|
Error::Redis(re) => kei_runtime_core::Error::Network(re.to_string()),
|
|
Error::Serde(se) => kei_runtime_core::Error::Serde(se),
|
|
Error::NotFound(k) => kei_runtime_core::Error::NotFound(k),
|
|
Error::Dna(s) => kei_runtime_core::Error::Provider(format!("dna: {s}")),
|
|
Error::Config(s) => kei_runtime_core::Error::Config(s),
|
|
}
|
|
}
|
|
}
|