feat: extract sovereign work from hermes-agent fork into sidecar
Extracted 52 files from Timmy_Foundation/hermes-agent (gitea/main) into
hermes-sovereign/ directory to restore clean upstream tracking.
Layout:
docs/ 19 files — deploy guides, performance reports, security docs, research
security/ 5 files — audit workflows, PR checklists, validation scripts
wizard-bootstrap/ 7 files — wizard environment, dependency checking, auditing
notebooks/ 2 files — Jupyter health monitoring notebooks
scripts/ 5 files — forge health, smoke tests, syntax guard, deploy validation
ci/ 2 files — Gitea CI workflow definitions
githooks/ 3 files — pre-commit hooks and config
devkit/ 8 files — developer toolkit (Gitea client, health, notebook runner)
README.md 1 file — directory overview
Addresses: #337, #338
2026-04-07 10:11:20 -04:00
|
|
|
name: Forge CI
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches: [main]
|
|
|
|
|
pull_request:
|
|
|
|
|
branches: [main]
|
|
|
|
|
|
|
|
|
|
concurrency:
|
2026-04-13 21:28:21 +00:00
|
|
|
group: forge-ci-${{ github.ref }}
|
feat: extract sovereign work from hermes-agent fork into sidecar
Extracted 52 files from Timmy_Foundation/hermes-agent (gitea/main) into
hermes-sovereign/ directory to restore clean upstream tracking.
Layout:
docs/ 19 files — deploy guides, performance reports, security docs, research
security/ 5 files — audit workflows, PR checklists, validation scripts
wizard-bootstrap/ 7 files — wizard environment, dependency checking, auditing
notebooks/ 2 files — Jupyter health monitoring notebooks
scripts/ 5 files — forge health, smoke tests, syntax guard, deploy validation
ci/ 2 files — Gitea CI workflow definitions
githooks/ 3 files — pre-commit hooks and config
devkit/ 8 files — developer toolkit (Gitea client, health, notebook runner)
README.md 1 file — directory overview
Addresses: #337, #338
2026-04-07 10:11:20 -04:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
smoke-and-build:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
timeout-minutes: 5
|
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout code
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
|
|
- name: Set up Python 3.11
|
2026-04-13 21:28:21 +00:00
|
|
|
uses: actions/setup-python@v5
|
|
|
|
|
with:
|
|
|
|
|
python-version: '3.11'
|
feat: extract sovereign work from hermes-agent fork into sidecar
Extracted 52 files from Timmy_Foundation/hermes-agent (gitea/main) into
hermes-sovereign/ directory to restore clean upstream tracking.
Layout:
docs/ 19 files — deploy guides, performance reports, security docs, research
security/ 5 files — audit workflows, PR checklists, validation scripts
wizard-bootstrap/ 7 files — wizard environment, dependency checking, auditing
notebooks/ 2 files — Jupyter health monitoring notebooks
scripts/ 5 files — forge health, smoke tests, syntax guard, deploy validation
ci/ 2 files — Gitea CI workflow definitions
githooks/ 3 files — pre-commit hooks and config
devkit/ 8 files — developer toolkit (Gitea client, health, notebook runner)
README.md 1 file — directory overview
Addresses: #337, #338
2026-04-07 10:11:20 -04:00
|
|
|
|
2026-04-13 21:28:21 +00:00
|
|
|
- name: Install dependencies
|
feat: extract sovereign work from hermes-agent fork into sidecar
Extracted 52 files from Timmy_Foundation/hermes-agent (gitea/main) into
hermes-sovereign/ directory to restore clean upstream tracking.
Layout:
docs/ 19 files — deploy guides, performance reports, security docs, research
security/ 5 files — audit workflows, PR checklists, validation scripts
wizard-bootstrap/ 7 files — wizard environment, dependency checking, auditing
notebooks/ 2 files — Jupyter health monitoring notebooks
scripts/ 5 files — forge health, smoke tests, syntax guard, deploy validation
ci/ 2 files — Gitea CI workflow definitions
githooks/ 3 files — pre-commit hooks and config
devkit/ 8 files — developer toolkit (Gitea client, health, notebook runner)
README.md 1 file — directory overview
Addresses: #337, #338
2026-04-07 10:11:20 -04:00
|
|
|
run: |
|
2026-04-13 21:28:21 +00:00
|
|
|
pip install pytest pyyaml
|
feat: extract sovereign work from hermes-agent fork into sidecar
Extracted 52 files from Timmy_Foundation/hermes-agent (gitea/main) into
hermes-sovereign/ directory to restore clean upstream tracking.
Layout:
docs/ 19 files — deploy guides, performance reports, security docs, research
security/ 5 files — audit workflows, PR checklists, validation scripts
wizard-bootstrap/ 7 files — wizard environment, dependency checking, auditing
notebooks/ 2 files — Jupyter health monitoring notebooks
scripts/ 5 files — forge health, smoke tests, syntax guard, deploy validation
ci/ 2 files — Gitea CI workflow definitions
githooks/ 3 files — pre-commit hooks and config
devkit/ 8 files — developer toolkit (Gitea client, health, notebook runner)
README.md 1 file — directory overview
Addresses: #337, #338
2026-04-07 10:11:20 -04:00
|
|
|
|
|
|
|
|
- name: Smoke tests
|
2026-04-13 21:28:21 +00:00
|
|
|
run: python scripts/smoke_test.py
|
feat: extract sovereign work from hermes-agent fork into sidecar
Extracted 52 files from Timmy_Foundation/hermes-agent (gitea/main) into
hermes-sovereign/ directory to restore clean upstream tracking.
Layout:
docs/ 19 files — deploy guides, performance reports, security docs, research
security/ 5 files — audit workflows, PR checklists, validation scripts
wizard-bootstrap/ 7 files — wizard environment, dependency checking, auditing
notebooks/ 2 files — Jupyter health monitoring notebooks
scripts/ 5 files — forge health, smoke tests, syntax guard, deploy validation
ci/ 2 files — Gitea CI workflow definitions
githooks/ 3 files — pre-commit hooks and config
devkit/ 8 files — developer toolkit (Gitea client, health, notebook runner)
README.md 1 file — directory overview
Addresses: #337, #338
2026-04-07 10:11:20 -04:00
|
|
|
env:
|
|
|
|
|
OPENROUTER_API_KEY: ""
|
|
|
|
|
OPENAI_API_KEY: ""
|
|
|
|
|
NOUS_API_KEY: ""
|
|
|
|
|
|
|
|
|
|
- name: Syntax guard
|
2026-04-13 21:28:21 +00:00
|
|
|
run: python scripts/syntax_guard.py
|