Skip to content
Aakash GuptaAakash Gupta

Master 80% of n8n in 59 mins

Pawel Huryn has built more N8N workflows than almost anyone. He walks through building real workflows from scratch - from competitor monitoring to AI agents. Here's everything you need to master the most powerful workflow automation tool. Summary: https://www.news.aakashg.com/p/pawel-huryn-podcast Transcript: https://www.aakashg.com/mastering-n8n-how-to-build-powerful-ai-workflow-automations/ ---- Timestamps 0:00 - Intro 1:55 - Why n8n Matters 3:14 - Building Competitor Monitoring Workflow 8:44 - Cost & Free Version Benefits 12:09 - Ads 13:53 - Workflow Automation Deep Dive 19:57 - Traditional Workflow vs AI Agent 23:13 - Building an AI Agent 31:50 - Ads 34:11 - Agent Workflow Results 40:36 - n8n Best Practices 45:35 - Multi-Agent Research System 49:04 - PM Use Cases & Automation 51:12 - Free Version Hacks 57:57 - Outro ---- 🏆 Thanks to our sponsors: 1. Amplitude: The market-leader in product analytics - https://amplitude.com/session-replay?utm_campaign=session-replay-launch-2025&utm_source=linkedin&utm_medium=organic-social&utm_content=productgrowthpodcast 2. Vanta: Automate compliance across 35+ frameworks - http://vanta.com/aakash 3. Testkube: Leading test orchestration platform - http://testkube.io/ 4. Kameleoon: AI experimentation platform - http://www.kameleoon.com/ 5. Pendo: the #1 Software Experience Management Platform - http://www.pendo.com/aakash ---- Key Takeaways 1. n8n combines traditional workflow automation AND AI agent building in one platform - making it more powerful than Zapier or Make for complex automation needs. 2. Real use cases span from simple business workflows to chatbots, automatic competitor monitoring, multi-agent research systems, and inbox workers that take actions based on emails. Sky is the limit. 3. Pawel's competitor monitoring workflow costs $1-2/week using the FREE version of N8N. Just needs Perplexity API ($1-2 for hundreds of calls) and OpenAI credits. Enterprise tools charge $500+/month. 4. Pin your data during development. N8N caches API responses so you don't burn credits while testing workflows. Click the pin icon and N8N uses cached data instead of making new API calls. 5. n8n automatically loops through items - no need to write for-loops or while-loops. When you connect a node with 6 items, N8N repeats the action 6 times automatically. 6. Compress context before sending to LLMs. Pavel cuts 70% of tokens by extracting only summary content and citation URLs from Perplexity results, ignoring irrelevant snippets and metadata. 7. Use ChatGPT to write n8n code snippets. Pavel never writes code blocks himself - just takes a screenshot of the data and asks GPT "how do I compress this information?" 8. Traditional workflows are more efficient (saves tokens, very reliable) for predictable tasks. AI agents are more flexible but use more tokens and can make mistakes. Use workflows when you know the steps. 9. Set GPT reasoning effort to "low" for simple tasks. When you just need formatting or summarization (not complex thinking), low reasoning effort saves tokens significantly. 10. Best practices: Set dedicated error probes to catch errors before they break workflows. Use max iterations to prevent infinite loops. Set retry on fail to 3x attempts. Pin data during development. ---- 👨‍💻 Where to find Pavel Huryn: LinkedIn: https://www.linkedin.com/in/pavelhuryn/ X: https://twitter.com/pavolhuryn Company: https://www.n8n.io 👨‍💻 Where to find Aakash: Twitter: https://www.x.com/aakashg0 LinkedIn: https://www.linkedin.com/in/aagupta/ Newsletter: https://www.news.aakashg.com #n8n #ProductManagement --- About Product Growth: The world's largest podcast focused solely on product + growth, with over 187K listeners. Hosted by Aakash Gupta, who spent 16 years in PM, rising to VP of product, this 2x/week show covers product and growth topics in depth. Subscribe and turn on notifications to get more videos like this.

Pawel HurynguestAakash Guptahost
Jan 6, 202658mWatch on YouTube ↗

CHAPTERS

  1. 0:00 – 1:55

    Why n8n stands out: workflows + AI agents in one tool

    Aakash introduces Pawel Huryn and frames n8n as a uniquely powerful automation platform that supports both classic workflow automation and modern AI-agent systems. Pawel sets expectations: you can automate a huge range of business tasks without heavy coding.

  2. 1:55 – 3:14

    Competitor monitoring workflow: trigger types and pulling competitors from Google Sheets

    They begin building a real workflow to send a weekly competitor update email. Pawel explains triggers (manual, schedule, webhook) and shows how to read competitor names from a Google Sheet.

  3. 3:14 – 8:44

    Development speed hack: pinning node data to avoid repeated API calls

    A key n8n tactic is introduced: pin output data so you can iterate on downstream steps without re-querying external services. This reduces cost and speeds up workflow development.

  4. 8:44 – 12:09

    Perplexity search per competitor: prompt design and low-cost API usage

    The workflow calls Perplexity for each competitor to gather recent market intel. Pawel demonstrates variable injection from each sheet row and explains cost considerations (API key + pay-per-use).

  5. 12:09 – 13:53

    Compressing context with a Code node to cut tokens and improve reliability

    Perplexity returns a lot of extra metadata that would waste tokens if forwarded to an LLM. Pawel uses a Code node to keep only the essentials (content + citations), describing this as “context compression.”

  6. 13:53 – 19:57

    No manual loops needed: n8n’s item-based execution model

    Pawel clarifies a core n8n concept: nodes automatically run once per input item, so you often don’t build explicit loops. They then prepare to unify multiple competitor outputs into a single object for reporting.

  7. 19:57 – 23:13

    Generate the final report with OpenAI: aggregation, formatting rules, and JSON conversion

    They aggregate the per-competitor results into one payload and prompt OpenAI to produce a clean competitor monitoring report. Pawel highlights prompt structure, link formatting rules, and the crucial JSON-to-string conversion for structured data.

  8. 23:13 – 31:50

    Markdown-to-HTML conversion and sending the Gmail report end-to-end

    To avoid spending tokens generating HTML, they generate Markdown and then convert it to HTML using a dedicated node. The final step sends the report via Gmail as an HTML email, validating the workflow end-to-end.

  9. 31:50 – 34:11

    Workflow vs agentic workflow: rebuilding with an AI Agent node (trade-offs)

    They rebuild the same competitor workflow using an AI Agent node with tools (Google Sheets + Perplexity). This increases flexibility but costs more tokens and time; logs show tool calls and parallelism behavior.

  10. 34:11 – 40:36

    “True agent” version: minimal instructions, full tool autonomy, big token cost

    They push to a higher-agency approach: give the agent the goal and the tools (including Gmail), and let it decide the steps and formatting. Output quality improves, but token usage explodes compared to earlier designs.

  11. 40:36 – 45:35

    n8n best practices for production: error workflows, retries, tool descriptions, max iterations

    Pawel shares operational practices for making automations reliable in production. Emphasis is on handling failures, avoiding premature agent stops, and improving tool-call success with better descriptions.

  12. 45:35 – 49:04

    Multi-agent research system: orchestrator + sub-agents + report generation pipeline

    They showcase a complex multi-agent research architecture inspired by Anthropic’s patterns. A lead agent decomposes tasks, sub-agents research in parallel (search + scrape + compression), and a copywriter agent produces a final report stored in Google Drive.

  13. 49:04 – 51:12

    PM automation use cases: inbox triage, PRDs, Slack/Drive search, data imports

    They translate capabilities into everyday product and ops work. Examples include email summarization/drafting, competitor research, PRD generation with internal context, and routine data syncing for products.

  14. 51:12 – 57:57

    Free plan hacks & self-hosting: history retention, global variables via tables, workflow version backups

    Pawel explains practical ways to overcome free-tier limitations: short execution history, lack of global variables, and limited version history. He recommends self-hosting for low cost and demonstrates using n8n to back up n8n workflows to Google Drive.

  15. 57:57 – 58:53

    Learning AIPM skills with n8n: prompting, context engineering, RAG, evals, and intuition

    They close by positioning n8n as a practical learning environment for AI product skills. By building real automations, you internalize prompting, context management, RAG building blocks, and evaluation/guardrail concepts—without heavy coding.

Get more out of YouTube videos.

High quality summaries for YouTube videos. Accurate transcripts to search & find moments. Powered by ChatGPT & Claude AI.

Add to Chrome