bijux-cli 0.3.5

Command-line runtime for automation, plugin-driven tools, and interactive workflows with structured output.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![forbid(unsafe_code)]
//! REPL surface facade.

pub use crate::interface::repl::{
    benchmark_startup_latency, check_repl_budgets, completion_candidates, configure_history,
    estimated_session_memory_bytes, execute_repl_input, execute_repl_line, flush_history,
    inspect_last_error, load_history, register_completion_registry,
    register_plugin_completion_hook, render_repl_command_reference, repl_argv_from_line,
    replay_history_command, session_diagnostics_dump, shutdown_repl, startup_repl,
    startup_repl_with_diagnostics, ReplError, ReplEvent, ReplFrame, ReplInput, ReplSession,
    ReplShutdownContract, ReplStartupContract, ReplStream, REPL_MEMORY_BUDGET_BYTES,
    REPL_STARTUP_LATENCY_BUDGET_MS,
};