Agentstration 0.1.0-alpha.1
Pre-releaseAgentstration 0.1.0-alpha.1
Agentstration 0.1.0-alpha.1 is the first public product prerelease. It is intended for local evaluation and contributor feedback, not production deployment. Public contracts and generated SQLite schemas may change before a stable release.
Highlights
- A self-hosted modular monolith with explicit Management, Work, and Runtime planes.
- Declarative Agents, Model Profiles, Runtime Profiles, deployments, immutable revisions, and workspace-scoped RBAC.
- Durable Work Items, Workplace Tasks and interactions, editable Flows, immutable publications, observable Runs, checkpoints, and human input.
- Schedule Triggers with durable occurrences and a reconstructible Quartz.NET SQLite projection.
- Governed Tool discovery and execution through MCP or AEP, including approval, ordered guards, durable per-attempt audit, and bounded opt-in argument retention.
- Autonomous AEP extensions for Ollama, llama.cpp, and LocalAI with provider-neutral effective capability resolution.
- Offline Pack installation and authoring with namespace isolation, deterministic builds, provenance, resource bindings, and modification-safe uninstall.
- Local accounts, tenant/workspace administration, security audit, external identity links, and principal-scoped UI preferences.
- Deterministic and SQLite defaults that work without a cloud account, remote API key, live LLM, or inference server.
Release artifacts
The release publishes framework-dependent ZIP archives for:
agentstration-server-0.1.0-alpha.1.zip: the authoritative server and operations Console;agentstration-workplace-0.1.0-alpha.1.zip: the standalone end-user Workplace;SHA256SUMS: SHA-256 checksums for both archives;container-image.txt: the Docker Hub image, immutable tag, channel tag, platforms, and pushed manifest digest.
The authoritative server and operations Console are also published as a provenance- and SBOM-enabled multi-platform image for linux/amd64 and linux/arm64:
docker.io/agentstration/agentstration:0.1.0-alpha.1
docker.io/agentstration/agentstration:alpha
The version tag is immutable release identity. The alpha tag is a moving prerelease channel and must not be used where reproducibility matters. No latest tag is published for this prerelease.
.NET 10 is required. Extract the server archive and start it in deterministic mode:
$env:AI__Provider = "Deterministic"
dotnet Agentstration.Web.dllThe first Local-mode start redirects to /bootstrap; no default credentials exist. Start Agentstration.Workplace.Web.dll separately when the standalone Workplace is required.
Or run the server image in deterministic mode:
docker run --rm -p 5100:8080 -e AI__Provider=Deterministic -v agentstration-data:/data agentstration/agentstration:0.1.0-alpha.1The image contains the authoritative server and Console, not the separately hosted Workplace.
Important alpha limitations
- Generated development databases may require deletion and bootstrap after schema changes; no complete upgrade path is promised during this alpha.
- Runtime dispatch and scheduler recovery are local and SQLite-backed, not distributed.
- Flow and Tool execution is at-least-once and does not claim exactly-once external effects.
- Provider servers and models are never installed by Agentstration. Ollama, llama.cpp, and LocalAI integrations connect to existing local services.
- Pack updates, signatures, dependency resolution, and a remote Gallery remain planned.
See the current capabilities, local installation guide, and versioning strategy for details.