svrnty-hermes-webui-plugin/CHANGELOG.md
Svrnty adc4c98cf8
All checks were successful
plugin-tests / test (push) Successful in 5s
docs: ship 6 polish fixes — manifest sync + LICENSE + CHANGELOG + .env.example + README + integration test
Closes the documentation gap surfaced by the compliance audit. Plugin now
passes the "well organized + well documented" bar in addition to the
"protocol §10 compliant" bar.

Changes:
  manifest.yaml    bump plugin_version 0.1.0 → 0.2.0 · routes status: live ·
                   audio_processors section added · public_api adds
                   register_audio_attachment_processor · tested_versions
                   appended (v0.51.117, v0.51.118) · current_local synced
  README.md        Status table flipped from "TBD" to "live" everywhere ·
                   forced internal deps + test count surfaced
  .env.example     declares the 4 env vars the plugin reads at runtime
                   (HERMES_WEBUI_PYTHON_PLUGIN · HERMES_WEBUI_STT_URL/_KEY ·
                   BTE_BASE_URL · BTE_TENANT_ID)
  CHANGELOG.md     v0.1.0 (scaffold + vault + brand) · v0.2.0 (STT + mic +
                   loader API extension)
  LICENSE          proprietary, contact jp@svrnty.io; clarifies that runtime
                   integration with hermes-webui (MIT) is permitted
  tests/integration/test_loader_contract.py
                   3 real assertions against the adjacent fork — 7-method
                   contract, register-our-plugin end-to-end, noop-when-env-unset

29/29 tests PASS (was 26; +3 integration).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-23 11:02:28 -04:00

2.3 KiB

Changelog

All notable changes to svrnty-hermes-webui-plugin. Format roughly follows Keep a Changelog + SemVer.

The plugin protocol contract itself lives in hermes/docs/SVRNTY-PLUGIN-PROTOCOL.md. This changelog tracks the plugin side only; the fork-side loader hook is documented in hermes-webui commit history.


[0.2.0] — 2026-05-23

Added

  • STT migration (Phase 2.A) — voice-message recording + transcription
    • routes/transcribe.py: POST /api/transcribe + _transcribe_audio_attachments audio processor
    • static/app.js: MediaRecorder mic flow → File attached + sent (voice-message-* prefix)
    • Uses the new 7th loader API method register_audio_attachment_processor
    • Stdlib-only multipart parser (Python 3.13 dropped cgi per PEP 594)
  • Loader API extended (1 → 7 methods) — register_audio_attachment_processor
    • PRD §5.1 amended; eval test test_eval_loader_contract_unchanged enforces the new surface
  • 9 new tests (3 transcribe + 6 app.js static checks), 26 total

Changed

  • manifest.yaml: route + audio processor status flipped to live; tested_versions appended
  • CONNECTION-MAP.md: now 10 deps (9 public API · 0 forced internal · 1 frontend)

[0.1.0] — 2026-05-23

Added

  • Initial scaffold per the SVRNTY-HERMES Plugin Protocol PRD
  • plugin.py entry point with register(api)
  • routes/vault_status.py — GET /api/vault/status (migrated from fork commit 3e2c74f3)
  • static/{app.js,app.css,fonts/} — brand skin (migrated from hermes-ext/)
  • static/app.js: vault connections panel DOM injection (settings → system tab)
  • scripts/ast-connection-map.py — AST walker generates CONNECTION-MAP.md
  • scripts/boot-smoke.py — boot upstream+plugin + curl every endpoint
  • scripts/upstream-sync.py — fetch upstream tags + matrix report
  • Makefile — one-line targets: make test, make map, make sync-upstream, make smoke
  • .github/workflows/:
    • plugin-tests.yml — pytest on push/PR
    • connection-map-check.yml — regen + diff vs committed on PR
    • upstream-drift.yml — daily cron sweeps new upstream tags
  • 11 unit + eval tests

Infrastructure

  • Loader hook landed in hermes-webui as the lone fork commit (6 methods initially)
  • Gitea Actions runner svrnty-steev-runner-01 registered for daily drift CI