workflow-automation

Installation
SKILL.md

Resources

File When to use
resources/workflow-json-reference.md Body shape for create/update — top-level fields, enrollmentCriteria, common action types, full-PUT pitfall
resources/example-contact-flow.json Minimal valid CONTACT_FLOW body for hubspot workflows create --file

Source of truth

hubspot workflows --help lists five subcommands: list, get, create, update, delete. There is no search — finding by name is list | jq. For JSONL piping, pagination, and destructive dry-run/digest/confirm patterns, this skill builds on bulk-operations/SKILL.md — re-read that first.

1. List + find by name

hubspot workflows list                       # JSONL: id, name, isEnabled, type, objectTypeId, revisionId
hubspot workflows list --format table        # for human scanning

# Find by name — case-insensitive substring
hubspot workflows list | jq -c 'select(.name | test("Welcome"; "i"))'
Related skills
Installs
55
First Seen
7 days ago
workflow-automation — hubspot/agent-cli-skills