con un clic
config-update
[FUTURE] Update operating configuration via HMAC-signed webhook to n8n
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
[FUTURE] Update operating configuration via HMAC-signed webhook to n8n
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
[FUTURE] Discover LinkedIn feed content and engage with community via comments and likes
Check LinkedIn OAuth token health
Draft, review, and publish LinkedIn posts via HMAC-signed webhook to n8n
Query past LinkedIn activity and present formatted summaries
Basado en la clasificación ocupacional SOC
| name | config-update |
| status | future |
| description | [FUTURE] Update operating configuration via HMAC-signed webhook to n8n |
| requires | {"env":["N8N_WEBHOOK_SECRET"],"bins":["curl","jq","openssl"]} |
When the operator wants to change system configuration, use this skill.
mode: "warmup" or "steady_state"quiet_hours_start / quiet_hours_end: hour (0-23)active_hours_start / active_hours_end: hour (0-23)daily_post_limit / daily_comment_limit / daily_like_limit: integertopics: comma-separated list of topic keywordstiming_randomization_range_minutes: min-max (e.g., "15-60")Examples:
{"mode": "steady_state"}{"quiet_hours_start": 22, "quiet_hours_end": 7}{"daily_like_limit": 15}WEBHOOK_URL="http://localhost:5678/webhook/config-update"
TIMESTAMP=$(date +%s)
BODY='{"action":"update_config","variables":'"$VARIABLES_JSON"'}'
SIGNATURE="sha256=$(echo -n "$BODY" | openssl dgst -sha256 -hmac "$N8N_WEBHOOK_SECRET" | awk '{print $2}')"
RESPONSE=$(curl -s -X POST "$WEBHOOK_URL" \
-H "Content-Type: application/json" \
-H "X-Signature: $SIGNATURE" \
-H "X-Timestamp: $TIMESTAMP" \
-d "$BODY")
"Updated configuration: [list of changed variables and new values]."
Note: Configuration is stored in n8n Custom Variables. The n8n API key stays inside n8n — this skill calls the config-update webhook, not the n8n REST API directly.