mitkox/esf

★ 65⑂ 13

Self-hosted engineering software factory: Temporal, CubeSandbox agents, deterministic verification and durable evidence. MIT-licensed Machinist fork.

About mitkox/esf

mitkox/esf is an open-source project on GitHub, mainly written in Go. Self-hosted engineering software factory: Temporal, CubeSandbox agents, deterministic verification and durable evidence. MIT-licensed Machinist fork. It currently holds 65 stars and 13 forks with 0 open issues, and was last pushed on 2026-09-20 (repository created 2026-09-19).

Project Overview

AI Homed tracks it on the Today's Trending board.

GitHub Repository Details

Repository mitkox/esf · default branch main · size 1012 KB · watchers 4 · source: GitHub REST API and repository README

README

ESF — Engineering Software Factory

CI License: MIT

A self-hosted software factory that runs coding agents in isolated CubeSandbox microVMs, verifies their changes, and preserves the patch and execution evidence. Temporal coordinates the workflow and sandbox cleanup.

Task → Temporal → CubeSandbox → coding agent → verification → patch + evidence

ESF is an independent fork of Machinist by Owain Lewis. It retains the Machinist CLI, local control plane, and web UI, and adds factory orchestration. See upstream attribution.

Features

This is actively developed software. Review the validated behavior and operational requirements before deployment. ESF produces changes for review; it does not decide what ships.

Quick start

Requirements: Go 1.26.6 or newer, Git, an existing CubeSandbox deployment with a READY template, and Temporal. Docker Compose can run the included local Temporal stack. Node.js 22.22.2 or newer is needed for frontend development.

git clone https://github.com/mitkox/esf.git
cd esf
mkdir -p bin
go build -trimpath -o bin/factory ./cmd/factory
cp factory.example.toml factory.toml

Edit factory.toml with your Cube API endpoint, template, proxy address, agent harness and verification profile. Configure narrowly scoped credentials locally. Neither factory.toml nor .env belongs in Git.

For local Temporal:

cp deployments/dev/temporal/.env.example deployments/dev/temporal/.env

Set a random database password in that .env file before starting.

make temporal-up ./bin/factory doctor ./bin/factory worker

In another terminal, submit a task for an allowed repository:

./bin/factory run \
  --repo https://github.com/your-org/your-repo \
  --rev FULL_COMMIT_SHA \
  --task "Describe the change and acceptance criteria" \
  --agent opencode2 \
  --verification default

The default profile expects repository-owned build.sh and test.sh scripts. Configure gates appropriate to your project. Inspect results with factory status RUN_ID and factory logs RUN_ID:

./bin/factory describe run RUN_ID       # manifest + conditions + inventory + audit
./bin/factory status RUN_ID --watch     # stream condition transitions
./bin/factory get changes               # durable work items and their spend

With [review] enabled = true, a run pauses after the gates report:

./bin/factory review RUN_ID --approve
./bin/factory review RUN_ID --reject --note "use the formal greeting"
./bin/factory run --change CHANGE_ID --parent-run RUN_ID ...   # rework activation

A run can also be submitted from a reviewed manifest:

./bin/factory apply -f run.toml

Build the inherited CLI separately with go build -trimpath -o bin/machinist ./cmd/machinist, then run ./bin/machinist init.

Documentation

| Guide | Purpose | | --- | --- | | Factory overview | Workflow and components | | Operator guide | Harnesses, verification and troubleshooting | | Production deployment | Service setup, TLS, encryption and recovery | | Readiness review | Validation and operational requirements | | Machinist documentation | Inherited CLI and control plane | | Architecture decisions | Design rationale |

Development

go test -race ./...
go vet ./...
cd internal/controlplane/web
npm ci
npm test
npm run build

Integration tests require configured services; see the operator guide. Read CONTRIBUTING.md and the Code of Conduct. Report vulnerabilities privately through SECURITY.md.

License

MIT. Original Machinist copyright and attribution are preserved.

GitHub Stars & Activity

65Stars
13Forks
0Open issues
GoLanguage

GitHub Popularity

GitHub stars65
Forks13
Open issues0
Primary languageGo
LicenseMIT
Stars gained today0
Created2026-09-19
Last pushed2026-09-20

Trending History

Trending statusnot on today's boards

Related AI Projects

1

coder / coder

Go★ 16,158⑂ 1,547▲ 379 stars
2

weave-os / router

Go★ 4,549⑂ 125▲ 44 stars
3

vshulcz / deja-vu

Go★ 904⑂ 87▲ 26 stars
4

openai / tunnel-client

Go★ 453⑂ 91▲ 19 stars
5
6

affaan-m / ECC

JavaScript★ 263,994⑂ 39,485▲ 826 stars
7

tensorflow / tensorflow

C++★ 200,221⑂ 77,033▲ 30 stars
8

Significant-Gravitas / AutoGPT

Python★ 187,469⑂ 46,006▲ 27 stars

More AI Rankings