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.
19 lines
634 B
Rust
19 lines
634 B
Rust
//! P4.2 — Hermes-equivalent cron / at / interval scheduler.
|
|
//!
|
|
//! Three-mode schedule parsing (one-shot duration, recurring interval, cron
|
|
//! expression, ISO timestamp) on top of a JSON-on-disk job store. Mirrors the
|
|
//! Hermes `cron/jobs.py:102-209` parsing surface 1:1 so existing operators can
|
|
//! migrate without re-learning the schedule grammar.
|
|
|
|
#![forbid(unsafe_code)]
|
|
#![deny(unused_must_use)]
|
|
|
|
pub mod job;
|
|
pub mod parser;
|
|
pub mod runner;
|
|
pub mod store;
|
|
|
|
pub use job::{Job, JobId, Schedule};
|
|
pub use parser::{parse_schedule, ParseError};
|
|
pub use runner::{JobRunner, RunnerEvent};
|
|
pub use store::{JobStore, StoreError};
|