Initialize Cases-to-Slack Integration
Set up automated Slack notifications for LimaCharlie case management events. This skill creates all required components in a single org: a Python playbook, D&R trigger rules, an API key, and secrets for the Slack token and channel.
LimaCharlie Integration
Prerequisites: Run
/init-lcto initialize LimaCharlie context.
LimaCharlie CLI Access
All LimaCharlie operations use the limacharlie CLI directly:
limacharlie <noun> <verb> --oid <oid> --output yaml [flags]
For command help and discovery: limacharlie <command> --ai-help
Critical Rules
| Rule | Wrong | Right |
|---|---|---|
| CLI Access | Call MCP tools or spawn api-executor | Use Bash("limacharlie ...") directly |
| Output Format | --output json |
--output yaml (more token-efficient) |
| Filter Output | Pipe to jq/yq | Use --filter JMESPATH to select fields |
| OID | Use org name | Use UUID (call limacharlie org list if needed) |
What Gets Created
| Component | Hive | Key | Purpose |
|---|---|---|---|
| Playbook | playbook |
cases-to-slack |
Python code that posts rich Slack messages |
| D&R Rule | dr-general |
cases-to-slack-on-created |
Triggers playbook on case creation |
| D&R Rule | dr-general |
cases-to-slack-on-resolved |
Triggers playbook on case resolution |
| D&R Rule | dr-general |
cases-to-slack-on-severity-upgraded |
Triggers playbook on severity upgrade |
| D&R Rule | dr-general |
cases-to-slack-on-closed |
Triggers playbook on case closure |
| Secret | secret |
slack-api-token |
Slack Bot OAuth token |
| Secret | secret |
slack-notification-channel |
Slack channel ID for notifications |
| Secret | secret |
cases-to-slack-api-key |
LC API key for playbook SDK auth |
| API Key | — | cases-to-slack |
Scoped key with secret.get permission |
Procedure
Step 1: Resolve the Organization
Parse the org name from the skill argument. Resolve it to an OID:
limacharlie org list --output yaml
Find the org matching the name provided by the user and extract its oid UUID. If not found, ask the user which org to use.
Step 2: Verify Prerequisites
Check that the required extensions are subscribed:
limacharlie extension list --oid <oid> --output yaml
Look for ext-cases and ext-playbook in the output. If either is missing, subscribe:
limacharlie extension subscribe --name ext-cases --oid <oid>
limacharlie extension subscribe --name ext-playbook --oid <oid>
Step 3: Collect Slack Configuration from User
Ask the user for TWO values:
- Slack Bot Token — starts with
xoxb-. The bot must have thechat:writescope and be invited to the target channel. - Slack Channel ID — the channel ID (e.g.,
C0123456789), NOT the channel name. The user can find this by right-clicking the channel in Slack → "View channel details" → the ID is at the bottom.
Step 4: Store Slack Secrets
Store the Slack bot token:
echo '{"data": {"secret": "<SLACK_BOT_TOKEN>"}, "usr_mtd": {"enabled": true}}' \
| limacharlie hive set --hive-name secret --key slack-api-token --oid <oid>
Store the Slack channel ID:
echo '{"data": {"secret": "<SLACK_CHANNEL_ID>"}, "usr_mtd": {"enabled": true}}' \
| limacharlie hive set --hive-name secret --key slack-notification-channel --oid <oid>
Step 5: Create the Playbook API Key
Create an LC API key with minimal permissions for the playbook to read secrets, and atomically store its value as a secret with --store-secret. The secret name must be cases-to-slack-api-key (what the playbook reads); --store-secret creates it enabled:
limacharlie api-key create \
--name "cases-to-slack" \
--permissions "secret.get,investigation.get" \
--store-secret cases-to-slack-api-key \
--oid <oid> \
--output yaml
--store-secret writes the key value to hive://secret/cases-to-slack-api-key created enabled (updated via etag if it already exists), so the value never has to be captured manually.
Fallback (manual two-step): if --store-secret is unavailable, capture the api_key value from the output and store it as a secret with enabled: true:
echo '{"data": {"secret": "<API_KEY_VALUE>"}, "usr_mtd": {"enabled": true}}' \
| limacharlie hive set --hive-name secret --key cases-to-slack-api-key --oid <oid>
Step 6: Create the Playbook
Write the playbook Python code to a temp file, then push it as a hive record.
The playbook code:
cat > /tmp/cases-to-slack.py << 'PYEOF'
import json
import urllib.request
from limacharlie import Hive
_CASES_API = "https://cases.limacharlie.io"
_WEB_UI = "https://app.limacharlie.io"
_SEVERITY_COLORS = {
"critical": "#E01E5A",
"high": "#E87722",
"medium": "#ECB22E",
"low": "#2EB67D",
"info": "#36C5F0",
}
_SEVERITY_EMOJIS = {
"critical": ":rotating_light:",
"high": ":fire:",
"medium": ":warning:",
"low": ":large_blue_circle:",
"info": ":information_source:",
}
def _api_get(sdk, path):
"""GET request to the ext-cases REST API using the SDK auth."""
try:
oid = sdk._oid
return sdk._apiCall(
path.lstrip('/'),
'GET',
altRoot=_CASES_API,
queryParams={"oid": oid}
)
except Exception:
return None
def _fetch_case(sdk, case_number):
"""Fetch full case details from ext-cases API."""
data = _api_get(sdk, f"/api/v1/cases/{case_number}")
return data.get("case") if data else None
def _fetch_detections(sdk, case_number):
"""Fetch detections linked to the case."""
data = _api_get(sdk, f"/api/v1/cases/{case_number}/detections")
return data.get("detections", []) if data else []
def _format_duration(seconds):
"""Format seconds into a human-readable duration."""
if not seconds:
return None
if seconds < 60:
return f"{seconds}s"
if seconds < 3600:
return f"{seconds // 60}m"
hours = seconds // 3600
mins = (seconds % 3600) // 60
return f"{hours}h {mins}m" if mins else f"{hours}h"
def playbook(sdk, data):
slack_token = Hive(sdk, "secret").get("slack-api-token").data["secret"]
slack_channel = Hive(sdk, "secret").get("slack-notification-channel").data["secret"]
# ext-playbook nests the D&R respond data under a "data" key.
data = data.get("data", data)
action = data.get("action", "unknown")
case_number = data.get("case_number", "?")
case_id = data.get("case_id", "")
by = data.get("by", "system")
oid = sdk._oid
# Fetch full case for richer context (may fail; event data is primary).
case = _fetch_case(sdk, case_number)
# Determine effective severity.
severity = data.get("severity") or (case or {}).get("severity") or "info"
if action == "case_severity_upgraded":
severity = data.get("to_severity") or severity
sev_color = _SEVERITY_COLORS.get(severity, "#808080")
sev_emoji = _SEVERITY_EMOJIS.get(severity, "")
case_link = f"{_WEB_UI}/cases/{oid}/{case_number}"
# Action-specific configuration.
configs = {
"case_created": {
"color": sev_color,
"title": f":new: New Case #{case_number}",
},
"case_resolved": {
"color": "#2EB67D",
"title": f":white_check_mark: Case #{case_number} Resolved",
},
"case_severity_upgraded": {
"color": sev_color,
"title": f":chart_with_upwards_trend: Case #{case_number} Escalated",
},
"case_closed": {
"color": "#808080",
"title": f":lock: Case #{case_number} Closed",
},
}
cfg = configs.get(action, {
"color": "#808080",
"title": f"Case #{case_number} Updated",
})
blocks = []
# Title.
blocks.append({
"type": "section",
"text": {"type": "mrkdwn", "text": f"*{cfg['title']}*"},
})
# Main fields.
fields = [
{"type": "mrkdwn", "text": f"*Severity:* {sev_emoji} {severity.capitalize()}"},
{"type": "mrkdwn", "text": f"*By:* {by}"},
]
if action == "case_created":
detection_cat = data.get("detection_cat")
if detection_cat:
fields.append({"type": "mrkdwn", "text": f"*Detection:* `{detection_cat}`"})
elif action == "case_severity_upgraded":
from_sev = data.get("from_severity", "?")
to_sev = data.get("to_severity", "?")
f_emoji = _SEVERITY_EMOJIS.get(from_sev, "")
t_emoji = _SEVERITY_EMOJIS.get(to_sev, "")
fields.append({"type": "mrkdwn", "text": f"*Change:* {f_emoji} {from_sev} \u2192 {t_emoji} {to_sev}"})
reason = data.get("reason")
if reason:
fields.append({"type": "mrkdwn", "text": f"*Reason:* {reason}"})
elif action in ("case_resolved", "case_closed"):
from_s = data.get("from_status")
to_s = data.get("to_status")
if from_s and to_s:
fields.append({"type": "mrkdwn", "text": f"*Status:* {from_s} \u2192 {to_s}"})
# Show classification verdict if available.
if case:
classification = case.get("classification")
if classification and classification != "pending":
cls_emoji = ":white_check_mark:" if classification == "true_positive" else ":x:"
fields.append({"type": "mrkdwn", "text": f"*Verdict:* {cls_emoji} {classification.replace('_', ' ').title()}"})
blocks.append({"type": "section", "fields": fields})
# Summary or conclusion: prefer event data, fall back to API.
summary_text = None
if action == "case_closed":
summary_text = data.get("summary") or (case or {}).get("conclusion") or (case or {}).get("summary")
else:
summary_text = data.get("summary") or (case or {}).get("summary")
if summary_text:
if len(summary_text) > 300:
summary_text = summary_text[:300] + "\u2026"
blocks.append({
"type": "section",
"text": {"type": "mrkdwn", "text": f">>> {summary_text}"},
})
# Context line: detection count, tags, SLA.
if case:
ctx_parts = []
det_count = case.get("detection_count") or 0
if det_count:
ctx_parts.append(f":bar_chart: {det_count} detection{'s' if det_count != 1 else ''}")
tags = case.get("tags") or []
if tags:
ctx_parts.append(":label: " + " ".join(f"`{t}`" for t in tags[:5]))
if action in ("case_resolved", "case_closed"):
ttr = _format_duration(case.get("ttr_seconds"))
if ttr:
ctx_parts.append(f":stopwatch: Resolved in {ttr}")
if ctx_parts:
blocks.append({
"type": "context",
"elements": [{"type": "mrkdwn", "text": " \u00b7 ".join(ctx_parts)}],
})
# Affected hosts for new or escalated cases.
if action in ("case_created", "case_severity_upgraded"):
detections = _fetch_detections(sdk, case_number)
if detections:
hostnames = sorted(set(d.get("hostname") for d in detections if d.get("hostname")))
if hostnames:
display = ", ".join(f"`{h}`" for h in hostnames[:5])
if len(hostnames) > 5:
display += f" +{len(hostnames) - 5} more"
blocks.append({
"type": "context",
"elements": [{"type": "mrkdwn", "text": f":computer: *Hosts:* {display}"}],
})
# View Case button.
button = {
"type": "button",
"text": {"type": "plain_text", "text": "View Case", "emoji": True},
"url": case_link,
}
if severity in ("critical", "high"):
button["style"] = "danger"
blocks.append({"type": "actions", "elements": [button]})
# Build payload.
attachment = {"color": cfg["color"], "blocks": blocks}
payload = {
"channel": slack_channel,
"attachments": [attachment],
"text": f"{cfg['title']} \u2014 {severity.capitalize()} severity",
}
req = urllib.request.Request(
"https://slack.com/api/chat.postMessage",
data=json.dumps(payload).encode("utf-8"),
headers={
"Content-Type": "application/json; charset=utf-8",
"Authorization": f"Bearer {slack_token}",
},
method="POST",
)
try:
with urllib.request.urlopen(req) as resp:
result = json.loads(resp.read().decode("utf-8"))
if not result.get("ok"):
return {"error": f"Slack API error: {result.get('error', 'unknown')}"}
except Exception as e:
return {"error": str(e)}
return {"data": {"posted": True, "case_number": case_number, "action": action}}
PYEOF
Push the playbook to the hive:
python3 -c "
import json, sys
with open('/tmp/cases-to-slack.py') as f:
code = f.read()
record = {'data': {'python': code}, 'usr_mtd': {'enabled': True, 'tags': ['cases-to-slack']}}
json.dump(record, sys.stdout)
" | limacharlie hive set --hive-name playbook --key cases-to-slack --oid <oid>
Step 7: Create the D&R Rules
Create one D&R rule per case event type. Each rule triggers the same playbook but passes
event-type-specific metadata fields using Go template syntax ({{ .event.FIELD }}).
IMPORTANT: Values in the extension request data block must use {{ .event.FIELD }}
template syntax to reference event fields. Bare strings like event.case_id are passed
as literals, NOT resolved from the event.
IMPORTANT: The event: routing filter in D&R detect blocks does NOT gate extension
events reliably. All general rules with a matching op will fire for every extension event
regardless of the event: value. To ensure each rule fires only for its intended action,
use op: is on event/action as the primary detection filter.
ext-cases Audit Event Structure
Events from ext-cases have these top-level fields: action, case_id, case_number,
event_id, oid, by, ts, and metadata (event-type-specific).
Metadata by event type:
- case_created:
severity,detection_cat,detection_priority,summary - case_resolved / case_closed:
from(old status),to(new status);case_closedalso includessummarywhen set - case_severity_upgraded:
from(old severity),to(new severity),reason
IMPORTANT: Only template metadata fields that are always present. Optional fields
(like hostname) cause Go template errors when absent, which silently prevents
the extension request from being sent. The playbook fetches optional data
directly from the ext-cases REST API instead.
case_created
python3 -c "
import json, sys
rule = {
'data': {
'detect': {
'event': 'case_created',
'op': 'is',
'path': 'event/action',
'value': 'case_created'
},
'respond': [{
'action': 'extension request',
'extension name': 'ext-playbook',
'extension action': 'run_playbook',
'extension request': {
'name': '{{ \"cases-to-slack\" }}',
'credentials': '{{ \"hive://secret/cases-to-slack-api-key\" }}',
'data': {
'action': '{{ \"case_created\" }}',
'case_id': '{{ .event.case_id }}',
'case_number': '{{ .event.case_number }}',
'by': '{{ .event.by }}',
'severity': '{{ .event.metadata.severity }}',
'detection_cat': '{{ .event.metadata.detection_cat }}',
'summary': '{{ .event.metadata.summary }}'
}
},
'suppression': {
'is_global': True,
'keys': ['cases-to-slack-created-{{ .event.case_id }}'],
'max_count': 1,
'period': '5m'
}
}]
},
'usr_mtd': {'enabled': True, 'tags': ['cases-to-slack']}
}
json.dump(rule, sys.stdout)
" | limacharlie hive set --hive-name dr-general --key cases-to-slack-on-created --oid <oid>
case_resolved
python3 -c "
import json, sys
rule = {
'data': {
'detect': {
'event': 'case_resolved',
'op': 'is',
'path': 'event/action',
'value': 'case_resolved'
},
'respond': [{
'action': 'extension request',
'extension name': 'ext-playbook',
'extension action': 'run_playbook',
'extension request': {
'name': '{{ \"cases-to-slack\" }}',
'credentials': '{{ \"hive://secret/cases-to-slack-api-key\" }}',
'data': {
'action': '{{ \"case_resolved\" }}',
'case_id': '{{ .event.case_id }}',
'case_number': '{{ .event.case_number }}',
'by': '{{ .event.by }}',
'from_status': '{{ .event.metadata.from }}',
'to_status': '{{ .event.metadata.to }}'
}
},
'suppression': {
'is_global': True,
'keys': ['cases-to-slack-resolved-{{ .event.case_id }}'],
'max_count': 1,
'period': '5m'
}
}]
},
'usr_mtd': {'enabled': True, 'tags': ['cases-to-slack']}
}
json.dump(rule, sys.stdout)
" | limacharlie hive set --hive-name dr-general --key cases-to-slack-on-resolved --oid <oid>
case_severity_upgraded
python3 -c "
import json, sys
rule = {
'data': {
'detect': {
'event': 'case_severity_upgraded',
'op': 'is',
'path': 'event/action',
'value': 'case_severity_upgraded'
},
'respond': [{
'action': 'extension request',
'extension name': 'ext-playbook',
'extension action': 'run_playbook',
'extension request': {
'name': '{{ \"cases-to-slack\" }}',
'credentials': '{{ \"hive://secret/cases-to-slack-api-key\" }}',
'data': {
'action': '{{ \"case_severity_upgraded\" }}',
'case_id': '{{ .event.case_id }}',
'case_number': '{{ .event.case_number }}',
'by': '{{ .event.by }}',
'from_severity': '{{ .event.metadata.from }}',
'to_severity': '{{ .event.metadata.to }}',
'reason': '{{ .event.metadata.reason }}'
}
},
'suppression': {
'is_global': True,
'keys': ['cases-to-slack-severity_upgraded-{{ .event.case_id }}'],
'max_count': 1,
'period': '5m'
}
}]
},
'usr_mtd': {'enabled': True, 'tags': ['cases-to-slack']}
}
json.dump(rule, sys.stdout)
" | limacharlie hive set --hive-name dr-general --key cases-to-slack-on-severity-upgraded --oid <oid>
case_closed
python3 -c "
import json, sys
rule = {
'data': {
'detect': {
'event': 'case_closed',
'op': 'is',
'path': 'event/action',
'value': 'case_closed'
},
'respond': [{
'action': 'extension request',
'extension name': 'ext-playbook',
'extension action': 'run_playbook',
'extension request': {
'name': '{{ \"cases-to-slack\" }}',
'credentials': '{{ \"hive://secret/cases-to-slack-api-key\" }}',
'data': {
'action': '{{ \"case_closed\" }}',
'case_id': '{{ .event.case_id }}',
'case_number': '{{ .event.case_number }}',
'by': '{{ .event.by }}',
'from_status': '{{ .event.metadata.from }}',
'to_status': '{{ .event.metadata.to }}'
}
},
'suppression': {
'is_global': True,
'keys': ['cases-to-slack-closed-{{ .event.case_id }}'],
'max_count': 1,
'period': '5m'
}
}]
},
'usr_mtd': {'enabled': True, 'tags': ['cases-to-slack']}
}
json.dump(rule, sys.stdout)
" | limacharlie hive set --hive-name dr-general --key cases-to-slack-on-closed --oid <oid>
Step 8: Verify Installation
# Verify playbook exists
limacharlie hive get --hive-name playbook --key cases-to-slack --oid <oid> --output yaml | head -5
# Verify D&R rules exist
limacharlie hive list --hive-name dr-general --oid <oid> --output yaml | grep cases-to-slack
# Verify secrets exist
limacharlie secret list --oid <oid> --output yaml | grep -E "slack-api-token|slack-notification-channel|cases-to-slack-api-key"
# Check for org errors
limacharlie org errors --oid <oid> --output yaml
Step 9: Report to User
Summarize what was created:
- Playbook:
cases-to-slackin theplaybookhive - 4 D&R rules triggering the playbook for: case_created, case_resolved, case_severity_upgraded, case_closed
- 3 secrets:
slack-api-token,slack-notification-channel,cases-to-slack-api-key - 1 API key:
cases-to-slackwithsecret.get,investigation.getpermissions
Remind the user:
- The Slack bot must be invited to the channel for messages to post.
- D&R rules are tagged
cases-to-slack— they can disable individual rules to reduce noise. - The
cases-to-slack-on-createdrule fires for ALL new cases. If this is too noisy, suggest disabling it or adding a severity filter.
Removal
To remove all components:
# Remove D&R rules
for key in cases-to-slack-on-created cases-to-slack-on-resolved cases-to-slack-on-severity-upgraded cases-to-slack-on-closed; do
limacharlie hive delete --hive-name dr-general --key $key --confirm --oid <oid>
done
# Remove playbook
limacharlie hive delete --hive-name playbook --key cases-to-slack --confirm --oid <oid>
# Remove secrets (optional — user may want to keep Slack token for other uses)
limacharlie secret delete --key cases-to-slack-api-key --confirm --oid <oid>
limacharlie secret delete --key slack-api-token --confirm --oid <oid>
limacharlie secret delete --key slack-notification-channel --confirm --oid <oid>
# Remove API key
limacharlie api-key list --oid <oid> --output yaml # find the hash for cases-to-slack
limacharlie api-key delete --key-hash <hash> --confirm --oid <oid>