Skip to content

Contributing

Otomat is developed in the open at github.com/alimtunc/otomat. Bug reports, questions and pull requests are welcome; the project is in alpha, so expect the surface to move.

Run it from source

You need Node.js 22+, pnpm 12 (corepack enable pnpm) and, to run agents, the same prerequisites as the app.

sh
git clone https://github.com/alimtunc/otomat.git
cd otomat
pnpm install        # workspace + git hooks
pnpm build          # every package, then the import-boundary check
pnpm desktop:dev    # Electron shell + Vite dev server + a daemon built from source

pnpm dev and pnpm back in two terminals run the cockpit in a browser against a standalone daemon instead.

pnpm check is the gate every pull request must pass; AGENTS.md defines it, the commit convention and the code rules.

Where things are

The documents below are the canonical references; nothing on this site repeats them.

This documentation

The site is a VitePress project in apps/docs: plain Markdown pages under apps/docs/guide, the navigation in apps/docs/.vitepress/config.ts. Every page has an Edit this page on GitHub link.

sh
pnpm docs:dev      # live preview at http://localhost:5173
pnpm docs:build    # static site in apps/docs/.vitepress/dist; fails on a dead internal link

Publication is automatic: .github/workflows/docs.yml builds the site, checks every internal and external link with lychee (lychee --config lychee.toml apps/docs README.md runs the same check locally), and deploys main to otomat-docs.pages.dev and a pull request to pr-<number>.otomat-docs.pages.dev. The one-time Cloudflare setup is described in the web preview reference.

Otomat is in alpha. macOS on Apple Silicon only.