← All skills
Tencent SkillHub · Communication & Collaboration

SIGNL4 Alerting

Send and close SIGNL4 alerts using the SIGNL4 inbound webhook (team secret in URL).

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Send and close SIGNL4 alerts using the SIGNL4 inbound webhook (team secret in URL).

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Overview

Use this skill to interact with SIGNL4 via its inbound webhook: Send alerts to a SIGNL4 team Close (resolve) alerts using an external correlation ID Authentication is handled via the team secret embedded in the webhook URL. Webhook documentation: https://docs.signl4.com/integrations/webhook/webhook.html

Required configuration

The following environment variable must be set: SIGNL4_TEAM_SECRET – the SIGNL4 team secret used in the webhook URL Optional (advanced): SIGNL4_WEBHOOK_BASE – defaults to https://connect.signl4.com/webhook

When sending an alert

Required: Title – short summary Message – detailed description External ID – strongly recommended (required to close the alert later) Optional: Service (X-S4-Service) Alerting scenario (X-S4-AlertingScenario – e.g. single_ack, multi_ack, emergency) Location (X-S4-Location, format: "lat,long")

When closing an alert

Required: External ID – must match the ID used when the alert was created

Rules

Always include X-S4-ExternalID if the alert might need to be closed later. Use X-S4-Status: "new" to create an alert.

Command template

Set the webhook URL: WEBHOOK_URL="${SIGNL4_WEBHOOK_BASE:-https://connect.signl4.com/webhook}/${SIGNL4_TEAM_SECRET}" Send the alert: curl -sS -X POST "$WEBHOOK_URL" \ -H "Content-Type: application/json" \ -d '{ "Title": "<TITLE>", "Message": "<MESSAGE>", "X-S4-ExternalID": "<EXTERNAL_ID>", "X-S4-Status": "new", "X-S4-Service": "<OPTIONAL_SERVICE>", "X-S4-AlertingScenario": "<OPTIONAL_SCENARIO>", "X-S4-Location": "<OPTIONAL_LAT_LONG>", "X-S4-SourceSystem": "OpenClaw" }'

What to report back

Confirm that the alert was sent Repeat key details: Title External ID Optional service/scenario If the request fails: Check that SIGNL4_TEAM_SECRET is set and correct Ensure JSON fields are valid

Rules

To close an alert, you must: Use the same External ID as when the alert was created Set X-S4-Status to resolved

Command template

curl -sS -X POST "$WEBHOOK_URL" \ -H "Content-Type: application/json" \ -d '{ "X-S4-ExternalID": "<EXTERNAL_ID>", "X-S4-Status": "resolved" }'

What to report back

Confirm the resolve request was sent for the given External ID If the External ID is missing, ask the user for it

Security notes

Treat SIGNL4_TEAM_SECRET as confidential Never print or echo the team secret in responses or logs

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • README.md Docs