netsky-core 0.1.7

netsky core: agent model, prompt loader, spawner, config
Documentation
//! netsky core: agent model, prompt loader, spawner, config.
//!
//! All canonical string constants (session names, state paths, env var
//! names, MCP server names, CLI flags) live in [`consts`]. Magic strings
//! in this crate are a bug — promote them to `consts`.

pub mod agent;
pub mod config;
pub mod consts;
pub mod cron;
pub mod envelope;
pub mod error;
pub mod jsonl;
pub mod paths;
pub mod process;
pub mod prompt;
pub mod runtime;
pub mod spawn;

pub use agent::AgentId;
pub use error::{Error, Result};
pub use prompt::{PromptContext, render_prompt};
pub use runtime::Runtime;