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
51 changes: 51 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Closed-loop SDLC engine that autonomously discovers issues, plans fixes, implements code, verifies, delivers, observes, and learns. **Orchestrator, not agent** — schedules work and invokes external agent CLIs (Claude Code, OpenCode, …) through a single generic stage loop.

**Status: 0.5.0 — first public release.** The v5 architecture rebuild is complete and running; this is the first public cut. See [CHANGELOG.md](CHANGELOG.md) for release notes. The v4 implementation was abandoned mid-migration — v5 collapses all pipeline work into `runStage` + 10 primitives, puts state in a pluggable KV model, and ships an observability UI from day one.
**Status: 0.6.0 — self-managed.** The v5 architecture rebuild is complete and running, and the engine now manages this repository itself. See [CHANGELOG.md](CHANGELOG.md) for release notes. The v4 implementation was abandoned mid-migration — v5 collapses all pipeline work into `runStage` + 10 primitives, puts state in a pluggable KV model, and ships an observability UI from day one.

## Before you run it — blast radius

Expand Down
6 changes: 3 additions & 3 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

| Version | Supported |
|---------|-----------|
| 0.5.x | Yes — current release line |
| < 0.5 | No |
| 0.6.x | Yes — current release line |
| < 0.6 | No |

Only the current release line receives security fixes. Operator is pre-1.0; upgrade
to the latest 0.5.x before reporting.
to the latest 0.6.x before reporting.

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@operator/app",
"version": "0.5.0",
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
4 changes: 3 additions & 1 deletion docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ spec:
spec:
containers:
- name: engine
image: ghcr.io/ainova-systems/operator-autopilot/operator-engine:0.5
# `Build Image` publishes `:latest` and `:<commit-sha>`. There is no
# version-numbered tag — pin to a SHA for a reproducible rollout.
image: ghcr.io/ainova-systems/operator-autopilot/operator-engine:latest
command: ["npx", "tsx", "engine/entry.ts"]
env:
- { name: OPERATOR_DIR, value: /var/lib/operator }
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@operator/engine",
"version": "0.5.0",
"version": "0.6.0",
"description": "Operator — closed-loop SDLC engine",
"type": "module",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@operator/adapters",
"version": "0.5.0",
"version": "0.6.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@operator/core",
"version": "0.5.0",
"version": "0.6.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
Expand Down
Loading