Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "Omni Engineer",
"image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye",
"features": {
"ghcr.io/devcontainers/features/git:1": {}
},
"postCreateCommand": "python -m pip install --upgrade pip && pip install -r requirements.txt && cp -n .env.example .env || true",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python"
}
}
},
"remoteEnv": {
"PYTHONUNBUFFERED": "1"
}
}
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,24 @@ Omni Engineer is a spiritual successor to [Claude Engineer](https://github.com/D
```
4. Run the main script:
```
python omni-eng.py
python main.py
```

## Daytona / Dev Container

This repository includes a `.devcontainer/devcontainer.json` for Daytona and
other Dev Container-compatible tools. The container uses Python 3.11, installs
`requirements.txt`, and copies `.env.example` to `.env` on first creation so you
can add your own `OPENROUTER_API_KEY` without committing secrets.

To use it with Daytona:

1. Create a Daytona workspace from this repository.
2. Open a terminal in the workspace.
3. Add your OpenRouter key to `.env`.
4. Run Omni Engineer with:
```
python main.py
```

## 📚 Usage
Expand Down