decapod 0.60.8

Decapod is a Rust-built governance runtime for AI agents: repo-native state, enforced workflow, proof gates, safe coordination.
Documentation
1
2
3
4
5
6
7
use crate::core::error::DecapodError;

pub const PUBLIC_CLOUD_BACKEND_UNAVAILABLE: &str = "Cloud backend is not included in the public Decapod crate. Use local mode; future cloud integrations must attach through a public backend boundary without private git/path dependencies.";

pub fn unavailable_error() -> DecapodError {
    DecapodError::NotImplemented(PUBLIC_CLOUD_BACKEND_UNAVAILABLE.to_string())
}