# Send SIGNL4 Alerting to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "signl4",
    "name": "SIGNL4 Alerting",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/rons4/signl4",
    "canonicalUrl": "https://clawhub.ai/rons4/signl4",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/signl4",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=signl4",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "signl4",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T05:43:42.636Z",
      "expiresAt": "2026-05-08T05:43:42.636Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=signl4",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=signl4",
        "contentDisposition": "attachment; filename=\"signl4-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "signl4"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/signl4"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/signl4",
    "downloadUrl": "https://openagent3.xyz/downloads/signl4",
    "agentUrl": "https://openagent3.xyz/skills/signl4/agent",
    "manifestUrl": "https://openagent3.xyz/skills/signl4/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/signl4/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: rons4
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T05:43:42.636Z
- Expires at: 2026-05-08T05:43:42.636Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/signl4)
- [Send to Agent page](https://openagent3.xyz/skills/signl4/agent)
- [JSON manifest](https://openagent3.xyz/skills/signl4/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/signl4/agent.md)
- [Download page](https://openagent3.xyz/downloads/signl4)