agent-workspace-contract 0.2.0

Transport-neutral contracts for Agent Infra workspace APIs
Documentation
//! Provider-neutral workspace contracts and default capability behavior.

use std::fmt::{self, Debug};
use std::time::{SystemTime, UNIX_EPOCH};

use std::path::PathBuf;
use std::sync::Arc;

use anyhow::Result;
use async_trait::async_trait;
use serde::{Deserialize, Serialize};

mod advanced;
mod change;
mod config;
mod control;
mod environment;
mod http;
mod io;
mod ports;
mod resource;
mod workspace;

pub use advanced::*;
pub use change::*;
pub use config::*;
pub use control::*;
pub use environment::*;
pub use http::*;
pub use io::*;
pub use ports::*;
pub use resource::*;
pub use workspace::*;