From answer to deliverable.
The useful end state is not “here is how you could make the file.” It is a signed URL to the file the agent actually produced.
Sheafwise adds an execution harness above an OpenAI-compatible model API: files, research, an isolated Linux workspace, subagents, durable state, and real downloadable deliverables.
Change the endpoint. Keep the client. The harness stays on your server.
01 / THE IDEA
A capable model already knows how to reason about a task. What it usually lacks is a place to inspect inputs, run commands, fetch trusted public information, coordinate parallel work, and hand back the thing you actually asked for.
Sheafwise keeps the familiar API surface and adds that missing execution layer behind it. Existing clients stay small; the heavy machinery lives on a host you control.
The useful end state is not “here is how you could make the file.” It is a signed URL to the file the agent actually produced.
Run code and tools inside a resource-limited Docker environment rather than on the gateway host.
Search and controlled public-URL fetching live across an explicit network boundary, with redirect and address validation.
Keep credentials and routing server-side while reusing the same files, state, workspace, and Artifact layer.
02 / THE SYSTEM
Sheafwise is infrastructure, not another mandatory chat client. Use it from a browser, an SDK, a scheduled job, or a product of your own.
Upload user inputs through an OpenAI-style file surface and mount them into work safely.
Keep durable provider affinity for stored Responses instead of translating every request into a different protocol.
Split independent work while retaining one API-facing execution harness.
Publish real outputs behind signed download URLs rather than injecting fake links into prose.
03 / SECURITY MODEL
The current pre-release targets one trusted operator or a small trusted environment on a dedicated host. Docker daemon access is intentionally treated as root-equivalent trust.
Read the complete SECURITY.md ↗04 / DEPLOY
v0.9.1 targets a fresh Debian 12 or Ubuntu 22.04/24.04 host. The managed installer keeps the service on loopback by default; publish it through reviewed HTTPS configuration.
VERSION=v0.9.1
curl -fLO "https://github.com/gabriel-meow/sheafwise/releases/download/$VERSION/sheafwise-$VERSION.tar.gz"
curl -fLO "https://github.com/gabriel-meow/sheafwise/releases/download/$VERSION/sheafwise-$VERSION.tar.gz.sha256"
sha256sum -c "sheafwise-$VERSION.tar.gz.sha256"
tar -xzf "sheafwise-$VERSION.tar.gz"
cd "sheafwise-$VERSION"
sudo bash scripts/install.sh
No cross-version migration or rollback promise yet. Treat upgrades as deliberate operations.
Encrypted full-dataset backup and exact-version restore are Beta. Test restoration on a disposable matching host.
The host and Docker boundary are trusted. This is not a hostile multi-tenant isolation claim.