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