Expand description
Agent runtime: the underlying model + CLI a spawned agent executes.
netsky is runtime-agnostic; the agent lifecycle, prompt model, and bus transport stay the same regardless of which flavor drives the pane. Each runtime encapsulates:
- its PATH dependencies (
Runtime::required_deps) - how to build the shell command a tmux session will run
(
Runtime::build_command) - its own per-agent defaults (model, effort, etc.)
Claude is the default flavor. Codex is selected per-invocation
via netsky agent N --type codex (resident) or via the sidecar
path in cmd/codex_agent.rs (single-turn).
Re-exports§
pub use claude::ClaudeConfig;pub use codex::CodexConfig;
Modules§
- claude
- Claude runtime: build the
claudeCLI invocation for a spawned agent. - codex
- Codex runtime: build the
codexCLI invocation for a resident agent.
Enums§
- Runtime
- The runtime flavor driving an agent pane.