.github/skills/settings-management/SKILL.md
Manage NetAlertX configuration settings. Use this when asked to add setting, read config, get_setting_value, ccd, or configure options.
npx skillsauth add netalertx/netalertx netalertx-settings-managementInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
from helper import get_setting_value
value = get_setting_value('SETTING_NAME')
Never hardcode ports, secrets, or configuration values. Always use get_setting_value().
Use ccd() in server/initialise.py:
ccd('SETTING_NAME', 'default_value', 'description')
Define in plugin's config.json manifest under the settings section.
| File | Purpose |
|------|---------|
| /data/config/app.conf | Runtime config (modified by app) |
| back/app.conf | Default config (template) |
Use APP_CONF_OVERRIDE environment variable for settings that must be set before startup.
development
Load synthetic device data into the devcontainer. Use this when asked to load sample devices, seed data, import test devices, populate database, or generate test data.
tools
Create and run NetAlertX plugins. Use this when asked to create plugin, run plugin, test plugin, plugin development, or execute plugin script.
devops
Clean up unused Docker resources. Use this when asked to prune docker, clean docker, remove unused images, free disk space, or docker cleanup. DANGEROUS operation. Requires human confirmation.
development
Build Docker images for testing or production. Use this when asked to build container, build image, docker build, build test image, or launch production container.