Skip to content

Getting Started

Builder Of Things edited this page May 30, 2026 · 1 revision

Getting Started

1. Start the backend runtime

git clone https://github.com/gryszzz/open-thymos.git
cd open-thymos/thymos
cargo run -p thymos-server

Default server URL: http://localhost:3001

Optional programmable capabilities:

THYMOS_TOOL_MANIFEST_DIRS=../tools cargo run -p thymos-server

2. Choose your interface

Web console

cd ..
npm install
npm run dev

Open http://localhost:3000/runs

CLI

cd thymos
cargo run -p thymos-cli -- run "Inspect the repo and explain Thymos" --provider mock --follow

VS Code

Build the extension in thymos/clients/vscode, launch it in Extension Development Host, and point it at http://localhost:3001.

3. Understand the flow

Every run goes through:

Intent -> Proposal -> Commit

That flow is the same no matter which interface you use.

Clone this wiki locally