Skip to main content

vissue_core/
lib.rs

1//! Plain-text issue tracking over per-project orgmode files.
2//!
3//! An issue is one top-level org heading in `<root>/<prefix>/<project>/issues.org`,
4//! where `prefix` defaults to `Software`. The file is the database: every verb
5//! parses it, and every mutation rewrites it under a lock. Reports never print;
6//! they return `String`, so a CLI, an MCP server, and a library caller all share
7//! one code path.
8
9pub mod agent;
10pub mod catalog;
11pub mod config;
12pub mod digest;
13pub mod error;
14pub mod events;
15pub mod graph;
16pub mod keys;
17pub mod mirror;
18pub mod model;
19pub mod ops;
20pub mod org;
21pub mod process_env;
22pub mod props;
23pub mod related;
24pub mod report;
25pub mod router;
26pub mod store;
27pub mod views;
28
29pub use config::{DEFAULT_PREFIX, Layout, VissueConfig};
30pub use error::{Error, Result};
31pub use model::{IssueHeading, LogEntry, READY_STATES, TODO_HEADER, TODO_KEYWORDS};
32pub use ops::{CreateOpts, RejectOpts, UpdatePred};
33pub use router::{ProjectRef, RouteHit, Router};
34pub use store::IssueDoc;