security-case-management
Create, search, update, and manage SOC cases via the Kibana Cases API. Use when tracking incidents, linking alerts to cases, adding investigation notes, or managing triage output.
What this skill does
# Case Management Manage SOC cases through the Kibana Cases API. All cases are scoped to `securitySolution` — this skill operates exclusively within Elastic Security. Cases appear in Kibana Security and can be assigned to analysts, linked to alerts, and pushed to external incident management systems via connectors. ## Prerequisites Install dependencies before first use from the `skills/security` directory: ```bash cd skills/security && npm install ``` Set the required environment variables (or add them to a `.env` file in the workspace root): ```bash export KIBANA_URL="https://your-cluster.kb.cloud.example.com:443" export KIBANA_API_KEY="your-kibana-api-key" ``` ## When to use - Creating a case after alert triage (classification, IOCs, findings) - Searching for existing cases to correlate related alerts - Adding investigation comments or attaching alerts to an existing case - Updating case status or severity - Listing recent cases for review ## When NOT to use - Do not use this skill for Observability or Elasticsearch cases — it hardcodes `owner: securitySolution` - Do not use for cases outside the Security solution space ## Execution rules - Start executing tools immediately — do not read SKILL.md, browse the workspace, or list files first. - Report tool output faithfully. Copy case IDs, titles, tags, severities, and counts exactly as returned by the API. Do not abbreviate case IDs, truncate titles, invent details, or round numbers. - When the API returns zero results, state that explicitly — do not guess at possible results. - When listing or finding cases, report the **exact total count** from the API response and present each case with its verbatim title, severity, and status. ## Quick start All commands run from the workspace root. All output is JSON. Call the tools directly — do not read the skill file or explore the workspace first. For attach-alert/attach-alerts, `--rule-id` and `--rule-name` are required by the Kibana API (use `--rule-id unknown --rule-name unknown` if unknown). Use `attach-alerts` for batch with automatic rate-limit retry and 2-second spacing between API calls. ## Common multi-step workflows | Task | Tools to call (in order) | | --------------------------- | ---------------------------------------------------------------------------- | | **Create a case** | `case_manager` create (title, description, tags, severity) | | **Find cases for a host** | `case_manager` find --tags "agent_id:\<id\>" or find --search "\<hostname\>" | | **Attach alert to case** | `case_manager` attach-alert (case-id, alert-id, alert-index, rule-id/name) | | **Add investigation notes** | `case_manager` add-comment (case-id, comment text) | | **List recent open cases** | `case_manager` list --status open --per-page \<n\> | | **Update case** | `case_manager` update (case-id, status/severity/tags changes) | **Finding cases for a host:** Use `find --search "<hostname>"` to search by hostname across title, description, and comments. Alternatively use `find --tags "agent_id:<agent_id>"` if the agent ID is known. Always add `--status open` to filter to active cases only. Report the exact `total` count and each case title verbatim from the API response. ```bash # Create (syncAlerts enabled by default; disable with --sync-alerts false) node skills/security/case-management/scripts/case-manager.js create --title "Malicious DLL sideloading on host1" --description "Crypto clipper malware detected via DLL sideloading..." --tags "classification:malicious" "confidence:88" "mitre:T1574.002" --severity critical --yes # Find, list, get node skills/security/case-management/scripts/case-manager.js find --tags "agent_id:550888e5-357d-4bc1-a154-486eb7b4e076" node skills/security/case-management/scripts/case-manager.js find --search "DLL sideloading" --status open node skills/security/case-management/scripts/case-manager.js list --status open --per-page 10 node skills/security/case-management/scripts/case-manager.js get --case-id <case_id> # Attach single alert node skills/security/case-management/scripts/case-manager.js attach-alert --case-id <case_id> --alert-id <alert_doc_id> --alert-index .ds-.alerts-security.alerts-default-2025.12.01-000013 --rule-id <rule_uuid> --rule-name "Malware Detection Alert" # Attach multiple alerts (batch) node skills/security/case-management/scripts/case-manager.js attach-alerts --case-id <case_id> --alert-ids <id1> <id2> <id3> --alert-index .ds-.alerts-security.alerts-default-2026.02.16-000016 --rule-id <rule_uuid> --rule-name "Malware Detection Alert" # Add comment, update (--tags merges with existing tags, does not replace) node skills/security/case-management/scripts/case-manager.js add-comment --case-id <case_id> --comment "Process tree analysis shows..." node skills/security/case-management/scripts/case-manager.js update --case-id <case_id> --status closed --severity low --yes ``` Write operations (`create`, `update`) prompt for confirmation by default. Pass `--yes` to skip the prompt (required when called by an agent). ## Reporting list and find results When reporting results from `list` or `find`: 1. State the exact `total` count from the JSON response (e.g., "There are 12 open cases total"). 2. Present each case as a compact one-line entry: `<title> | <severity> | <case_id_short> | <created_at>`. Copy the **exact title** verbatim from the `title` field — do not rephrase, abbreviate, or summarize. 3. If the user asked for N cases, present exactly N entries (or fewer if fewer exist). Do not add extra columns (alerts count, description, status) unless the user specifically requested them. 4. Do not add information beyond what the API returned. If a field is null or missing, omit it. 5. After presenting the results, stop. Do not add analysis, commentary, or observations about the cases. ## Tag conventions Use structured tags for machine-searchable metadata: | Tag pattern | Example | Purpose | | ------------------------ | ----------------------------------- | ------------------------------------------------ | | `classification:<value>` | `classification:malicious` | Triage classification (benign/unknown/malicious) | | `confidence:<score>` | `confidence:85` | Confidence score 0-100 | | `mitre:<technique>` | `mitre:T1574.002` | MITRE ATT&CK technique IDs | | `agent_id:<id>` | `agent_id:550888e5-...` | Elastic agent ID for correlation | | `rule:<name>` | `rule:Malicious Behavior Detection` | Detection rule name | ## Case severity mapping | Classification | Kibana severity | | ------------------------ | --------------- | | benign (score 0-19) | `low` | | unknown (score 20-60) | `medium` | | malicious (score 61-80) | `high` | | malicious (score 81-100) | `critical` | ## Known limitations ### syncAlerts is security-only The `syncAlerts` setting (enabled by default) synchronizes case status with attached alert statuses. This feature is only available for Security Solution cases. Pass `--sync-alerts false` when creating a case if alert sync is not needed. ### Rate limiting The Kibana API enforces rate limits. When attaching multiple alerts, the `attach-alerts` batch command automatically handles 429 responses with retry. If using `attach-alert` one at a time, space calls ~10 seconds apart. ### `find --search` on Serverless The `find --search` parameter may return 500 errors on Kibana Serverless deployments. Use `find --tags` for filtering instead, or `list` to browse recent cases. ### `find --tags` requi
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.