Skip to main content

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 config;
7pub mod install_skills;
8pub mod jobstore;
9pub mod kill;
10pub mod list;
11pub mod run;
12pub mod schema;
13pub mod schema_cmd;
14pub mod skills;
15pub mod status;
16pub mod tail;
17pub mod wait;