All checks were successful
plugin-tests / test (push) Successful in 5s
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>
46 lines
1.6 KiB
YAML
46 lines
1.6 KiB
YAML
# svrnty-hermes-webui-plugin — manifest.
|
|
# Read by hermes-webui plugin loader + sync tooling. Machine-readable identity.
|
|
plugin_name: svrnty-hermes-webui-plugin
|
|
plugin_version: 0.2.0
|
|
entry_point: svrnty_hermes_webui_plugin:register
|
|
|
|
upstream:
|
|
project: nesquena/hermes-webui
|
|
min_version: v0.51.103 # earliest tested upstream (bumped by upstream-sync.py)
|
|
tested_versions: # appended by drift CI as it sweeps new tags
|
|
- v0.51.103
|
|
- v0.51.117
|
|
- v0.51.118
|
|
current_local: v0.51.118 # what the local fork tracks (latest upstream tag)
|
|
|
|
# Permanent public API surface the plugin uses (mirrors hermes-webui's loader hook).
|
|
# CONNECTION-MAP.md is the runtime-discovered truth; this list is just declarative.
|
|
public_api:
|
|
- register_route
|
|
- register_static
|
|
- inject_script
|
|
- inject_stylesheet
|
|
- config_get
|
|
- logger
|
|
- register_audio_attachment_processor
|
|
|
|
# Assets the plugin injects into index.html on every page load.
|
|
assets:
|
|
scripts:
|
|
- /plugins/svrnty/app.js
|
|
stylesheets:
|
|
- /plugins/svrnty/app.css
|
|
|
|
# Routes this plugin registers at load time (declarative cross-check vs runtime).
|
|
# Each row maps to a routes/<file>.py.
|
|
routes:
|
|
- { path: /api/transcribe, method: POST, file: routes/transcribe.py, status: live }
|
|
- { path: /api/vault/status, method: GET, file: routes/vault_status.py, status: live }
|
|
|
|
# Audio-attachment processors (called by streaming.py before agent receives message).
|
|
audio_processors:
|
|
- { file: routes/transcribe.py, fn: _transcribe_audio_attachments, status: live }
|
|
|
|
# Plugin refuses to load against an unlisted upstream version unless strict=0.
|
|
strict_version_check: false
|