26809df720
- Add workshop-schedule crate (petgraph-based DAG scheduling) - Implement all bake decorators with combinator chain execution - Refactor notify module: extract handler, rule, template, util, queue - Add NotificationQueue with priority/drain semantics - Enhance finalize plugin system with internal plugin registration - Update ExecutionContext and event types - Add per-crate AGENTS.md knowledge base files - Remove inline AGENTS.md files (consolidated into per-crate docs)
10 lines
200 B
Rust
10 lines
200 B
Rust
// Code in this module PARTIALLY or FULLY utilized AI Coding Agent
|
|
|
|
pub mod dag;
|
|
pub mod edge;
|
|
pub mod node;
|
|
|
|
pub use dag::{Dag, DagError};
|
|
pub use edge::EdgeKind;
|
|
pub use node::{DagNode, NodeColor};
|