agentd-core 1.6.0

Minimal, MCP-native agent runtime as a library: the agentic loop, supervisor, workflows, and code-registered tools (the agentd engine)
Documentation
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: AGPL-3.0-only
//! Trigger primitives: the cron schedule parser behind the `schedule` start
//! node.

// The 5-field cron parser, feature-gated (no deps). The `schedule` start node
// (`runtime::starts`) uses `timer::CronExpr`.
#[cfg(feature = "cron")]
pub mod timer;