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: create, run, start, status, tail,
5/// wait, kill, list, schema, and install-skills.
6pub mod config;
7pub mod create;
8pub mod gc;
9pub mod install_skills;
10pub mod jobstore;
11pub mod kill;
12pub mod list;
13pub mod notify;
14pub mod run;
15pub mod schema;
16pub mod schema_cmd;
17pub mod skills;
18pub mod start;
19pub mod status;
20pub mod tag;
21pub mod tail;
22pub mod wait;