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