namespace Codex.Dal.Enums;
///
/// Represents the current status of an agent.
///
public enum AgentStatus
{
///
/// Agent is active and available for execution
///
Active,
///
/// Agent is inactive and not available for execution
///
Inactive,
///
/// Agent has encountered an error and may need reconfiguration
///
Error
}