jj-navi 0.2.0

Workspace navigation and management for Jujutsu, built for parallel human and AI agent workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![warn(missing_docs)]

//! `jj-navi` is a small CLI-focused library for navigating Jujutsu workspaces.
//! It exposes the binary entrypoint plus a narrow set of formatting and domain
//! types used by the test suite.

mod app;
mod cli;
pub mod doctor;
mod error;
pub mod output;
mod repo;
pub mod types;

/// Run the CLI binary entrypoint with the provided binary name and argv.
pub use app::main as run;
/// Crate-wide error type.
pub use error::{Error, Result};