zeph-core 0.12.6

Core agent loop, configuration, context builder, metrics, and vault for Zeph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

pub mod command;
pub mod def;
pub mod error;
pub mod filter;
pub mod grants;
pub mod manager;
pub mod state;

pub use command::AgentCommand;
pub use def::{SkillFilter, SubAgentDef, SubAgentPermissions, ToolPolicy};
pub use error::SubAgentError;
pub use filter::{FilteredToolExecutor, filter_skills};
pub use grants::{Grant, GrantKind, PermissionGrants, SecretRequest};
pub use manager::{SubAgentHandle, SubAgentManager, SubAgentStatus};
pub use state::SubAgentState;