THE single repo holding every Svrnty modification to nesquena/hermes-webui per
the SVRNTY-HERMES Plugin Protocol PRD (hermes/docs/SVRNTY-PLUGIN-PROTOCOL.md).
This scaffold is the empty vessel; Phase 2 migrates the existing fork
modifications (STT, vault status, brand skin) into it.
Contents:
plugin.py register(api) entry; reads 6-method
contract; wires static + routes
svrnty_hermes_webui_plugin/ package wrapper for pip install
manifest.yaml plugin name · version · upstream pin
pyproject.toml pip-installable
routes/__init__.py placeholder until Phase 2 migration
static/ placeholder for brand skin migration
CONNECTION-MAP.md AST-generated; 4 public API calls, 0 forced
scripts/ast-connection-map.py AST walker; modes: regen · --check · --diff
tests/{unit,integration,evals}/ skeleton for Phase 3 eval suite
.github/workflows/
plugin-tests.yml push: unit + integration + map check
connection-map-check.yml PR: regen + diff vs committed
upstream-drift.yml daily cron: detect new upstream tags +
run matrix (activates when Gitea runner
registered on Svrnty infra)
Karpathy 4 rules in CLAUDE.md; every subagent inherits them via the workspace
contract.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
39 lines
1.4 KiB
YAML
39 lines
1.4 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.1.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: # filled in by drift CI as it sweeps tags
|
|
- v0.51.103
|
|
current_local: v0.51.117 # what the local fork tracks
|
|
|
|
# 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
|
|
|
|
# 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 will register 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: pending-phase-2 }
|
|
- { path: /api/vault/status, method: GET, file: routes/vault_status.py, status: pending-phase-2 }
|
|
|
|
# Plugin refuses to load against an unlisted upstream version unless strict=0.
|
|
strict_version_check: false
|