원클릭으로
netalertx-settings-management
// Manage NetAlertX configuration settings. Use this when asked to add setting, read config, get_setting_value, ccd, or configure options.
// Manage NetAlertX configuration settings. Use this when asked to add setting, read config, get_setting_value, ccd, or configure options.
NetAlertX coding standards and conventions. Use this when writing code, reviewing code, or implementing features.
Guide for identifying, managing, and running commands within the NetAlertX development container. Use this when asked to run commands, testing, setup scripts, or troubleshoot container issues.
Enables live interaction with the NetAlertX runtime. This skill configures the Model Context Protocol (MCP) connection, granting full API access for debugging, troubleshooting, and real-time operations including database queries, network scans, and device management.
Enables live interaction with the NetAlertX runtime. This skill configures the Model Context Protocol (MCP) connection, granting full API access for debugging, troubleshooting, and real-time operations including database queries, network scans, and device management.
Read before running tests. Detailed instructions for single, standard unit tests (fast), full suites (slow), handling authentication, and obtaining the API Token. Tests must be run when a job is complete.
Develop and extend NetAlertX REST API endpoints. Use this when asked to create endpoint, add API route, implement API, or modify API responses.
| name | netalertx-settings-management |
| description | Manage NetAlertX configuration settings. Use this when asked to add setting, read config, get_setting_value, ccd, or configure options. |
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.