Workspace
Agentra Workspace How-To
From your workspace root (<agentra-workspace>):
1. Install all sisters locally
From your workspace root (<agentra-workspace>):
./install_all.shDry run only:
./install_all.sh --test-mode2. Verify detection and MCP wiring
cargo run --bin agentra -- status
cargo run --bin agentra -- status --session
cargo run --bin agentra -- doctorAuto-repair MCP wiring:
cargo run --bin agentra -- doctor --fixExpected tool states are OK, DISABLED, or MISSING with hints.
3. Toggle sisters and full control
Disable individual sisters:
cargo run --bin agentra -- toggle codebase off
cargo run --bin agentra -- toggle memory off
cargo run --bin agentra -- toggle vision offRe-enable:
cargo run --bin agentra -- toggle codebase on
cargo run --bin agentra -- toggle memory on
cargo run --bin agentra -- toggle vision onRelease/re-enable full control:
cargo run --bin agentra -- control off
cargo run --bin agentra -- control onSettings persist in ./agentra-config.json at workspace root.
4. Start the dashboard
cargo run --bin agentra -- uiControls:
rrefreshhhintsqquit
5. Operations backup and restore
Create snapshot:
cargo run --bin agentra -- backup run --workspace "$PWD"List snapshots:
cargo run --bin agentra -- backup listVerify latest snapshot:
cargo run --bin agentra -- backup verifyRestore examples:
cargo run --bin agentra -- backup restore <snapshot-name> --memory
cargo run --bin agentra -- backup restore <snapshot-name> --mcp
cargo run --bin agentra -- backup restore <snapshot-name> --artifactsRetention:
cargo run --bin agentra -- backup prune --keep 20 --dry-run
cargo run --bin agentra -- backup prune --keep 206. Server runtime (auth + artifact sync)
Hosted/cloud runtimes cannot directly read files on your laptop. Sync artifacts to server-accessible paths and configure auth first.
Required environment:
export AGENTRA_RUNTIME_MODE=server
export AGENTIC_TOKEN="$(openssl rand -hex 32)"
export AGENTRA_ARTIFACT_DIRS="/srv/agentra:/data/brains"
# optional token file:
# export AGENTIC_TOKEN_FILE="/etc/agentra/token"Sync artifacts:
./sync_artifacts.sh --target=<server-path-or-rsync-target>Run strict preflight:
cargo run --bin agentra -- server preflight --strictStart MCP runtimes on the server host:
agentic-memory-mcp serve
agentic-vision-mcp serve
acb-mcp serveClient-side validation (any MCP client):
which agentic-memory-mcp
which agentic-vision-mcp
which acb-mcpProtocol parity:
- Desktop and server use the same MCP contract.
- Server mode only adds explicit auth and artifact-sync requirements.
Troubleshooting Matrix
| Symptom | Likely cause | Check | Fix |
|---|---|---|---|
Sister shows MISSING in status | Binary not installed or not in PATH | which acb-mcp, which agentic-memory-mcp, which agentic-vision-mcp | Reinstall sister, reopen shell, rerun agentra doctor --fix |
| MCP client does not show sister tools | Client config not reloaded | Inspect MCP config and process state | Restart MCP client after install/repair |
| Server preflight fails token check | Missing AGENTIC_TOKEN or token file | echo $AGENTIC_TOKEN, inspect token file path | Set token env or AGENTIC_TOKEN_FILE, rerun preflight |
| Server preflight fails artifact check | Artifacts not synced to server dirs | Inspect AGENTRA_ARTIFACT_DIRS and target directory contents | Run ./sync_artifacts.sh --target=..., rerun preflight |
| Takeover does not activate | Sisters disabled or control off | agentra status, check toggle state | agentra toggle <sister> on, agentra control on, then agentra doctor |
| Backup verify fails | Snapshot corruption or partial copy | agentra backup verify output | Restore previous valid snapshot, rerun backup |
| Doc command mismatch suspected | Old docs cache | Compare against --help output of current binaries | Use the command surface pages and regenerate docs sync |
7. OpenClaw TUI command namespace
Primary runtime control namespace is agentra:
/agentra <status|where|on|off|resync|disable|enable>
/agentra-status
/agentra-whereLegacy aliases remain valid:
/sisters ...
/sisters-status
/sisters-where8. Run local AI smoke test
./local_ai_test.shRequirements:
ollamainPATH- local model
llama3
9. Build and package
cargo build --release -p agentra-cli
cargo package -p agentra-cli