Skip to main content

agentjj/
lib.rs

1// ABOUTME: Library root for agentjj - agent-oriented jj porcelain
2// ABOUTME: Exports manifest, typed changes, intent transactions, and repo operations
3
4pub mod change;
5pub mod error;
6pub mod intent;
7pub mod manifest;
8pub mod repo;
9pub mod symbols;
10
11pub use change::{ChangeCategory, ChangeType, TypedChange};
12pub use error::{Error, Result};
13pub use intent::{Intent, IntentResult};
14pub use manifest::Manifest;
15pub use symbols::{SupportedLanguage, Symbol, SymbolContext, SymbolKind};