Workflow #n8n #automation

n8n GTM Workflow Pack

Workflows Free, ungated

Production workflow patterns for GTM teams using n8n to run enrichment, routing, outbound execution, and RevOps handoffs without brittle automations.

This package condenses the original 20 tactical examples into reusable operator workflows that can be adapted across stack variants.

What's inside

FileWhat it does
.agents/skills/SKILL.mdOrchestrator and routing logic
.agents/skills/n8n-clay-integration.mdSecurely syncing data between n8n workflows and Clay tables.
.agents/skills/n8n-self-hosting-guide.mdBest practices for self-hosting n8n for maximum security and scale.
.agents/skills/n8n-lead-ingestion-enrichment.mdIngests leads, deduplicates, enriches, and validates schemas.
.agents/skills/n8n-cold-outreach-orchestrator.mdControls sequence enrollment, template rotation, and send guardrails.
.agents/skills/n8n-crm-conversation-sync.mdSyncs call and email outcomes into CRM with task generation.
.agents/skills/n8n-lead-scoring-routing.mdScores leads and routes to sales, or nurture paths with Slack alerts.
.agents/skills/n8n-workflow-reliability-guardrails.mdApplies retries, error workflows, timeout policy, and concurrency.
.agents/skills/n8n-observability-cost-control.mdTracks execution health, AI-node usage, and operational cost drift.

Prerequisites

  • n8n Cloud or self-hosted n8n instance
  • Credentials for source systems (CRM, enrichment, sequencer, Slack)
  • Environment separation (sandbox, staging, production)
  • Data model for account, contact, score, route, owner

Installation

Cursor, Windsurf, or Generic AI IDE

  1. Clone the repo: git clone https://github.com/forma-norden/n8n-gtm-workflow-pack
  2. Copy the .agents/skills/ directory into your project's .agents/skills/ folder.

Claude Code

  1. Clone the repo: git clone https://github.com/forma-norden/n8n-gtm-workflow-pack
  2. Copy the .agents/skills/ directory into your project's .claude/skills/ folder.

Usage

Read .agents/skills/n8n-lead-scoring-routing.md

Inputs:
- inbound source: website + LinkedIn engagement
- scoring criteria: ICP + recency + engagement
- route policy: high -> AE, medium -> SDR, low -> nurture
- notification destination: Slack #inbound-alerts

Return:
1) node-level workflow plan
2) scoring logic
3) routing outputs
4) failure handling path

Expected output:

  • node-level execution sequence
  • deterministic scoring and route logic
  • explicit error and retry behavior

Running tests

Use the prompt tests in tests/ to validate expected behavior and edge cases before deployment.

  • tests/README.md in n8n-gtm-workflow-pack
  • Load each skill and run the corresponding test prompt
  • Compare output against the validation checklist before rollout

Who this is for

GTM engineers, RevOps leads, VP Sales, and founders at B2B companies with 50 to 500 employees who are building or consolidating their outbound infrastructure and want to reduce tool sprawl through better-engineered GTM systems.

Ecosystem connections

This repository is designed to work as part of the Forma Norden open-source GTM ecosystem.

Works with

RepoRelationshipWhen to use together
clay-claude-code-skill-packUpstream/Paralleln8n orchestrates Clay enrichment workflows via webhooks and API
cold-email-copy-playbookDownstreamn8n automates sequence enrollment after copy is approved
cold-email-deliverability-playbookParallelDeliverability monitoring integrated into n8n alerting
buying-window-signal-workflowUpstreamSignal events trigger n8n workflows for processing
signal-based-list-building-workflowUpstreamList building signals feed into n8n for enrichment routing
linkedin-claude-code-workflowParallelLinkedIn engagement data flows through n8n for scoring

Suggested skill chains

  1. Automated enrichment pipeline: Signal webhook > n8n-lead-ingestion-enrichment > n8n-clay-integration (enrich via Clay API) > n8n-lead-scoring-routing > n8n-crm-conversation-sync
  2. Reliable outbound automation: n8n-cold-outreach-orchestrator (sequence) + n8n-workflow-reliability-guardrails (error handling) + n8n-observability-cost-control (monitoring)