kaish-kernel 0.16.0

Core kernel for kaish: lexer, parser, interpreter, and runtime
Documentation
//! kaish-kernel (核): The core of 会sh.
//!
//! This crate provides:
//!
//! - **Lexer**: Tokenizes kaish source code using logos
//! - **Parser**: Builds AST from tokens using chumsky
//! - **AST**: Type definitions for the abstract syntax tree
//! - **Interpreter**: Expression evaluation, scopes, and the `$?` result type
//! - **VFS**: Virtual filesystem with mount points
//! - **Tools**: Tool trait, registry, and builtin commands
//! - **Scheduler**: Pipeline execution and background job management
//! - **Paths**: XDG-compliant path helpers

pub mod arithmetic;
pub mod ast;
pub mod backend;
pub(crate) mod backend_walker_fs;
pub mod dispatch;
pub mod duration;
pub mod error;
pub mod fragment;
pub mod help;
pub mod ignore_config;
pub mod interpreter;
pub mod output_limit;
pub mod kernel;
pub mod lexer;
pub mod name;
pub mod operation;
pub mod parser;
pub mod paths;
#[cfg(all(unix, feature = "subprocess"))]
pub mod pidfd;
pub mod scheduler;
pub(crate) mod telemetry;
pub mod tools;
pub mod trash;
#[cfg(feature = "os-integration")]
pub mod trash_system;
pub mod validator;
pub mod vfs;
pub mod watchdog;
#[cfg(all(unix, feature = "subprocess"))]
pub mod terminal;

// Re-export kaish_glob as our glob/walker modules for backwards compatibility
pub use kaish_glob as glob_crate;

/// Glob pattern matching (re-exported from kaish-glob).
pub mod glob {
    pub use kaish_glob::glob::{contains_glob, expand_braces, glob_match};
}

/// Recursive file walking infrastructure (re-exported from kaish-glob).
pub mod walker {
    pub use kaish_glob::{
        build_file_types, list_file_types, EntryTypes, FileTypeError, FileWalker, FilterResult,
        GlobPath, IgnoreFilter, IncludeExclude, PathSegment, PatternError, WalkOptions,
        WalkerDirEntry, WalkerError, WalkerFs,
    };
    pub use crate::backend_walker_fs::BackendWalkerFs;
}

pub use backend::{
    BackendError, BackendResult, KernelBackend, LocalBackend, PatchOp, ReadRange,
    ToolInfo, ToolResult, VirtualOverlayBackend, WriteMode,
};
pub use dispatch::{CommandDispatcher, PipelinePosition};
pub use error::KernelError;
pub use ignore_config::{IgnoreConfig, IgnoreScope};
pub use kernel::{
    CommandKind, ExecuteOptions, Kernel, KernelConfig, VfsMountMode, MAX_RECURSION_DEPTH,
    RECOMMENDED_STACK_SIZE,
};
pub use output_limit::OutputLimitConfig;

// ═══════════════════════════════════════════════════════════════════════════
// Embedding Conveniences
// ═══════════════════════════════════════════════════════════════════════════

// Backend with /v/* support for embedders
//
// Use `Kernel::with_backend()` to provide a custom backend with automatic
// `/v/*` path support (job observability, blob storage):
//
// ```ignore
// let kernel = Kernel::with_backend(my_backend, config, |vfs| {
//     vfs.mount_arc("/v/docs", docs_fs);
// }, |_| {})?;
// ```

// Job observability (for embedders capturing command output)
pub use scheduler::{BoundedStream, StreamStats, DEFAULT_STREAM_MAX_SIZE, drain_to_stream};
// Streaming stdin seam: a frontend (REPL `-c`/script) hands the kernel a lazy
// `PipeReader` via `Kernel::execute_with_pipe_stdin`, so a command that never
// reads stdin never blocks on an open pipe. See `execute_pipe_stdin_tests`.
pub use scheduler::{pipe_stream, pipe_stream_default, PipeReader, PipeWriter, PIPE_BUFFER_SIZE};
pub use vfs::JobFs;

// XDG path primitives (embedders compose their own paths)
pub use paths::{home_dir, xdg_cache_home, xdg_config_home, xdg_data_home, xdg_runtime_dir};

// Tilde expansion utility
pub use interpreter::expand_tilde;

// Tool registration (for embedders registering custom tools)
pub use tools::{Tool, ToolRegistry, ExecContext};

// Statement metadata without execution (embedders compose their own
// approval machinery over it — see docs/EMBEDDING.md)
pub use ast::plan::{plan_program, PlannedStatement};
pub use fragment::{expand_fragment, FragmentError};
pub use kaish_types::plan::{Expansion, FragmentAddr, Hole, PlannedHeredoc};