systemg 0.58.1

An agent-friendly general process composer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The `purge` command, rebuilt from first principles.
//!
//! - [`crate::purge::plan`] — resolves selectors into an exhaustive
//!   [`crate::purge::PurgePlan`], with a [`crate::purge::preflight`] that refuses
//!   to wipe state out from under a live supervisor (SG0401) before any deletion.

pub mod plan;

pub use plan::{
    Preflight, PurgePlan, World, incomplete, preflight, project_not_found, resolve_plan,
    supervisor_active,
};