230b542015
- Rename package fablednetmon → fabledscryer throughout - Multi-dashboard: ownership, per-user defaults, HTMX edit (add/remove/reorder) - Read-only share tokens scoped to individual dashboards - Dashboard edit is HTMX-driven (no page reloads) - Plugin management system: remote catalog, download/install, hot-reload, in-app restart - plugin_index.py: fetch/cache remote index.yaml; default URL → bvandeusen/fabledscryer-plugins - plugin_manager.py: download_and_install_plugin, hot_reload_plugin, restart_app - ZIP extraction handles GitHub archive formats (name-v1.0.0/, name-main/) - Settings split into tabbed sections: General, Notifications, Ansible, Plugins - Plugins tab: catalog browser (HTMX), install/activate/update/restart actions - UI/branding: dark palette (#07071a), crystal ball SVG logo, animated star field, Libertinus Serif applied to headings, nav, labels, and section titles - Widget registry (core/widgets.py) for dashboard plugin integration - UPS widget.html (dashboard card) and settings/_tabs.html include - Migrations 0005–0008: dashboards, is_default, ownership, share tokens - docs/plugins/: writing-a-plugin.md updated with publishing guide, index.yaml.example template for fabledscryer-plugins repo Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
81 lines
3.0 KiB
Plaintext
81 lines
3.0 KiB
Plaintext
# fabledscryer-plugins / index.yaml
|
|
#
|
|
# This file is the catalog index for the fabledscryer plugin repository.
|
|
# It is fetched by the app's Settings → Plugins → Plugin Catalog UI.
|
|
#
|
|
# Fabled Scryer reads this file from:
|
|
# https://raw.githubusercontent.com/bvandeusen/fabledscryer-plugins/main/index.yaml
|
|
#
|
|
# After adding or updating a plugin entry, commit and push — the change is
|
|
# live immediately for anyone whose app fetches the catalog (cache TTL: 5 min).
|
|
#
|
|
# REQUIRED fields for each plugin entry:
|
|
# name - must match the plugin's directory name exactly
|
|
# version - semver string
|
|
# download_url - direct URL to a zip file containing the plugin
|
|
# checksum_sha256 - SHA-256 hex digest of the zip (leave empty to skip verification)
|
|
#
|
|
# OPTIONAL fields:
|
|
# description, author, license, min_app_version,
|
|
# repository_url, homepage, tags
|
|
#
|
|
# Generating a checksum:
|
|
# sha256sum traefik.zip
|
|
# shasum -a 256 traefik.zip (macOS)
|
|
#
|
|
# Download URL conventions:
|
|
# GitHub release assets (recommended):
|
|
# https://github.com/bvandeusen/fabledscryer-plugins/releases/download/traefik-v1.0.0/traefik.zip
|
|
# GitHub source archive of a subdirectory tag is not directly supported;
|
|
# use release assets created by the publish workflow (see .github/workflows/publish.yml).
|
|
|
|
version: 1
|
|
updated: "2026-03-22"
|
|
|
|
plugins:
|
|
|
|
- name: traefik
|
|
version: "1.0.0"
|
|
description: "Traefik reverse proxy metrics and access log integration"
|
|
author: "FabledScryer"
|
|
license: "MIT"
|
|
min_app_version: "0.1.0"
|
|
repository_url: "https://github.com/bvandeusen/fabledscryer-plugins"
|
|
homepage: "https://github.com/bvandeusen/fabledscryer-plugins/tree/main/traefik"
|
|
download_url: "https://github.com/bvandeusen/fabledscryer-plugins/releases/download/traefik-v1.0.0/traefik.zip"
|
|
checksum_sha256: "" # fill in after running: sha256sum traefik.zip
|
|
tags:
|
|
- proxy
|
|
- metrics
|
|
- access-log
|
|
|
|
- name: unifi
|
|
version: "1.0.0"
|
|
description: "UniFi Network controller integration — WAN health, devices, clients, DPI"
|
|
author: "FabledScryer"
|
|
license: "MIT"
|
|
min_app_version: "0.1.0"
|
|
repository_url: "https://github.com/bvandeusen/fabledscryer-plugins"
|
|
homepage: "https://github.com/bvandeusen/fabledscryer-plugins/tree/main/unifi"
|
|
download_url: "https://github.com/bvandeusen/fabledscryer-plugins/releases/download/unifi-v1.0.0/unifi.zip"
|
|
checksum_sha256: ""
|
|
tags:
|
|
- network
|
|
- unifi
|
|
- ubiquiti
|
|
|
|
- name: ups
|
|
version: "1.0.0"
|
|
description: "UPS monitoring via NUT (Network UPS Tools) with Ansible shutdown automation"
|
|
author: "FabledScryer"
|
|
license: "MIT"
|
|
min_app_version: "0.1.0"
|
|
repository_url: "https://github.com/bvandeusen/fabledscryer-plugins"
|
|
homepage: "https://github.com/bvandeusen/fabledscryer-plugins/tree/main/ups"
|
|
download_url: "https://github.com/bvandeusen/fabledscryer-plugins/releases/download/ups-v1.0.0/ups.zip"
|
|
checksum_sha256: ""
|
|
tags:
|
|
- ups
|
|
- power
|
|
- nut
|