Setup wizard: plugin display names + GE-Enforce next-steps pointer
All checks were successful
CI / backend (push) Successful in 1m37s
CI / naming (push) Successful in 2s
CI / frontend (push) Successful in 8s

Plugins list now carries a displayname (manifest display_name, else the
machine name title-cased). Adds display_name to the four whose title-case
was wrong: GE-Enforce, USB, Measuring Tools, Knowledge Base. The setup
wizard Features step and Settings > Plugins render it, so "Geenforce"/"Usb"
are gone.

Finish step shows a pointer when GE-Enforce is enabled: it still needs a
scoped service token (Settings > API Tokens) and a share export root
(GE-Enforce page) before the fleet uses it - operational config the wizard
does not collect.

frontend build green; naming green.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
cproudlock
2026-07-13 07:41:32 -04:00
parent d7b777a7a0
commit 85a6ab8645
7 changed files with 24 additions and 3 deletions

View File

@@ -155,6 +155,11 @@ class PluginManager:
manifest = self.loader.load_manifest(name)
available.append({
'name': meta.name,
# Human label for UIs. Manifest display_name wins; else
# title-case the machine name (right for most, e.g.
# "computers" -> "Computers").
'displayname': (manifest.get('display_name')
or meta.name.replace('_', ' ').title()),
'version': meta.version,
'description': meta.description,
'author': meta.author,