New User Walkthrough (10 minutes)¶
This walkthrough is a “sanity check” you can run after installing RexOS. You’ll verify:
- your local model (Ollama) works
- tools are sandboxed to a workspace
- memory persists across runs
- harness workspaces create durable artifacts + git checkpoints
0) Prerequisites¶
rexosis installed and on yourPATH- Ollama is running:
ollama serve - you have at least one chat model available:
If the default model (llama3.2) is not installed, either pull it:
…or edit ~/.rexos/config.toml and set:
1) Initialize RexOS¶
Expected artifacts:
~/.rexos/config.toml~/.rexos/rexos.db
2) Run a one-shot agent session (workspace sandbox)¶
Expected:
hello.txtexists in the workspace and containshi- RexOS prints a
session_idto stderr (save it for the next step)
3) Re-run with the same session id (memory)¶
Replace <SESSION_ID> with the id RexOS printed previously.
Verify the file updated:
4) Create a harness workspace (durable artifacts + git)¶
Expected files in rexos-harness-demo/:
features.jsonrexos-progress.mdinit.shandinit.ps1- a
.git/directory with an initial commit
Run the harness preflight (no prompt):
5) Docs buttons (reproducibility)¶
On the docs site, every page should have:
- Edit this page → opens GitHub at
docs-site/... - View source → opens the raw Markdown file
If these buttons are missing or broken, check the docs workflow and mkdocs.yml (repo_url + edit_uri).