Live AI-driven adaptive UI for the Stackchain AI Lab Gitea experience.
Go to file
rockachopa 1dd0e6e133
All checks were successful
CI / lint (push) Successful in 9s
Release / release-candidate (push) Successful in 5s
CI / build-frontend (push) Successful in 6s
Merge pull request 'feat: Collapsible panel state persistence' (#21) from timmy/9-collapsible-panel-state-persistence into main
2026-08-04 15:00:18 +00:00
.gitea/workflows fix: use Gitea-compatible artifact upload 2026-08-04 14:59:22 +00:00
creative-deliverables Add creative deliverable for stackchain/stackchain-dashboard#5 2026-07-08 16:42:49 +00:00
docs feat: autonomous issue-to-release execution engine 2026-08-04 14:29:41 +00:00
frontend feat: persist collapsible dashboard panels 2026-08-04 14:53:06 +00:00
release chore: release manifest and creative asset manifest 2026-07-13 13:48:38 +00:00
scripts ci: add automated CI/release workflows 2026-07-08 14:24:16 +00:00
src feat: autonomous issue-to-release execution engine 2026-08-04 14:29:41 +00:00
tests fix: use Gitea-compatible artifact upload 2026-08-04 14:59:22 +00:00
.gitignore feat: autonomous issue-to-release execution engine 2026-08-04 14:29:41 +00:00
README.md feat: autonomous issue-to-release execution engine 2026-08-04 14:29:41 +00:00
requirements.txt fix: declare CI dependencies 2026-08-04 14:57:43 +00:00

stackchain-dashboard

Live AI-driven adaptive UI for the Stackchain AI Lab Gitea experience.

Autonomous release worker

The deterministic issue-to-release engine lives at src/release_engine.py. It discovers or targets one Gitea issue, verifies its claim, creates an issue branch, invokes a configured coding agent, runs tests, pushes, and opens a linked pull request. Merge remains gated by CI/review; the existing release workflow drafts the release candidate after merge.

Plan against live Gitea without mutating anything:

python3 -m src.release_engine \
  --repo stackchain/stackchain-dashboard \
  --agent timmy \
  --issue 14 \
  --dry-run

Execute one ticket:

export RELEASE_AGENT_COMMAND='codex exec "Implement Gitea issue #{issue_number}: {issue_title}. Follow the issue body and run tests."'
python3 -m src.release_engine \
  --repo stackchain/stackchain-dashboard \
  --agent timmy \
  --test-command 'python3 -m pytest tests/ -q'

Required secret: GITEA_TOKEN. Durable state defaults to .release-engine/state.json. Full behavior and safety gates are documented in docs/release-engine-spec.md.