remove olixero branding

This commit is contained in:
2026-07-13 20:56:50 +02:00
parent 40c822d3bf
commit 040a4aee37
16 changed files with 47 additions and 157 deletions
+10 -8
View File
@@ -1,4 +1,4 @@
# Olixero Agent Server
# CI Agent Runner
This repository contains a stateful, webhook-driven Gitea agent server. It plans issues, reviews plans, implements accepted plans, independently reviews diffs, and publishes pull requests without using Gitea Actions or a Gitea runner.
@@ -71,10 +71,10 @@ Create the environment file and state directories:
```bash
cp deploy/.env.example deploy/.env
sudo install -d -o 10001 -g 10001 -m 0700 \
/srv/olixero-agent/state \
/srv/olixero-agent/workspaces \
/srv/olixero-agent/opencode \
/srv/olixero-agent/cache
/srv/gitea-agent/state \
/srv/gitea-agent/workspaces \
/srv/gitea-agent/opencode \
/srv/gitea-agent/cache
```
Set `GITEA_SERVER_URL`, `GITEA_REPOSITORY`, and `CI_AGENT_BOT_LOGIN` in `.env`. Configure at least one actor allowlist:
@@ -162,7 +162,9 @@ By default Compose binds the controller to `127.0.0.1:8080`; expose it through a
## Operation
Planning creates or resumes the issue's planner conversation. An independent reviewer can request up to three revisions. The accepted plan is published in a protocol-v1 marked comment so plans created by the previous runner remain discoverable.
Planning creates or resumes the issue's planner conversation. An independent reviewer can request up to three revisions. Accepted plans are published with the protocol-v1 `gitea-agent` marker namespace.
Plans published under an earlier marker namespace are intentionally not imported after this product rename. Replan outstanding issues once before requesting implementation.
Keep `CI_AGENT_BOT_LOGIN` set to the account that authored existing protocol-v1 plan comments if those plans must remain implementable. Changing bot accounts requires replanning outstanding issues.
@@ -176,8 +178,8 @@ Back up both application state and OpenCode data. For a simple consistent offlin
```bash
docker compose --env-file deploy/.env -f deploy/compose.yaml stop
sudo cp -a /srv/olixero-agent/state /backup/olixero-agent-state
sudo cp -a /srv/olixero-agent/opencode /backup/olixero-agent-opencode
sudo cp -a /srv/gitea-agent/state /backup/gitea-agent-state
sudo cp -a /srv/gitea-agent/opencode /backup/gitea-agent-opencode
docker compose --env-file deploy/.env -f deploy/compose.yaml start
```