Lightweight Kubernetes-native dev environments for AI infra engineering.
- PodSpec-first config via
.okdev.yaml - Multi-session support per repo/branch/user
- Shell/SSH access, sync, and port forwarding
- Cross-machine reattach using cluster-native session identity
- Syncthing-based sync engine (
okdev sync)
Latest release:
curl -fsSL https://raw.githubusercontent.com/acmore/okdev/main/scripts/install.sh | shSpecific version:
curl -fsSL https://raw.githubusercontent.com/acmore/okdev/main/scripts/install.sh | sh -s -- v0.1.0Binary assets are published to GitHub Releases for linux/darwin on amd64/arm64.
See:
docs/quickstart.mddocs/command-reference.mddocs/config-manifest.mddocs/troubleshooting.mddocs/release.md
Coverage on some Go 1.25 toolchains can fail under go test ./... -cover because the bundled covdata tool is missing for packages without tests. Use the repo helper instead:
./scripts/coverage.shFormatting is enforced through pre-commit and CI. To enable the local pre-push check:
uv venv .venv
uv pip install --python .venv/bin/python pre-commit
.venv/bin/pre-commit install --hook-type pre-commit --hook-type pre-pushYou can run the same formatter check on demand with:
.venv/bin/pre-commit run --all-files --hook-stage manual okdev-gofmtFor local end-to-end checks before merge, use the reusable Kind runner:
bash scripts/e2e_local_kind.shThat runs the local smoke, deployment, job, and multi-session checks against a reusable Kind cluster. For sync-heavy changes, you can also add:
RUN_PYTORCHJOB=1 bash scripts/e2e_local_kind.shFor a local-only large-repo sync stress check, you can point it at an existing clone:
RUN_LARGE_REPO=1 LARGE_REPO_PATH=~/workspace/pytorch bash scripts/e2e_local_kind.shOr let the script clone a temporary repo and clean it up afterward:
RUN_LARGE_REPO=1 LARGE_REPO_URL=https://github.com/pytorch/pytorch.git bash scripts/e2e_local_kind.shThe large-repo script is intentionally local-only and is not part of GitHub Actions.
Docs are published from docs/ via GitHub Actions + MkDocs.
- Workflow:
.github/workflows/docs.yml - Source config:
mkdocs.yml - Expected URL:
https://acmore.github.io/okdev/
Apache License 2.0. See LICENSE.