CI/CD architecture for the ERES Institute — BEST / SOUND / GOOD as a three-gate pipeline.
Shared GitHub Actions workflows, reusable composite actions, and pipeline contracts used across ERES Institute repositories. This repository is the single source of truth for how ERES code and documents are validated, released, and archived.
The ERES Trilogy maps directly onto a three-gate CI/CD pipeline:
commit ──▶ [ BEST ] ──▶ [ SOUND ] ──▶ [ GOOD ] ──▶ release
Personal Public-Private Graceful
(Book 1) (Book 2) Evolution
(Book 3)
| Gate | Trilogy | What It Checks |
|---|---|---|
| BEST | Book 1 — ONE GOOD · Synthetic AI Constitution Through UBIMIA | Personal-grade hygiene: lint, format, type-check, secret-scan. |
| SOUND | Book 2 — SECURITY-CLEARANCE · IDIPITIS Framework for NBERS | Public-Private-grade integrity: unit + integration tests, SPT Triad checks, dependency audit. |
| GOOD | Book 3 — DATA-INTEGRITY · FAVORS for CBGMODD GAIA SOMT | Graceful-evolution-grade: MIEVM validation, Erasure Completeness Ratio (ECR), release-readiness. |
Production-bound changes must pass the Trifecta Protocol:
- ONE-GOOD — ethical/moral vector check (Three Governing Principles).
- SECURITY-CLEARANCE — SPT Triad (
ERES-SPT-2026-001) enforcement. - DATA-INTEGRITY — provenance, versioning, and MIEVM corroboration.
Typical contents of this repository:
.github/workflows/best.yml— lint, format, secret-scan baseline..github/workflows/sound.yml— test matrix, SPT Triad validators..github/workflows/good.yml— MIEVM regression harness, release checklist.actions/mievm-validate/— composite action invoking the ensemble (Claude, Grok, DeepSeek, ChatGPT) against specification deltas.actions/spt-check/— SECUIR / VERTECA / FAVORS / CBGMODD static analysis.
# .github/workflows/ci.yml in a consumer repo
name: ERES CI
on: [push, pull_request]
jobs:
best:
uses: ERES-Institute-for-New-Age-Cybernetics/Workflows/.github/workflows/best.yml@main
sound:
needs: best
uses: ERES-Institute-for-New-Age-Cybernetics/Workflows/.github/workflows/sound.yml@main
good:
needs: sound
uses: ERES-Institute-for-New-Age-Cybernetics/Workflows/.github/workflows/good.yml@mainC = R × P / M
The pipeline is itself a Cybernetics instrument: each gate is a Method, each artifact is a Resource, each gate-promotion is a Purpose-check.
@misc{sprute_eres_workflows_2026,
author = {Sprute, Joseph A.},
title = {{ERES Workflows: BEST / SOUND / GOOD CI/CD Pipeline}},
year = {2026},
howpublished = {GitHub repository, ERES Institute for New Age Cybernetics},
url = {https://github.com/ERES-Institute-for-New-Age-Cybernetics/Workflows}
}CARE Commons Attribution License v2.1 (CCAL v2.1). See LICENSE.
- Joseph Allen Sprute (ERES Maestro) — eresmaestro@gmail.com
- ORCID: 0000-0001-9946-3221
Three Governing Principles — Don't hurt yourself. Don't hurt others. Build for generations to come.
Document ID: ERES-WORKFLOWS-README-2026-001 · Last updated: April 13, 2026