# Tracecat Automation Best Practices

> Use when building, editing, validating, or debugging generic Tracecat automations through Tracecat MCP, including workflow DSL/YAML authoring, table design, unique indexes, run-python Tracecat imports, agent presets, ai.agent or ai.preset_agent workflows, executions, validation, and workflow best practices.

- Skill: `tracecathq/tracecat-automation-best-practices` (Agent Skill, multi-file: 12 files)
- Install (CLI): `npx skillmds@latest add tracecathq/tracecat-automation-best-practices`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tracecathq/tracecat-automation-best-practices/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tracecathq (https://skillmd.com/u/tracecathq)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tracecathq/tracecat-automation-best-practices

---


# Tracecat Automation Best Practices

For Slack-facing automations, use `$tracecat-slackbot-best-practices`. In Tracecat Workspace Chat,
load `$tracecat-workspace-chat` first; its host-specific tool mapping overrides the external MCP
steps below. On-demand references: [graph-shape](references/graph-shape.md),
[expressions](references/expressions-and-conditions.md), [run-python](references/run-python.md),
[tables](references/tables.md), [trigger-inputs](references/trigger-inputs.md),
[case-triggers](references/cases-and-triggers.md), [secrets](references/secrets-and-oauth.md),
[agent-outputs](references/agent-outputs.md), [agent-presets](references/agent-presets.md),
[workflow-editing](references/workflow-editing.md).

## Workflow

For an external Tracecat MCP connection, start from live context rather than guessing:

1. Discover the workspace with `list_workspaces`.
2. Read `tracecat://platform/dsl-reference` when DSL syntax or examples are needed.
3. Use `get_workflow_authoring_context` for action schemas, variables, and secrets.
4. For existing workflows, use `get_workflow`, then targeted `edit_workflow` patches — see
   [workflow-editing](references/workflow-editing.md).
5. Validate with `validate_workflow`, run a draft or published execution when appropriate,
   then inspect failures with `list_workflow_executions` and `get_workflow_execution`.

Other hosts can expose a different tool surface. Follow their adapter rather than mechanically
prefixing these bare MCP names.

Clarify production choices that change the workflow contract: workspace, integration/provider,
secret source, publish/run behavior, destructive side effects, approvals, or acceptance
criteria. If the request is already specific enough, proceed.

## Graph shape

Sketch the shape before authoring and keep it as close to one line as the work allows. Prefer
linear over parallel, and readable over fully connected: **fewer edges is the metric.**

- **`depends_on` is execution order, not data wiring.** An action can read
  `ACTIONS.<ref>.result` from any ancestor, not only a direct parent — validation checks that
  the ref exists in the workflow, not that it is a parent. Add an edge when the action must
  *wait*, never to make a value reachable.
- Default to a single chain. Branch only for genuinely independent work worth running
  concurrently, and rejoin only when a later action needs results from more than one branch.
- **Do not re-assert an upstream condition in `run_if`.** A skip propagates to every task whose
  dependency edges are all skipped, so one gate covers everything below it on a chain. The
  exception is a join, and it is a trap: a task with several parents is not force-skipped
  while one survives, but the default `join_strategy: all` then requires *every* parent to
  have been visited, so one skipped branch makes the join unreachable and **fails the
  workflow**. Use `join_strategy: any`, or repeat the branch's condition on the join so it
  self-skips first.
- One parent is the norm. More than one means a deliberate join — choose `join_strategy` on
  purpose.
- Keep ordinary workflows around 20 nodes or fewer and agentic workflows around 6 nodes or
  fewer. Prefer readable left-to-right or top-to-bottom flows, human-readable refs, and layout
  refs aligned with definition refs.

See [graph-shape](references/graph-shape.md) for a worked over-connected rewrite, join
strategies, error edges, and why scatter is not branching.

## Choosing between an agent and Python

Decide by the *kind* of work, and optimize the whole workflow for maintainability and
readability — **the fewest actions and the least code that does the job.**

- **Agentic work → use an agent** (`ai.agent` / `ai.preset_agent`). Anything needing
  judgment, investigation, routing, enrichment choices, summarization, composing a message,
  or posting to Slack. Give the agent the tools and trust it. Prefer agents, prompts, and
  skills — they carry the creative thinking with far fewer moving parts than a graph of
  deterministic nodes.
- **Deterministic data plumbing → use Python** (`core.script.run_python`). Transforming,
  normalizing, redacting, loading or upserting rows into tables, forwarding data between
  systems. This is exactly what Python is for — it is **not** a smell. One clear `run_python`
  action beats scattering the same work across many nodes.

The smell is using Python for the *agentic* part — for example composing or sending an
agent's Slack message from a script instead of giving the agent the Slack tool.

**Prompt-size guardrail:** push behavior into the prompt up to a reasonable size. When a
single prompt grows too large to stay readable, decompose into **subagents or a skill**
rather than inflating one mega-prompt.

## Agent-First Automation

When the user asks for an agentic workflow, an agent preset, or says to use agents, make the
agent the primary owner of the work. Give it the tools it needs and trust it to investigate,
decide, route, compose messages, and act. Default to a thin shape:
`trigger -> reshape/redact -> upsert event record -> ai.agent` (or `ai.preset_agent`).

Persist the normalized event before the agent runs. When events originate in a SIEM, log
platform, SaaS webhook stream, audit trail, or cloud service, store the normalized payload
and review state in a Tracecat table first, with a deterministic upsert. That gives retries,
duplicate webhooks, and replay a durable source of truth. Point the agent at the saved row,
so the workflow — not the agent — owns the first durable record of the event.

A deterministic node earns its place by being thin, direct, and easy to audit, and by doing
work the agent should not own: redact secrets before the agent sees data, normalize schema,
upsert the event row, enforce hard approval or authorization boundaries, guard expensive
agent runs with a dedupe check, prepare bounded batches, or checkpoint durable state. Keep
judgment, routing, enrichment, message composition, soft approval decisions, and final
notification behavior in the agent. When an approval question itself needs judgment, let the
agent decide or draft the request, and reserve deterministic gates for explicit safety or
authorization boundaries.

Favor one well-instructed agent or reusable preset over many small deterministic nodes. Put
output contracts, Slack style, dedupe rules, tenant boundaries, tool permissions, and
permitted side effects directly in the preset instructions — the agent reads those, not repo
files. When the agent needs a tool, grant it the narrow tool directly rather than wrapping
the same call in a workflow action.

A preset's runtime has more capability than `list_actions` shows: a real shell and file tools,
Python, `curl`, `jq`, and DuckDB. Inspect the preset/runtime context before adding a workflow
helper to compensate for a presumed limitation — see
[agent-presets](references/agent-presets.md).

## Authoring Defaults

- For agentic workflows, push most behavior into the agent prompt/preset. For event-driven
  workflows, a single reshape/redact/upsert action before the agent is usually the right
  deterministic boundary.
- Use `ai.agent` / `ai.preset_agent` for the agentic work; `core.http_request` for
  deterministic API calls; `core.script.run_python` for deterministic data work, once an inline
  expression, `run_if`, or a `core.transform.*` action has been ruled out — see
  [expressions](references/expressions-and-conditions.md) and
  [run-python](references/run-python.md).
- For bulk table writes, prefer one native `core.table.insert_rows` action when rows are already
  shaped (up to 1000 rows per batch). If shaping, chunking, or mixed table/case writes are needed,
  use `core.script.run_python` with imported helpers and bounded batches instead of scattering many
  DB-backed actions.
- Do not give `core.http_request` to an agent unless the user explicitly accepts the broad
  network capability. Put deterministic HTTP in the workflow graph or a tightly scoped subflow.
- Split into subflows only when there is a real orchestration boundary, reusable child
  workflow, separate execution history, approvals, long-running actions, or independent
  checkpointing. Use `core.workflow.execute` and prefer `workflow_alias` over hard-coded IDs.
  Subflow bulk defaults: `loop_strategy: batch`, `batch_size: 32`, `fail_strategy: isolated`,
  `wait_strategy: wait` (use `detach` only when the parent does not need child results).
- Keep run-python and agent outputs small: downstream rows, summary counts, bounded error
  samples.
- Prefer a reusable agent preset over inline `ai.agent`, and the `model` object over the
  deprecated top-level `model_name`/`model_provider` — see
  [agent-presets](references/agent-presets.md).

## Common Mistakes

- Using Python for the *agentic* part — composing or posting an agent's Slack message, or
  making routing/judgment calls in a script. The agent owns message composition, posting (via
  a Slack tool), and judgment; Python owns deterministic data plumbing.
- Over-connecting the graph: an edge from every producer to every consumer, plus a `run_if` on
  every branch repeating a condition an ancestor already enforced. Read from ancestors, keep
  one chain, and gate once (see [graph-shape](references/graph-shape.md)).
- Workflow action names are not MCP tool names. Use MCP tools such as `create_workflow` to
  manage workflows, and action names such as `core.http_request` only inside workflow YAML.
- Inventing `tools.*` action names. Discover actions with `list_actions`, then inspect exact
  schemas with `get_action_context`.
- Using `for_each` for ordinary loop management, or using scatter/gather for data-heavy
  batching, filtering, joins, or table writes. Default to scatter for workflow-level loops;
  add gather only when downstream steps need combined results, and omit it otherwise. Be especially
  careful with >10 scattered DB-backed table/case actions, which can exhaust Postgres connection
  slots. Scatter's optional interval can stagger work, but it does not batch DB writes; use one
  `core.table.insert_rows` action or `core.script.run_python` batching for data-heavy processing
  (see [run-python](references/run-python.md)).
- Using `insert_rows(..., upsert=True)` without a unique index on the key column (see
  [tables](references/tables.md)).
- Granting `core.http_request` to an agent without explicit user approval of broad network
  access.
- Defining an agent `output_type` nothing downstream branches on. Default to none, give the
  agent the tool, and let the side effect be the output; ask the user first (see
  [agent-outputs](references/agent-outputs.md)).

