v0.1.0-alpha
Pre-release
Pre-release
·
147 commits
to main
since this release
AgentOS v0.1.0-alpha
This is the first public alpha release of AgentOS. It is meant for local
evaluation, contributor feedback, and validating the runtime direction. It is
not a production-hardened release.
What Works Today
- Rust workspace with focused crates for kernel, bus, memory, trace, vault,
registry, LLM integration, CLI, SDK, plugins, examples, and benchmarks. - CLI-first local workflow for running and inspecting agents:
run -> ps -> logs -> trace -> replay. - Local demo script and smoke check based on real command behavior.
- Workspace tests and a unified repository check script:
bash scripts/check.sh. - React dashboard production build check.
- Security, support, contribution, release, and AI-assisted development docs.
- Cross-platform release workflow for CLI binaries.
Experimental
- Dashboard as a live debugging and inspection surface.
- WASM plugin runtime and plugin templates.
- Docker and Docker Compose packaging.
- LLM provider integrations.
- Python and TypeScript SDK packaging.
- Marketplace commands and plugin distribution ideas.
Known Limitations
- AgentOS is alpha software. APIs and behavior may change before a stable
release. agentOS forkis a placeholder and currently reports that trace forking is
not implemented yet.- Restart and recovery behavior should not be described as production-ready
until stronger tests and public guarantees are in place. - WASM plugins are experimental and should not be treated as a strong security
boundary yet. - Docker artifacts are intentionally not published for this alpha release.
- Install scripts can install this tagged alpha release, but source builds
remain the most reliable path for contributors during early development.
Install
Build from source:
git clone https://github.com/WAHIB-EL-KHADIRI/agentOS
cd agentOS
cargo build --workspaceInstall the tagged alpha release with the install script:
export AGENTOS_VERSION=v0.1.0-alpha
curl -fsSL https://raw.githubusercontent.com/WAHIB-EL-KHADIRI/agentOS/main/install.sh | bashWindows PowerShell:
$env:AGENTOS_VERSION = "v0.1.0-alpha"
iwr -useb https://raw.githubusercontent.com/WAHIB-EL-KHADIRI/agentOS/main/install.ps1 | iex