Trustee
A general-purpose agent that can morph into different specialized agents using WASM lifecycle plugins.
Overview
Trustee is a terminal-first agent framework implemented in Rust that can dynamically adapt its behavior by loading different WASM lifecycle plugins. Unlike specialized agents that are built for specific domains, Trustee can morph into coding agents, research assistants, data analysts, or any other specialized agent type through its plugin architecture.
Features
- Morphable Architecture: Load different lifecycle plugins to change agent behavior
- WASM Plugin System: Secure, sandboxed plugin execution using WebAssembly
- Modular Design: Built on composable crates (ABK, CATS, UMF)
- Terminal-First: Optimized for command-line usage and automation
- Web UI: Browser-based interface with live WebSocket streaming (optional)
- Session Management: Checkpointing and resume capabilities
- Multiple LLM Providers: Support for OpenAI, GitHub Copilot, Anthropic, and more
Installation
From Source
# Clone the repository
# Build the project
# Install to ~/.local/bin
From crates.io (when published)
Quick Start
Terminal UI (TUI)
Build with TUI support and launch with no arguments:
Web UI
Build with web support and launch the API + web server:
# Open http://localhost:3000 in your browser
Custom bind address:
CLI Mode
- Set up environment variables for your LLM provider:
# For OpenAI
# For GitHub Copilot
# For Anthropic
- Run your first task:
Configuration
Trustee uses a TOML configuration file and environment variables. Configuration is loaded from ~/.trustee/ directory.
Configuration Files
Trustee uses two main configuration files:
- Config file (
~/.trustee/config/trustee.toml): Agent settings, execution modes, timeouts, checkpointing, LLM provider settings, and tool configuration - Env file (
~/.trustee/.env): Environment variables and secrets (API keys, tokens, etc.)
Environment Variables
The environment file supports the following variables:
Local Config File Names (Optional)
TRUSTEE_CONFIG_FILE: Custom config file name (default:trustee.toml)TRUSTEE_ENV_FILE: Custom env file name (default:.env)
LLM Provider Configuration
OPENAI_API_KEY: OpenAI API keyOPENAI_DEFAULT_MODEL: Default OpenAI model (e.g.,gpt-4o)OPENAI_BASE_URL: Custom OpenAI endpoint URLGITHUB_TOKEN: GitHub token for CopilotGITHUB_MODEL: Model for GitHub Copilot (e.g.,openai/gpt-4o-minioranthropic/claude-sonnet-4)GITHUB_BASE_URL: Custom GitHub Copilot endpoint URLANTHROPIC_AUTH_TOKEN: Anthropic API keyANTHROPIC_MODEL: Default Anthropic model (e.g.,claude-3-5-sonnet-20241022)ANTHROPIC_BASE_URL: Custom Anthropic endpoint URLLLM_PROVIDER: LLM provider to use (default:tanbal)
Remote Encrypted Configuration (getmyconfig)
Trustee supports loading configuration from encrypted remote storage via the getmyconfig library. This is useful for secure, centralized configuration management.
GETMYCONFIG_ENDPOINT: S3-compatible storage endpointGETMYCONFIG_ACCESS_KEY: Storage access keyGETMYCONFIG_SECRET_KEY: Storage secret keyGETMYCONFIG_BUCKET: Storage bucket nameGETMYCONFIG_ENCRYPTION_KEY: Encryption key for decrypting config filesGETMYCONFIG_REGION: Storage region (optional)GETMYCONFIG_CONFIG_FILE: Remote config file name (default:trustee.toml.enc)GETMYCONFIG_ENV_FILE: Remote env file name (default:env.enc)
Example ~/.trustee/.env for remote config:
# Remote storage configuration
GETMYCONFIG_ENDPOINT=https://your-storage.example.com
GETMYCONFIG_ACCESS_KEY=your-access-key
GETMYCONFIG_SECRET_KEY=your-secret-key
GETMYCONFIG_BUCKET=trustee-configs
GETMYCONFIG_ENCRYPTION_KEY=your-encryption-key
GETMYCONFIG_REGION=us-east-1
# Custom remote file names (optional)
GETMYCONFIG_CONFIG_FILE=my-custom-config.toml.enc
GETMYCONFIG_ENV_FILE=my-custom-secretsenv.enc
# Getmyconfig connection variables are always kept from local .env
# even when using remote config
Note: When using remote configuration, Trustee will:
- Load local
~/.trustee/.envfirst (contains getmyconfig connection params) - Attempt to fetch and decrypt remote config files
- Merge remote secrets with local secrets (remote takes priority)
- Fall back to local config if remote is unavailable
Example ~/.trustee/.env for local config:
# Local configuration file names (optional)
TRUSTEE_CONFIG_FILE=custom-trustee.toml
TRUSTEE_ENV_FILE=custom-secrets.env
# LLM provider configuration
OPENAI_API_KEY=sk-your-key-here
OPENAI_DEFAULT_MODEL=gpt-4o
MCP Server Authentication
Trustee connects to MCP (Model Context Protocol) servers for remote tool execution. Each MCP server can use a different authentication strategy, configured in trustee.toml.
Quick Reference
| Auth Type | Config type |
Best For | Token Source |
|---|---|---|---|
| Static Token | static |
Simple API keys, dev/testing | Hardcoded or ${ENV_VAR} |
| Service Account | service-account |
Headless servers, CI/CD | Kanidm RFC 8693 token exchange |
| Interactive (CLI) | interactive |
CLI/TUI personal use | trustee mcp auth browser PKCE flow |
| Web Session | web-session |
Trustee-web users (reuse login) | Auto-injected from trustee-web session |
| Web Interactive | web-interactive |
Trustee-web per-server login | Browser login via web UI |
Configuration Overview
MCP auth is defined in two parts under [mcp] in trustee.toml:
- Credentials (
[mcp.credentials.<name>]) — reusable auth definitions - Servers (
[[mcp.servers]]) — reference a credential by name
[]
= true
= 30
# Define credentials (reusable across servers)
[]
= "..." # See below
# ... type-specific fields ...
# Servers reference credentials by name
[[]]
= "pdt"
= "https://pdt-aether.tanbal.ir"
= "http"
= true
= "my_auth" # References [mcp.credentials.my_auth]
Auth Type 1: Static Token
Simplest method — a plain token string. Supports ${ENV_VAR} substitution.
[]
= "static"
= "${PDT_TOKEN}"
Auth Type 2: Service Account
For headless server-to-server authentication. Uses a long-lived Kanidm service token and automatically exchanges it for short-lived access tokens via RFC 8693 token exchange. Tokens are refreshed automatically.
[]
= "service-account"
= "${KANIDM_SERVICE_TOKEN}" # Long-lived, never expires
= "https://idm.tanbal.ir/oauth2/openid/pdt-api"
= "pdt-api"
= "pdt-api"
= "openid profile email groups"
Auth Type 3: Interactive (CLI Browser Login)
PKCE-based OAuth2 browser login initiated from the CLI. Tokens are stored on disk and automatically refreshed.
Config:
[]
= "interactive"
= "https://idm.tanbal.ir/oauth2/openid/pdt-api"
= "pdt-api"
= "openid profile email groups"
= 8765 # Local callback port (default: 8765)
Login flow:
# Authenticate (opens browser for OAuth login)
# Check status
# Remove credentials
Tokens are stored at ~/.trustee/ (via PEP's FileTokenStore). The token provider reads and refreshes them automatically at runtime.
Auth Type 4: Web Session
For trustee-web deployments — reuses the logged-in user's OIDC session token. Trustee-web automatically pushes the current access token into FileTokenStore under the reserved name __web_session before each agent command. No separate login needed for MCP servers.
[]
= "web-session"
# Optional: RFC 8693 token exchange if the MCP server expects
# a different audience than the trustee-web session token
[]
= "https://idm.tanbal.ir/oauth2/openid/pdt-api"
= "pdt-api"
= "pdt-api"
How it works:
- User logs into trustee-web via OIDC
- Before each agent command, trustee-web writes the session token to
__web_session - The
InteractiveTokenProviderreads it on every tool call - If optional
exchangeis configured, the token is exchanged for the target audience
Auth Type 5: Web Interactive (Per-Server Browser Login from Web UI)
Like interactive, but the OAuth login is triggered from the trustee-web UI instead of the CLI. Uses the /auth/mcp/login endpoint with PKCE.
[]
= "web-interactive"
= "https://idm.tanbal.ir/oauth2/openid/pdt-api"
= "pdt-api"
= "openid profile email groups"
Login flow (via trustee-web):
- User clicks "Connect" next to the MCP server in the web UI
- Browser redirects to the OIDC provider
- After login, tokens are stored via
FileTokenStore - Tokens auto-refresh transparently
Web API endpoints:
| Method | Path | Description |
|---|---|---|
| GET | /auth/mcp/login?cred=<name> |
Initiate OAuth PKCE login for a credential |
| GET | /auth/mcp/callback |
OIDC callback (handles code exchange + token storage) |
| GET | /auth/mcp/status |
List all MCP credentials and their connection status |
| POST | /auth/mcp/logout?cred=<name> |
Remove stored tokens for a credential |
MCP CLI Commands
# List all configured MCP servers and auth status
# Register a new MCP server (interactive prompts)
||
# Authenticate via browser login (interactive credentials only)
# Remove stored OAuth credentials
# Diagnose connection and auth for a specific server
Environment Variable Substitution
All credential string fields support ${VAR_NAME} syntax. The variable is resolved at startup from the environment or ~/.trustee/.env:
[]
= "service-account"
= "${KANIDM_SERVICE_TOKEN}" # Resolved from env
= "https://idm.tanbal.ir/oauth2/openid/pdt-api"
= "pdt-api"
= "pdt-api"
Example: Full Configuration
[]
= true
= 30
# --- Credentials ---
# Service account for headless auth (CI/CD, servers)
[]
= "service-account"
= "${KANIDM_SERVICE_TOKEN}"
= "https://idm.tanbal.ir/oauth2/openid/pdt-api"
= "pdt-api"
= "pdt-api"
= "openid profile email groups"
# Interactive login for CLI/TUI personal use
[]
= "interactive"
= "https://idm.tanbal.ir/oauth2/openid/pdt-api"
= "pdt-api"
= "openid profile email groups"
= 8765
# Web session reuse for trustee-web
[]
= "web-session"
# --- Servers ---
[[]]
= "pdt"
= "https://pdt-aether.tanbal.ir"
= "http"
= true
= "kanidm_svc"
[[]]
= "nghr"
= "https://nghr-aether.tanbal.ir"
= "http"
= true
= "kanidm_svc"
[[]]
= "trp"
= "https://trp-aether.tanbal.ir"
= "http"
= true
= "kanidm_svc"
Build Requirements
MCP authentication requires the registry-mcp feature, and token-based auth types (interactive, web-session, web-interactive, service-account) additionally require registry-mcp-token:
# MCP without token providers (static auth only)
# Full MCP auth support (all credential types)
# Typical trustee build with TUI + web + full MCP
Token Storage
Tokens are stored by PEP (FileTokenStore) at:
~/.trustee/ # or per-user home_dir
tokens/
<credential_name>.json # StoredToken (access + refresh + expiry)
The InteractiveTokenProvider automatically:
- Loads tokens before each tool call
- Checks expiry and refreshes if a refresh token is available
- Returns an error if the token is expired and cannot be refreshed
Lifecycle Plugins
Trustee's morphing capability comes from WASM lifecycle plugins that define different agent types:
- Coding Agent: Software development and engineering tasks
- Research Agent: Information gathering and analysis
- Analysis Agent: Data processing and insights
- Custom Agents: Create your own specialized agent types
Creating Lifecycle Plugins
Lifecycle plugins are written in languages that compile to WebAssembly and implement the lifecycle interface defined in the WIT (WebAssembly Interface Types) specification.
Architecture
Trustee is built on a modular workspace architecture:
trustee/
├── Cargo.toml # Workspace root + binary
├── src/main.rs # Binary — dispatches: TUI / web / CLI / upgrade
├── crates/
│ ├── trustee-core/ # Shared types, Session state, workflow logic, config parsing
│ ├── trustee-tui/ # Terminal UI (ratatui + crossterm), depends on trustee-core
│ ├── trustee-api/ # REST + WebSocket server (axum), depends on trustee-core + trustee-web
│ ├── trustee-web/ # Static web frontend (rust-embed)
│ └── trustee-upgrade/ # Self-upgrade tool
├── config/
│ └── trustee_default.toml
└── CHANGELOG.md
Feature flags:
| Flag | Description |
|---|---|
| (none) | Bare CLI — no TUI, no web |
tui |
Terminal UI mode (trustee with no args launches TUI) |
web |
Web/API mode (trustee web starts HTTP + WebSocket server) |
wasm |
WASM lifecycle plugin support |
Build with multiple features: cargo build --features tui,web
API Endpoints (web mode)
| Method | Path | Description |
|---|---|---|
| GET | /api/v1/health |
Health check |
| GET | /api/v1/session |
Full session state snapshot |
| POST | /api/v1/session/command |
Submit a command for execution |
| POST | /api/v1/session/cancel |
Cancel running workflow |
| POST | /api/v1/session/handoff |
Trigger session handoff |
| WS | /api/v1/session/stream |
Live message streaming |
| GET | / |
Web UI (embedded HTML/JS) |
All network dependencies use rustls (no openssl/native-tls) for static Pi/ARM builds.
External Dependencies
- ABK (Agent Builder Kit): Core agent building blocks with feature-gated modules
- UMF (Universal Message Format): ChatML message formatting and streaming
- Lifecycle Plugins: WASM modules defining agent behavior
Development
Prerequisites
- Rust 1.70 or later
- Cargo package manager
Building
# Debug build
# Release build
# Run tests
Project Structure
See the Architecture section above for the full workspace layout.
Usage Examples
Basic Task Execution
# Run with confirmation mode (default)
# Run in YOLO mode (no confirmations)
# Use a specific mode
Session Management
# List previous sessions
# Resume a specific session
# Resume the latest session
Configuration Management
# Show current configuration
# Edit configuration file
# Validate configuration
Contributing
We welcome contributions! Please see our contributing guidelines for details.
Development Setup
- Fork the repository
- Clone your fork:
git clone https://github.com/yourusername/trustee.git - Create a feature branch:
git checkout -b feature/your-feature - Make your changes and add tests
- Run the test suite:
cargo test - Submit a pull request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
Trustee builds upon several key technologies and projects:
- ABK: Agent Builder Kit for modular agent components
- CATS: Code Agent Tool System for LLM tool integration
- UMF: Universal Message Format for LLM communication
- Wasmtime: WebAssembly runtime for plugin execution
- Tokio: Asynchronous runtime for Rust
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Documentation: Wiki
Trustee - Morph into the agent you need, when you need it.