bijux-cli 0.3.6

Command-line runtime for automation, plugin-driven tools, and interactive workflows with structured output.
Documentation
1
2
3
4
5
6
7
8
9
use crate::routing::catalog::repl_reference_commands;

/// Render stable REPL command reference text.
#[must_use]
pub fn render_repl_command_reference() -> String {
    let mut lines = vec!["REPL Commands"];
    lines.extend(repl_reference_commands());
    format!("{}\n", lines.join("\n"))
}