agent_exec/lib.rs
1/// agent-exec v0.1 — core library
2///
3/// Provides JSON output types, job-directory management, and the
4/// implementation of the sub-commands: run, status, tail, wait, kill, list,
5/// schema, and install-skills.
6pub mod install_skills;
7pub mod jobstore;
8pub mod kill;
9pub mod list;
10pub mod run;
11pub mod schema;
12pub mod schema_cmd;
13pub mod skills;
14pub mod status;
15pub mod tail;
16pub mod wait;