myco 0.1.1

Multi-host coding agent CLI (local in-process + SSH remotes)
pub mod core;
pub mod generative_model;
pub mod harness;
pub mod host;
pub mod manual;
pub mod prompts;
pub mod session;
pub mod text_search;
pub mod tool_services;

pub use core::CancelToken;
pub use harness::{
    AgentRootHandles, Harness, HarnessConfig, HostConfig, HostController, HostStatus,
    RemoteHostConfig, SshAgentPreflightReport, SubagentService, default_config_path,
    default_local_host_command, ensure_remote_ssh_identities, example_config_toml,
    load_harness_config, print_preflight_report,
};
pub use host::HostWorker;
pub use manual::Article as ManualArticle;
pub use session::{
    ActiveSession, Agent, AgentEvent, AgentInteractionError, EventSink, NullEventSink,
    SESSION_FILE_VERSION, Session, SessionLink, SessionListEntry, TraceContext, uuid_simple_hex,
};
pub use text_search::TextSearchEngine;
pub use tool_services::{
    BrowserService, HostDispatchContext, ManualService, SessionMetaTool, TextSearchToolService,
    ToolService,
};