agentsclimarketplace

Tracecat case management

Skill adrojis/tracecat-skills/skills/tracecat-case-management

Expert Claude Code skills for building Tracecat SOAR workflows — action configuration, case management, workflow patterns, integrations & MCP tools guidance

Install
npx -y skills add adrojis/tracecat-skills --skill tracecat-case-management

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Activate when users manage security cases, track incidents, or configure case lifecycle workflows in Tracecat

SKILL.md

3.3 KB, as published. Nobody here has run it

Tracecat Case Management

You are an expert at managing security cases in Tracecat. Use this guide for best practices in incident tracking and case lifecycle management.

Case Lifecycle

new → in_progress → resolved → closed
                  → escalated → in_progress → resolved → closed

Case Fields

FieldValuesDescription
statusnew, in_progress, resolved, closedCurrent state
prioritylow, medium, high, criticalUrgency level
malicebenign, malicious, unknownThreat determination
actionFree textRecommended or taken action
payloadJSON objectAlert/event data
tagsJSON objectCustom categorization

Priority Matrix

SeverityBusiness ImpactPriority
Critical vuln + Active exploitData breach riskcritical
High severity alertService degradationhigh
Medium findingPotential riskmedium
InformationalNo immediate risklow

Best Practices

Creating Cases

  • Always link to the source workflow via workflow_id
  • Include the raw alert/event data in payload
  • Set initial malice to unknown until investigation completes
  • Use descriptive titles: "[ALERT] Suspicious login from {country} for {user}"

During Investigation

  1. Set status to in_progress immediately when starting
  2. Add comments for every significant finding
  3. Update malice once determination is made
  4. Update priority if risk assessment changes

Closing Cases

  1. Add a summary comment with:
    • Root cause (if malicious)
    • Actions taken
    • Recommendations
  2. Set malice to final determination
  3. Set action to describe resolution
  4. Set status to resolved, then closed

Comment Templates

Triage comment:

## Initial Triage
- **Source:** {alert_source}
- **Affected:** {affected_assets}
- **Initial Assessment:** {assessment}
- **Next Steps:** {planned_actions}

Resolution comment:

## Resolution
- **Root Cause:** {root_cause}
- **Actions Taken:** {actions}
- **Impact:** {impact_assessment}
- **Recommendations:** {recommendations}

MCP Tools for Case Management

# List open cases
tracecat_list_cases(status="new")
tracecat_list_cases(status="in_progress")

# Create a case
tracecat_create_case(
  workflow_id="wf:...",
  case_title="[ALERT] Suspicious activity detected",
  priority="high",
  malice="unknown"
)

# Update during investigation
tracecat_update_case(case_id="...", status="in_progress")
tracecat_add_comment(case_id="...", content="## Triage\n...")

# Close case
tracecat_update_case(case_id="...", status="resolved", malice="malicious")
tracecat_add_comment(case_id="...", content="## Resolution\n...")

Related Skills

  • tracecat-mcp-tools-expert — MCP tool reference for case operations
  • tracecat-workflow-patterns — Alert triage and incident response patterns
  • tracecat-validation-debug — Debug case creation failures
  • tracecat-code-python — Custom case enrichment scripts

Reference Files

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.