straymark-cli 3.13.2

CLI for StrayMark — the cognitive discipline your AI-assisted projects need
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `straymark charter` — Charter lifecycle subcommands.
//!
//! Phase 1 shipped `new` (scaffold from template), `list` (enumerate with filters),
//! and `status` (detail view).
//! Phase 2 adds `close` (interactive telemetry) and `drift` (file-vs-commit
//! drift check, in PR 3).
//! Phase 3 will add `audit` (multi-model external audit).

pub mod audit;
pub mod batch_complete;
pub mod close;
pub mod drift;
pub mod list;
pub mod new;
pub mod status;