1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! jjj (Jujutsu Juggler) — distributed project management using Popperian epistemology.
//!
//! Entities follow a three-tier model:
//! - **Problems**: things to solve, forming a DAG via `parent_id`
//! - **Solutions**: conjectures attached to jj Change IDs (not commit hashes)
//! - **Critiques**: error-elimination feedback that can block solution approval
//!
//! All metadata lives in an orphaned `jjj` bookmark and syncs via `jj git push/fetch`.
//! There is no central server and no database required for the core workflow.
//! SQLite is used as a local cache for search and embeddings only.
// Re-export commonly used types
pub use ;
pub use ;