Odyssey
| Entity Passport | |
| Registry ID | gh-tool--liquidos-ai--odyssey |
| License | Apache-2.0 |
| Provider | github |
Cite this model
Academic & Research Attribution
@misc{gh_tool__liquidos_ai__odyssey,
author = {Liquidos Ai},
title = {Odyssey Model},
year = {2026},
howpublished = {\url{https://github.com/liquidos-ai/odyssey}},
note = {Accessed via Free2AITools Knowledge Fortress}
} đŦTechnical Deep Dive
Full Specifications [+]âž
Quick Commands
git clone https://github.com/liquidos-ai/odyssey âī¸ Nexus Index V2.0
đŦ Index Insight
FNI V2.0 for Odyssey: Semantic (S:50), Authority (A:0), Popularity (P:49), Recency (R:97), Quality (Q:50).
Verification Authority
đ What's Next?
Technical Deep Dive
Odyssey
Bundle-first AI agents in Rust.
Build agents, package them as portable bundles, and run them through one runtime.
Like this project? Star us on GitHub
Status: Odyssey is under active development and should still be treated as pre-production software.
Odyssey is an open-source, bundle-first agent runtime written in Rust on top of AutoAgents. It lets you define an agent once, package it as a portable bundle, and run it through the same runtime contract across local CLI workflows, the TUI, HTTP server deployments, and embedded Rust applications.
Odyssey supports two practical authoring paths today:
- Prompt agents for fast local scaffolding and straightforward bundle workflows
- Rust-authored custom agents compiled to WASM components and hosted by the Odyssey runtime
For custom agents, Odyssey runs your Rust agent logic as a Wasmtime-hosted WebAssembly component while keeping model credentials, tool execution, approvals, session state, and sandbox policy on the host side. The WASM module owns behavior; Odyssey owns privileged effects.
Why Odyssey
- Portable bundles: ship the agent spec, skills, resources, README, and runtime policy as one artifact.
- Custom Rust WASM agents: build agent logic with
odyssey-rs-agent-sdkand run it through the same runtime as built-in execution paths. - Runtime-owned security boundary: model access, tool brokering, approvals, and sandbox policy stay outside the agent component.
- One engine, many surfaces: CLI, TUI, HTTP, and embedded Rust all sit on top of the same runtime primitives.
- Operational workflows included: local install, inspect, export/import, and hub push/pull are built in.
What Ships Today
- Prompt bundles with ReAct execution
- Rust-authored
kind: wasmagents hosted through Wasmtime - Stable Rust WASM agent SDK via
odyssey-rs-agent-sdk - Automatic
cargo component buildintegration during bundle builds for local WASM agents - Built-in tools:
Read,Write,Edit,LS,Glob,Grep,Bash, andSkill - Bundle manifests, validation, install, inspect, export, import, publish, and pull
- Session persistence, approvals, model resolution, and event streaming
- CLI, HTTP server, and Ratatui-based TUI
- Embeddable runtime via
odyssey-rs-runtime::OdysseyRuntime
At A Glance
| Surface | Purpose |
|---|---|
odyssey-rs run |
Run one prompt against a bundle |
odyssey-rs tui |
Local operator workflow with approvals, sessions, and bundle switching |
odyssey-rs serve |
Shared runtime over HTTP |
OdysseyRuntime |
Embed Odyssey directly into a Rust application |
Quickstart
Install the CLI
Bootstrap install:
curl -fsSL https://raw.githubusercontent.com/liquidos-ai/odyssey/main/install.sh | bash
Cargo install:
cargo install odyssey-rs
From a source checkout, use:
cargo run -p odyssey-rs --
Create a starter bundle
odyssey-rs init ./hello-world
init currently creates a prompt-based starter bundle so you can get to a runnable project
immediately. It scaffolds:
odyssey.bundle.yamlagents/<bundle-id>/agent.yamlREADME.mdskills/resources/
Build and install locally
odyssey-rs build ./hello-world
Build to a custom output directory instead:
odyssey-rs build ./hello-world --output ./dist
Run the bundle
export OPENAI_API_KEY="your-key"
odyssey-rs run hello-world@latest --prompt "What can you do?"
Inspect or browse installed bundles
odyssey-rs inspect hello-world@latest
odyssey-rs bundles
Launch the TUI
export OPENAI_API_KEY="your-key"
odyssey-rs tui --bundle hello-world@latest
Start a local runtime server
odyssey-rs serve --bind 127.0.0.1:8472
Target that runtime remotely:
odyssey-rs --remote http://127.0.0.1:8472 bundles
odyssey-rs --remote http://127.0.0.1:8472 inspect hello-world@latest
odyssey-rs --remote http://127.0.0.1:8472 run hello-world@latest --prompt "Summarize this bundle"
odyssey-rs --remote http://127.0.0.1:8472 sessions
Custom Rust WASM Agents
Odyssey already supports custom Rust-authored agents compiled as WebAssembly components.
The current model is:
- your agent logic is compiled into
module.wasm - Odyssey instantiates that component in Wasmtime
- Odyssey provides host bindings for LLM calls, tool calls, and emitted events
- Odyssey still owns credentials, tool execution, session state, approvals, and sandbox policy
That gives you a portable custom-agent artifact without handing the component direct access to host credentials or direct host tool handles.
Recommended starting points
bundles/hello-world: minimal prompt bundlebundles/odyssey-agent: Rust-authored WASM workspace assistantbundles/code-act: Rust-authored WASM CodeAct example
Authoring layout
Typical WASM bundle layout:
/
odyssey.bundle.yaml
README.md
agents/
/
agent.yaml
Cargo.toml
src/
lib.rs
module.wasm
skills/
resources/
Minimal Rust agent
use autoagents_derive::{AgentHooks, agent};
#[agent(
name = "my-agent",
description = "Custom Odyssey agent",
tools = [],
)]
#[derive(Default, Clone, AgentHooks)]
pub struct MyAgent;
fn app() -> odyssey_rs_agent_sdk::OdysseyAgentApp {
odyssey_rs_agent_sdk::OdysseyAgentApp::react(MyAgent::default())
.memory_window(20)
.max_turns(12)
}
odyssey_rs_agent_sdk::export_odyssey_agent!("my-agent", app());
If you need agent-specific Rust tools, add them in the WASM crate with .tool(...). Built-in
Odyssey tools declared in agent.yaml are injected automatically by the host runtime.
Minimal bundle descriptors
odyssey.bundle.yaml:
apiVersion: odyssey.ai/bundle.v1
kind: AgentBundle
metadata:
name: my-agent
version: 0.1.0
spec:
abiVersion: v3
agents:
- id: my-agent
spec: agents/my-agent/agent.yaml
module: agents/my-agent/module.wasm
default: true
agents/my-agent/agent.yaml:
apiVersion: odyssey.ai/v1
kind: Agent
metadata:
name: my-agent
version: 0.1.0
spec:
kind: wasm
abiVersion: v3
program:
runner_class: wasm-component
entrypoint: agents/my-agent/module.wasm
execution:
executor: react/v1
memory: session-window/v1
Build flow
Install the component tool:
cargo install cargo-component
Then build the bundle normally:
odyssey-rs build ./bundles/odyssey-agent
For local WASM agents, Odyssey detects Cargo.toml next to the agent spec, invokes
cargo component build --release, stages the produced .wasm artifact into the declared
program.entrypoint, validates that the entrypoint is a real WebAssembly component, and then
packages the bundle.
That means a normal bundle build is also the developer loop for Rust-authored custom agents.
Sandboxing And Security Model
Odyssey treats the runtime as the trusted boundary, not the agent component.
What the runtime owns
- model provider construction and credentials
- host tool execution
- approval gating
- session persistence
- sandbox preparation and policy enforcement
- CLI/TUI/HTTP event streaming
What the agent owns
- prompts and behavior
- executor loop decisions inside prompt or WASM agent logic
- optional custom Rust tools compiled into the WASM component
Sandbox modes
| Mode | Behavior |
|---|---|
read_only |
Confined runtime with read-only app workspace and explicit writable runtime state |
workspace_write |
Confined runtime with writable workspace/state areas |
danger_full_access |
Host execution without confined sandbox restrictions |
Important notes:
- Confined
read_onlyandworkspace_writeexecution is currently Linux-only and usesbubblewrap. - On macOS and Windows, use
--dangerous-sandbox-modefor local development or run Odyssey inside a Linux container if you need confined execution. - Tool permissions are controlled through
tools.require,tools.allow,tools.ask, andtools.deny. - Filesystem and process policy are controlled through manifest sandbox settings such as
mounts.read,mounts.write,filesystem.exec,system_tools_mode, andsystem_tools. sandbox.envis an allowlist-style passthrough for sandboxed commands, not a general process environment dump.
For the full policy reference, see:
Bundle Lifecycle
Build and install locally:
odyssey-rs build ./bundles/hello-world
Export a portable archive:
odyssey-rs export local/[email protected] --output ./dist
Import a portable archive:
odyssey-rs import ./dist/hello-world-0.1.0.odyssey
Push and pull through a hub are also supported:
odyssey-rs push ./bundles/odyssey-agent --to acme/[email protected]
odyssey-rs pull acme/[email protected]
Current Limits
odyssey-rs initscaffolds a prompt agent today, not a WASM starter crate.- Restricted sandboxes are Linux-only in the current release.
- Rust is the supported path for custom WASM agent authoring today.
- One selected agent is executed per run, even though a bundle may package many agents.
- WASM execution is runtime-owned and in-process; hardening around stronger execution limits and cancellation is still evolving.
Repository Layout
crates/odyssey-rs: CLI entrypoint and facade crate, includingrun,serve, andtuicrates/odyssey-rs-agent-sdk: stable Rust SDK for Odyssey WASM agentscrates/odyssey-rs-agent-abi: WIT and ABI types for Odyssey agent host bindingscrates/odyssey-rs-manifest: bundle manifest and agent spec parsing/validationcrates/odyssey-rs-bundle: build, install, inspect, export, import, publish, and pullcrates/odyssey-rs-runtime: sessions, execution, prompt assembly, WASM hosting, tools, and sandbox integrationcrates/odyssey-rs-tools: built-in tools and adaptorscrates/odyssey-rs-sandbox: sandbox runtime and providerscrates/odyssey-rs-server: Axum-based HTTP APIcrates/odyssey-rs-tui: Ratatui-based terminal UI used byodyssey-rs tuibundles/hello-world: minimal prompt bundlebundles/odyssey-agent: WASM workspace assistant examplebundles/code-act: WASM CodeAct exampleexamples/hello-world: Rust embedding example
Development
Prerequisites
- Rust toolchain
cargo-componentif you are building Rust-authored WASM agentsrgtokeicargo-tarpaulinif you want local coverage reports- Docker Desktop or another recent Docker engine if you need Linux sandbox workflows on macOS
bubblewrap(bwrap) on Linux for restricted local sandbox execution
Common Commands
Format:
cargo fmt --all
Clippy:
cargo clippy --workspace --all-targets -- -D warnings
Workspace tests:
cargo test --all-features
Coverage:
cargo tarpaulin --engine llvm --skip-clean --workspace --all-features --timeout 120 --out Html
Example WASM component build:
cargo component build \
--manifest-path bundles/odyssey-agent/agents/odyssey-agent/Cargo.toml \
--release
Documentation
Contributing
Contributions are welcome. See CONTRIBUTING.md for development workflow, quality expectations, and pull request guidance.
Community
- GitHub Issues: bug reports and feature requests
- Discussions: community Q&A and design discussion
- Discord: discord.gg/zfAF9MkEtK
License
Odyssey is licensed under Apache 2.0. See APACHE_LICENSE.
â ī¸ Incomplete Data
Some information about this model is not available. Use with Caution - Verify details from the original source before relying on this data.
View Original Source âđ Limitations & Considerations
- âĸ Benchmark scores may vary based on evaluation methodology and hardware configuration.
- âĸ VRAM requirements are estimates; actual usage depends on quantization and batch size.
- âĸ FNI scores are relative rankings and may change as new models are added.
- â License Unknown: Verify licensing terms before commercial use.
Social Proof
AI Summary: Based on GitHub metadata. Not a recommendation.
đĄī¸ Model Transparency Report
Technical metadata sourced from upstream repositories.
đ Identity & Source
- id
- gh-tool--liquidos-ai--odyssey
- slug
- liquidos-ai--odyssey
- source
- github
- author
- Liquidos Ai
- license
- Apache-2.0
- tags
- agentic-ai, agentic, agents, ai, rust, agent-deployment, agent-runtime, ai-agent-sandbox, security
âī¸ Technical Specs
- architecture
- null
- params billions
- null
- context length
- null
- pipeline tag
- other
đ Engagement & Metrics
- downloads
- 0
- stars
- 36
- forks
- 0
Data indexed from public sources. Updated daily.