### Install and Serve Millrace Web Source: https://github.com/tim-osterhus/millrace/blob/main/README.md Installs the millrace-web package and starts the web server for observing the workflow. Ensure you have a workspace directory configured. ```bash pip install millrace-web millrace-web serve --workspace /path/to/workspace --view flow ``` -------------------------------- ### Install and Initialize Millrace Source: https://github.com/tim-osterhus/millrace/blob/main/README.md Install the millrace-ai package and initialize a new workspace. Ensure you use a compatible Python version (3.11+). ```bash pip install millrace-ai ``` ```bash millrace init --workspace /path/to/workspace ``` -------------------------------- ### Manage Optional Skills Source: https://github.com/tim-osterhus/millrace/blob/main/README.md Manage optional skills available for installation or use. Commands include `ls`, `search`, and `install`. ```bash millrace skills ls/search/install --workspace ``` -------------------------------- ### Install and Serve Millrace Web Dashboard Source: https://github.com/tim-osterhus/millrace/blob/main/docs/runtime/README.md Install the `millrace-web` package using pip. Serve the dashboard for a single workspace or multiple workspaces, with options for detail or flow views. ```bash pip install millrace-web ``` ```bash millrace-web serve --workspace /path/to/workspace --view detail ``` ```bash millrace-web serve --workspace /path/a --workspace /path/b --view flow ``` -------------------------------- ### Install and Serve Millrace Web Source: https://github.com/tim-osterhus/millrace/blob/main/packages/millrace-web/README.md Install the millrace-web package and serve a workspace. Multiple workspaces can be served simultaneously. The server defaults to binding to 127.0.0.1:8765. ```bash pip install millrace-web millrace-web serve --workspace /path/to/workspace millrace-web serve --workspace /path/a --workspace /path/b ``` -------------------------------- ### Installed Environment Command Form Source: https://github.com/tim-osterhus/millrace/blob/main/docs/skills/millrace-ops-agent-manual/references/command-baseline.md Use this CLI form for running Millrace commands in installed environments. ```bash millrace ``` -------------------------------- ### Serve Millrace Workspace Source: https://github.com/tim-osterhus/millrace/blob/main/packages/millrace-web/docs/README.md Starts the millrace-web server to observe a specified workspace. Configure host, port, view, and polling interval as needed. ```bash millrace-web serve --workspace /path/to/workspace ``` -------------------------------- ### Run the Daemon Source: https://github.com/tim-osterhus/millrace/blob/main/README.md Start the Millrace daemon for the specified workspace. ```bash millrace run daemon --workspace ``` -------------------------------- ### Initialize and Inspect Workspace Source: https://github.com/tim-osterhus/millrace/blob/main/README.md Set up a workspace, then compile and inspect its contents. Ensure the WORKSPACE environment variable is set to the absolute path of your desired workspace. ```bash export WORKSPACE=/absolute/path/to/your/workspace millrace init --workspace "$WORKSPACE" millrace compile validate --workspace "$WORKSPACE" millrace compile show --workspace "$WORKSPACE" millrace compile graph --workspace "$WORKSPACE" ``` -------------------------------- ### Install and Refresh Millrace Skills Source: https://github.com/tim-osterhus/millrace/blob/main/docs/skills/millrace-ops-agent-manual/references/command-baseline.md Commands to install a skill or refresh the remote skill index. ```bash millrace skills install --workspace millrace skills refresh-remote-index --workspace ``` -------------------------------- ### Serve Millrace Web Dashboard (Detail View) Source: https://github.com/tim-osterhus/millrace/blob/main/docs/skills/millrace-ops-agent-manual/references/monitoring-and-intervention.md Use this command to serve the millrace-web dashboard in detail view. Replace `` with your actual workspace path. ```bash millrace-web serve --workspace --view detail ``` -------------------------------- ### Initialize Managed Workspace Assets Source: https://github.com/tim-osterhus/millrace/blob/main/README.md Command to initialize the necessary assets for a managed workspace. ```bash millrace init --workspace ``` -------------------------------- ### Install a Remote Skill Source: https://github.com/tim-osterhus/millrace/blob/main/src/millrace_ai/assets/entrypoints/learning/librarian.md Use this command to install a specific remote skill into the current workspace. Ensure the skill ID is valid and listed in the remote index. ```bash millrace skills install --workspace . ``` -------------------------------- ### Serve Millrace Web Dashboard (Flow View) Source: https://github.com/tim-osterhus/millrace/blob/main/docs/skills/millrace-ops-agent-manual/references/monitoring-and-intervention.md Use this command to serve the millrace-web dashboard in flow view. Replace `` with your actual workspace path. ```bash millrace-web serve --workspace --view flow ``` -------------------------------- ### Example Probe Document Structure Source: https://github.com/tim-osterhus/millrace/blob/main/docs/skills/millrace-ops-agent-manual/references/intake-and-delegation.md This is an example of a probe document used for intake. It specifies the probe's ID, title, summary, request, creation details, target paths, and references to supporting documentation. ```markdown # Millracer vNext Ops Gateway Recon Probe Probe-ID: probe-millracer-vnext-ops-gateway Title: Millracer vNext Ops Gateway Recon Probe Summary: Inspect repo-local reference material before generating scoped work. Request: Use the repo-local architecture spec and references to determine the clean implementation plan, then emit generated specs or implementation tasks. Created-At: 2026-05-26T06:36:36Z Created-By: codex Target-Paths: - . - src/millracer/ - tests/ References: - lab/intake/millracer-vnext-ops-gateway/architecture-spec.md - lab/intake/millracer-vnext-ops-gateway/reference-index.md ``` -------------------------------- ### Build and Check Release Artifacts Source: https://github.com/tim-osterhus/millrace/blob/main/docs/skills/millrace-ops-agent-manual/references/release-and-verification.md Prepare and validate release artifacts by cleaning previous build outputs, building wheels for both core and web packages, and checking the distribution files with twine. ```bash rm -rf build dist src/millrace_ai.egg-info packages/millrace-web/build packages/millrace-web/dist packages/millrace-web/src/millrace_web.egg-info uv build --wheel uv run --with build python -m build --wheel --outdir dist packages/millrace-web uv run --with twine python -m twine check dist/* ``` -------------------------------- ### Verify Runtime Version Source: https://github.com/tim-osterhus/millrace/blob/main/docs/skills/millrace-ops-agent-manual/references/command-baseline.md Verify the installed Millrace runtime version using the CLI. ```bash millrace --version ```