aa-core 0.0.1-alpha.9

Pure domain logic for Agent Assembly — no_std compatible
Documentation
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
//! Foundational types for the AI dev tool governance framework.
//!
//! These types are referenced by the `DevToolAdapter` trait and by every
//! per-tool adapter (Claude Code, Codex, GitHub Copilot, Windsurf Cascade).
//! They are intentionally light and free of runtime dependencies so that
//! adapters can be implemented in `no_std` contexts where applicable.

#[cfg(feature = "alloc")]
use alloc::string::String;
#[cfg(feature = "alloc")]
use alloc::vec::Vec;
#[cfg(feature = "std")]
use std::path::PathBuf;

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

/// Governance level applied to a managed AI dev tool or agent.
///
/// Variants are ordered such that
/// `L0Discover < L1Observe < L2Enforce < L3Native`. The derived `Ord`
/// implementation enables policies to express "at-least-this-level" rules,
/// for example `governance_level >= L2Enforce`.
///
/// | Level | Capability |
/// | --- | --- |
/// | [`L0Discover`][Self::L0Discover] | eBPF / proxy detects unknown agents and their external behavior. |
/// | [`L1Observe`][Self::L1Observe] | Network, file, process, and MCP observability without enforcement. |
/// | [`L2Enforce`][Self::L2Enforce] | Allow / deny, approval, redaction, and budget enforcement. |
/// | [`L3Native`][Self::L3Native] | Full SDK-integrated governance with identity, lineage, and semantic context. |
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, PartialOrd, Ord)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum GovernanceLevel {
    /// L0 — Discover. eBPF / proxy detects unknown agents and their
    /// external behavior; no policy enforcement is applied.
    ///
    /// This is also the [`Default`] for [`GovernanceLevel`]: any agent or
    /// rule that does not declare a level is treated as L0 (discover-only).
    #[default]
    L0Discover,
    /// L1 — Observe. Network, file, process, and MCP observability
    /// without enforcement.
    L1Observe,
    /// L2 — Enforce. Allow / deny, approval, redaction, and budget
    /// enforcement applied to the governed tool.
    L2Enforce,
    /// L3 — Native. Full SDK-integrated governance with identity,
    /// lineage, and semantic context awareness.
    L3Native,
}

impl core::fmt::Display for GovernanceLevel {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            GovernanceLevel::L0Discover => write!(f, "L0Discover"),
            GovernanceLevel::L1Observe => write!(f, "L1Observe"),
            GovernanceLevel::L2Enforce => write!(f, "L2Enforce"),
            GovernanceLevel::L3Native => write!(f, "L3Native"),
        }
    }
}

impl core::str::FromStr for GovernanceLevel {
    type Err = &'static str;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "L0" | "L0Discover" => Ok(GovernanceLevel::L0Discover),
            "L1" | "L1Observe" => Ok(GovernanceLevel::L1Observe),
            "L2" | "L2Enforce" => Ok(GovernanceLevel::L2Enforce),
            "L3" | "L3Native" => Ok(GovernanceLevel::L3Native),
            _ => Err("unknown governance level; expected L0, L1, L2, or L3"),
        }
    }
}

/// Concrete kind of AI dev tool being governed.
///
/// Concrete variants are matched against built-in `DevToolAdapter`
/// implementations. The [`Custom`][Self::Custom] variant lets out-of-tree
/// adapters identify themselves by name without requiring a code change
/// to this enum.
#[cfg(feature = "alloc")]
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum DevToolKind {
    /// Anthropic Claude Code (CLI).
    ClaudeCode,
    /// OpenAI Codex CLI.
    Codex,
    /// GitHub Copilot operating in agent mode.
    GitHubCopilot,
    /// Codeium Windsurf Cascade IDE agent.
    WindsurfCascade,
    /// Adapter-defined custom tool identified by an opaque name string.
    Custom(String),
}

/// Lightweight description of an MCP server an adapter is aware of.
///
/// Returned by [`DevToolAdapter::list_mcp_servers`] and consumed by
/// [`DevToolAdapter::apply_mcp_governance`]. This is a minimal placeholder;
/// when `aa-core` grows a richer MCP type (e.g. transport-aware
/// description), this struct will be replaced or wrapped without any
/// trait-method signature change.
///
/// [`DevToolAdapter::list_mcp_servers`]: <not yet defined; introduced in this same Subtask>
/// [`DevToolAdapter::apply_mcp_governance`]: <not yet defined; introduced in this same Subtask>
#[cfg(feature = "alloc")]
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct McpServerInfo {
    /// Stable identifier the tool uses for this MCP server (matches the
    /// key under which the server appears in the tool's native
    /// configuration file).
    pub name: String,
    /// Executable invoked to start the MCP server process.
    pub command: String,
    /// Arguments passed to `command` when the MCP server is started.
    pub args: Vec<String>,
}

/// Error type returned from [`DevToolAdapter`] method failures.
///
/// Variants are kept narrow so the gateway and the `aa run` launcher can
/// match on them and respond differently (e.g. `ToolNotFound` is
/// surfaced as a friendly CLI error, while `Io` is logged and
/// retried). The `#[from]` attribute on `Io` lets adapter implementations
/// use the `?` operator with `std::io::Error` without manual
/// `.map_err(...)` plumbing.
///
/// Gated on `feature = "std"` because [`AdapterError::SettingsApplyFailed`]
/// and [`AdapterError::Io`] wrap [`std::io::Error`].
///
/// `#[non_exhaustive]` is kept so future variants can be added without
/// breaking downstream callers that match on this enum.
#[cfg(feature = "std")]
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum AdapterError {
    /// The tool's binary or installation marker could not be located on
    /// the host.
    #[error("dev tool not found on this host")]
    ToolNotFound,

    /// Detection failed for a reason other than the tool simply not being
    /// installed (e.g. permission denied reading the install directory,
    /// version probe failed).
    #[error("dev tool detection failed: {0}")]
    DetectionFailed(String),

    /// The policy contained constructs the tool's native managed-settings
    /// format cannot express. Returned by
    /// [`DevToolAdapter::generate_managed_settings`].
    #[error("managed-settings generation failed: {0}")]
    SettingsGenerationFailed(String),

    /// Writing rendered managed settings to the tool's configuration
    /// surface failed. Returned by [`DevToolAdapter::apply_settings`].
    #[error("managed-settings apply failed: {0}")]
    SettingsApplyFailed(std::io::Error),

    /// The tool's binary could not be located, or its argument format
    /// cannot accommodate the launcher's governance wiring. Returned by
    /// [`DevToolAdapter::build_launch_command`].
    #[error("launch command construction failed: {0}")]
    LaunchFailed(String),

    /// The tool's MCP configuration surface could not be read or written
    /// (malformed file, permission denied, schema mismatch). Returned
    /// by [`DevToolAdapter::list_mcp_servers`] and
    /// [`DevToolAdapter::apply_mcp_governance`].
    #[error("MCP configuration failed: {0}")]
    McpConfigFailed(String),

    /// Generic I/O failure not covered by a more specific variant. The
    /// `#[from]` attribute lets adapter implementations use `?` to
    /// propagate `std::io::Error` directly.
    #[error("I/O error: {0}")]
    Io(#[from] std::io::Error),

    /// Serialization or deserialization failure during managed-settings
    /// or MCP-config rendering. Adapter implementations stringify their
    /// underlying serde error (e.g. `serde_json::Error::to_string()`)
    /// and pass the message in. Keeps `aa-core` free of a runtime
    /// `serde_json` dependency.
    #[error("serialization error: {0}")]
    Serde(String),
}

/// Static metadata describing a detected AI dev tool installation.
///
/// Returned by `DevToolAdapter::detect` and used to drive registry
/// decisions, managed-settings generation, and per-tool launch wiring.
#[cfg(feature = "std")]
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct DevToolInfo {
    /// Concrete tool variant.
    pub kind: DevToolKind,
    /// Tool version string, if reported by the binary.
    pub version: Option<String>,
    /// Absolute path to the installed tool binary.
    pub install_path: PathBuf,
    /// Highest governance level this installation can operate at.
    pub governance_level: GovernanceLevel,
    /// Whether the tool exposes MCP server configuration we can govern.
    pub supports_mcp: bool,
    /// Whether the tool reads governance config from a managed-settings file.
    pub supports_managed_settings: bool,
}

/// Per-tool integration contract for the dev tool governance framework.
///
/// Every per-tool adapter (Claude Code, Codex, GitHub Copilot, Windsurf
/// Cascade, third-party SaaS coding agents) implements this trait. The
/// gateway and the `aa run` launcher consume adapters via `dyn
/// DevToolAdapter`, so the trait must be object-safe — that property is
/// locked in by an explicit compile-time check added in AAASM-925.
///
/// Implementations live in their own crates / Stories and are out of
/// scope for this Subtask (see AAASM-201 through AAASM-205, AAASM-918).
///
/// ## Async dispatch
///
/// The `async fn` methods are macro-desugared by `async_trait::async_trait`
/// into boxed-future return types so that `dyn DevToolAdapter` is
/// dyn-safe on stable Rust. The boxing cost is negligible compared to
/// the I/O these methods perform (filesystem reads, subprocess writes,
/// MCP discovery).
#[cfg(feature = "std")]
#[async_trait::async_trait]
pub trait DevToolAdapter: Send + Sync {
    /// Detect whether the tool this adapter targets is installed on the
    /// current host.
    ///
    /// ### Contract
    /// * Returns `Some(DevToolInfo)` when the tool's binary or
    ///   well-known installation marker is present and readable.
    /// * Returns `None` when the tool is not installed, is unreadable,
    ///   or cannot be confirmed (e.g. the user lacks filesystem
    ///   permission).
    /// * Must not perform network I/O — detection runs at every CLI
    ///   invocation and is on the hot path.
    fn detect(&self) -> Option<DevToolInfo>;

    /// Translate an Agent Assembly [`PolicyDocument`] into the tool's
    /// native managed-settings format (e.g. JSON for Claude Code,
    /// `.codex/config.toml` for Codex).
    ///
    /// ### Contract
    /// * On success, returns the rendered settings document as a UTF-8
    ///   string ready to be written by [`apply_settings`].
    /// * Returns [`AdapterError::SettingsGenerationFailed`] when the
    ///   policy contains constructs the tool's native config cannot
    ///   express.
    /// * Pure: must not touch the filesystem.
    ///
    /// [`PolicyDocument`]: crate::policy::PolicyDocument
    /// [`apply_settings`]: Self::apply_settings
    async fn generate_managed_settings(&self, policy: &crate::policy::PolicyDocument) -> Result<String, AdapterError>;

    /// Write the rendered managed settings into the tool's
    /// configuration surface, replacing any prior managed block.
    ///
    /// ### Contract
    /// * On success, the tool will pick up the new policy on its next
    ///   launch (some tools require a restart; the adapter is expected
    ///   to document that in its own crate-level docs).
    /// * Returns [`AdapterError::SettingsApplyFailed`] on filesystem error.
    /// * Idempotent: applying the same `settings` twice is a no-op.
    async fn apply_settings(&self, settings: &str) -> Result<(), AdapterError>;

    /// Build the [`std::process::Command`] used by the `aa run` launcher
    /// to start the tool with governance wiring (proxy, env vars,
    /// agent identity, optional team identity).
    ///
    /// ### Contract
    /// * Caller passes raw `tool_args` plus the agent and (optional)
    ///   team identity that the gateway issued for this run.
    /// * `proxy_addr`, when set, is the `host:port` of the local MitM
    ///   proxy; the adapter must inject the appropriate
    ///   `HTTPS_PROXY` / `OPENAI_BASE_URL` / similar env var so the
    ///   tool routes traffic through it.
    /// * Returns [`AdapterError::LaunchFailed`] when the tool's binary
    ///   cannot be located or its argument format cannot accommodate
    ///   the wiring.
    /// * Sync (no I/O performed) — the returned `Command` is *built*,
    ///   not spawned. Spawning is the launcher's job.
    fn build_launch_command(
        &self,
        tool_args: &[String],
        agent_id: &str,
        team_id: Option<&str>,
        proxy_addr: Option<&str>,
    ) -> Result<std::process::Command, AdapterError>;

    /// Enumerate the MCP servers the tool is currently configured to
    /// connect to.
    ///
    /// ### Contract
    /// * Returns the parsed list from the tool's native MCP config
    ///   surface (e.g. `~/.claude/mcp_servers.json`).
    /// * Returns an empty `Vec` (not an error) when the tool supports
    ///   MCP but has no servers configured.
    /// * Returns [`AdapterError::McpConfigFailed`] when the config
    ///   exists but is malformed.
    /// * Tools whose `DevToolInfo::supports_mcp == false` should
    ///   instead return an empty `Vec`.
    async fn list_mcp_servers(&self) -> Result<Vec<McpServerInfo>, AdapterError>;

    /// Apply an MCP allow / deny list to the tool's configuration.
    ///
    /// ### Contract
    /// * `allowed` lists MCP server names that are permitted; any
    ///   server not in `allowed` and present in `denied` (or in the
    ///   currently-configured set) must be removed from the tool's
    ///   active config.
    /// * `denied` is an explicit blocklist applied even if a server
    ///   appears in `allowed` — `denied` wins on conflict (matches
    ///   policy-engine evaluation order).
    /// * Returns [`AdapterError::McpConfigFailed`] on filesystem write
    ///   failure.
    /// * Tools without MCP support should return `Ok(())` without
    ///   performing any work.
    async fn apply_mcp_governance(&self, allowed: &[String], denied: &[String]) -> Result<(), AdapterError>;

    /// Highest governance level this adapter can achieve for the tool
    /// it targets.
    ///
    /// ### Contract
    /// * Returns the static, build-time-known cap for this adapter
    ///   (e.g. an SDK-integrated adapter returns `L3Native`; a SaaS
    ///   coding agent's observability-only adapter returns
    ///   `L1Observe`).
    /// * Must agree with `detect()`'s `DevToolInfo::governance_level`
    ///   for any successful detection — gateway uses this to
    ///   short-circuit policy decisions when an action would require
    ///   a level the adapter cannot enforce.
    fn governance_level(&self) -> GovernanceLevel;
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn governance_level_orders_l0_through_l3() {
        assert!(GovernanceLevel::L0Discover < GovernanceLevel::L1Observe);
        assert!(GovernanceLevel::L1Observe < GovernanceLevel::L2Enforce);
        assert!(GovernanceLevel::L2Enforce < GovernanceLevel::L3Native);
        assert!(GovernanceLevel::L0Discover < GovernanceLevel::L3Native);
    }

    #[cfg(all(feature = "serde", feature = "alloc"))]
    #[test]
    fn dev_tool_kind_round_trips_via_serde_json() {
        let cases = [
            DevToolKind::ClaudeCode,
            DevToolKind::Codex,
            DevToolKind::GitHubCopilot,
            DevToolKind::WindsurfCascade,
            DevToolKind::Custom(String::from("MyEditor")),
        ];
        for original in cases {
            let json = serde_json::to_string(&original).expect("serialize");
            let restored: DevToolKind = serde_json::from_str(&json).expect("deserialize");
            assert_eq!(restored, original);
        }
    }

    #[cfg(all(feature = "serde", feature = "std"))]
    #[test]
    fn dev_tool_info_round_trips_via_serde_json() {
        let original = DevToolInfo {
            kind: DevToolKind::ClaudeCode,
            version: Some(String::from("1.2.3")),
            install_path: PathBuf::from("/usr/local/bin/claude"),
            governance_level: GovernanceLevel::L2Enforce,
            supports_mcp: true,
            supports_managed_settings: false,
        };
        let json1 = serde_json::to_string(&original).expect("serialize");
        let restored: DevToolInfo = serde_json::from_str(&json1).expect("deserialize");
        let json2 = serde_json::to_string(&restored).expect("re-serialize");
        assert_eq!(json1, json2);
    }

    // ---- Trait conformance (locks DevToolAdapter's shape) -----------------
    //
    // These helpers are compile-time checks. The fact that they reference
    // `&dyn DevToolAdapter` and `Box<dyn DevToolAdapter>` (which require
    // `Send + Sync` because the trait inherits those bounds) is what
    // exercises the assertions — if any future change makes the trait
    // un-object-safe or drops `Send + Sync`, this module fails to compile.

    #[cfg(feature = "std")]
    fn _assert_object_safe(_: &dyn DevToolAdapter) {}

    #[cfg(feature = "std")]
    fn _assert_send_sync<T: Send + Sync>() {}

    /// Compile-time conformance check for `DevToolAdapter`.
    ///
    /// Locks two invariants every implementor must satisfy:
    /// 1. The trait is **object-safe** — `&dyn DevToolAdapter` and
    ///    `Box<dyn DevToolAdapter>` both compile.
    /// 2. Trait objects are `Send + Sync` — required so adapters can be
    ///    stored in a global registry and called from the gateway's
    ///    Tokio task pool.
    ///
    /// If either invariant breaks (someone adds a non-dyn-compatible
    /// method, removes the `Send + Sync` bound on the trait, etc.) this
    /// test will fail to compile — which is exactly what AAASM-925
    /// requires it to do.
    #[cfg(feature = "std")]
    #[test]
    fn trait_is_object_safe() {
        let _: fn(&dyn DevToolAdapter) = _assert_object_safe;
        _assert_send_sync::<Box<dyn DevToolAdapter>>();
    }
}