1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
use std::path::PathBuf;
use anyhow::{Context, Result};
use clap::{Parser, Subcommand};
mod cmd;
#[derive(Parser)]
#[command(
name = "teamctl",
version,
about = "Declarative CLI for persistent AI agent teams",
long_about = None,
)]
struct Cli {
/// Compose root (the directory holding `team-compose.yaml`). When unset,
/// teamctl walks up from CWD looking for `.team/team-compose.yaml`.
#[arg(long, short = 'C', env = "TEAMCTL_ROOT")]
root: Option<PathBuf>,
#[command(subcommand)]
command: Command,
}
#[derive(Subcommand)]
enum Command {
// ── Setup ────────────────────────────────────────────────────────
/// Scaffold a fresh `.team/` directory in the current repo.
Init {
/// Template name. Use `--list` to see options.
#[arg(long)]
template: Option<String>,
/// Project id (default: derived from the repo directory name).
#[arg(long)]
project: Option<String>,
/// Skip prompts; accept defaults.
#[arg(long, short = 'y')]
yes: bool,
},
// ── Lifecycle ────────────────────────────────────────────────────
/// Parse the compose tree and check invariants.
Validate,
/// Render artifacts and start every agent's tmux session.
Up,
/// Stop every agent's tmux session. State is preserved.
Down,
/// Apply compose changes. Restarts changed agents only.
Reload,
// ── Inspection ───────────────────────────────────────────────────
/// Wide table: agents, supervisor state, inbox depth.
#[command(alias = "status")]
Ps,
/// Tail an agent's tmux pane scrollback.
Logs { target: String },
/// Live message stream for an agent (-f to follow).
Tail {
target: String,
#[arg(short, long)]
follow: bool,
},
/// Inbox snapshot for an agent (or `--all`).
Mail {
target: Option<String>,
#[arg(long)]
all: bool,
},
/// Full snapshot of an agent: env, mcp, prompt, recent messages, costs.
Inspect { target: String },
// ── Mailbox ──────────────────────────────────────────────────────
/// Inject a message as `sender=cli`.
Send { target: String, text: String },
// ── Approvals ────────────────────────────────────────────────────
/// Show pending HITL approval requests.
#[command(alias = "pending")]
Approvals,
/// Approve a pending HITL request.
Approve {
id: i64,
#[arg(long)]
note: Option<String>,
},
/// Deny a pending HITL request.
Deny {
id: i64,
#[arg(long)]
note: Option<String>,
},
// ── Bridges ──────────────────────────────────────────────────────
/// Manage inter-project manager bridges.
Bridge {
#[command(subcommand)]
action: BridgeAction,
},
// ── Budget / GC ─────────────────────────────────────────────────
/// Per-project activity and cost for today.
Budget {
#[arg(long)]
project: Option<String>,
},
/// Garbage-collect expired messages and stale approvals.
Gc,
// ── Attach / exec ────────────────────────────────────────────────
/// Attach to an agent's tmux session (read-only by default).
Attach {
target: String,
/// Allow keyboard input. Dangerous — confirms before attaching.
#[arg(long)]
rw: bool,
},
/// Run a command in an agent's CWD with its env loaded.
Exec {
target: String,
#[arg(last = true, allow_hyphen_values = true, num_args = 1..)]
argv: Vec<String>,
},
/// Open an interactive shell in an agent's CWD with its env loaded.
Shell { target: String },
// ── Env / context (no compose root required) ─────────────────────
/// List or doctor the environment variables referenced by compose.
Env {
#[arg(long)]
doctor: bool,
},
/// Switch between named `.team/` roots on this machine.
Context {
#[command(subcommand)]
action: ContextAction,
},
// ── Internal ────────────────────────────────────────────────────
/// Wrap a runtime invocation, watching for rate-limit signatures.
/// Used by `agent-wrapper.sh`; not normally invoked by hand.
#[command(name = "rl-watch")]
RlWatch {
target: String,
#[arg(last = true, allow_hyphen_values = true)]
runtime_command: Vec<String>,
},
}
#[derive(Subcommand)]
enum ContextAction {
/// List registered contexts.
Ls,
/// Print the active context name.
Current,
/// Set the active context.
Use { name: String },
/// Register a new context.
Add { name: String, path: PathBuf },
/// Remove a context.
Rm { name: String },
}
#[derive(Subcommand)]
enum BridgeAction {
Open {
#[arg(long)]
from: String,
#[arg(long)]
to: String,
#[arg(long)]
topic: String,
#[arg(long, default_value_t = 120)]
ttl: u64,
},
Close {
id: i64,
},
#[command(alias = "list")]
Ls,
Log {
id: i64,
},
}
fn main() -> Result<()> {
tracing_subscriber::fmt()
.with_env_filter(
tracing_subscriber::EnvFilter::try_from_env("TEAMCTL_LOG")
.unwrap_or_else(|_| tracing_subscriber::EnvFilter::new("info")),
)
.init();
let cli = Cli::parse();
// Some commands don't need a resolved root — handle them up front.
if let Command::Init {
template,
project,
yes,
} = cli.command
{
return cmd::init::run(template, project, yes);
}
if let Command::Context { action } = &cli.command {
return match action {
ContextAction::Ls => cmd::context::ls(),
ContextAction::Current => cmd::context::current(),
ContextAction::Use { name } => cmd::context::use_(name),
ContextAction::Add { name, path } => cmd::context::add(name, path),
ContextAction::Rm { name } => cmd::context::rm(name),
};
}
let root = resolve_root(cli.root)?;
match cli.command {
Command::Validate => cmd::validate::run(&root),
Command::Up => {
let r = cmd::up::run(&root);
// Auto-register the context on first up.
let _ = cmd::context::auto_register(&root);
r
}
Command::Down => cmd::down::run(&root),
Command::Reload => cmd::reload::run(&root),
Command::Ps => cmd::status::run(&root),
Command::Logs { target } => cmd::logs::run(&root, &target),
Command::Tail { target, follow } => cmd::tail::run(&root, &target, follow),
Command::Mail { target, all } => cmd::mail::run(&root, target.as_deref(), all),
Command::Inspect { target } => cmd::inspect::run(&root, &target),
Command::Send { target, text } => cmd::send::run(&root, &target, &text),
Command::Budget { project } => cmd::budget::run(&root, project.as_deref()),
Command::Gc => cmd::gc::run(&root),
Command::RlWatch {
target,
runtime_command,
} => cmd::rl_watch::run(&root, &target, &runtime_command),
Command::Approvals => cmd::approval::pending(&root),
Command::Approve { id, note } => cmd::approval::decide(&root, id, true, note.as_deref()),
Command::Deny { id, note } => cmd::approval::decide(&root, id, false, note.as_deref()),
Command::Bridge { action } => match action {
BridgeAction::Open {
from,
to,
topic,
ttl,
} => cmd::bridge::open(&root, &from, &to, &topic, ttl),
BridgeAction::Close { id } => cmd::bridge::close(&root, id),
BridgeAction::Ls => cmd::bridge::list(&root),
BridgeAction::Log { id } => cmd::bridge::log(&root, id),
},
Command::Attach { target, rw } => cmd::attach::run(&root, &target, rw),
Command::Exec { target, argv } => cmd::exec::run(&root, &target, &argv),
Command::Shell { target } => cmd::exec::shell(&root, &target),
Command::Env { doctor } => cmd::env::run(&root, doctor),
Command::Context { .. } => unreachable!("handled above"),
Command::Init { .. } => unreachable!("handled above"),
}
}
/// Resolution order: `--root` flag > `TEAMCTL_ROOT` env > current context >
/// walk up from CWD looking for `.team/`.
fn resolve_root(explicit: Option<PathBuf>) -> Result<PathBuf> {
if let Some(p) = explicit {
return p
.canonicalize()
.with_context(|| format!("canonicalize --root {}", p.display()));
}
if let Some(p) = cmd::context::root_for_current()? {
return Ok(p);
}
let cwd = std::env::current_dir().context("get cwd")?;
team_core::compose::Compose::discover(&cwd)
}