Skip to main content

Visualize job-market skill gaps from Himalayas jobs with NVIDIA NIM

Workflow preview

Workflow preview
100%
Visualize job-market skill gaps from Himalayas jobs with NVIDIA NIM preview
Open on n8n.io

1. Workflow Overview

Quick overview Turn a job search into a measured system. This workflow scrapes live job posts, uses an LLM to extract the skills each one is asking for, compares that demand against the skills you ...

Best for

  • Market Research automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.manualtrigger, n8n-nodes-base.code, n8n-nodes-base.if, n8n-nodes-base.httprequest, n8n-nodes-base.respondtowebhook

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Janos Gyorgy.

Original n8n.io source

1.1 Workflow description

Title
Visualize job-market skill gaps from Himalayas jobs with NVIDIA NIM
Workflow name
Visualize job-market skill gaps from Himalayas jobs with NVIDIA NIM

Quick overview

Turn a job search into a measured system. This workflow scrapes live job posts, uses an LLM to extract the skills each one is asking for, compares that demand against the skills you list, and serves the result as a live radar page.

How it works

  1. 🌐 Open the webhook URL → the run starts.
  2. ♻️ Cache gate — if nothing changed since last time, the saved page is returned instantly. Otherwise it recomputes.
  3. 📥Fetch jobs from a free, no-auth remote-jobs feed (Himalayas) — a wide recent window, every field, no company list.
  4. 🎯 Filter & rank by your keywords (title hits weighted over description), newest as tie-break, capped to keep the LLM call managable.
  5. 🤖 Extract (LLM) — Sends each job posting to an OpenAI-compatible chat completions API to extract seniority and a structured list of must-have vs nice-to-have skills.
  6. 🧠 Score — each demanded skill is "have" if it appears in your skills text, else "gap"; the score is demand-weighted coverage.
  7. 📊 Render & serve — the radar as a self-contained HTML page straight back to your browser.

Setup

  1. Add an HTTP Header Auth credential for your OpenAI-compatible LLM endpoint (for example Authorization: Bearer <API_KEY>) and set the LLM URL/model values in the configuration.
  2. Edit the “Desired job config” values (keywords, maxJobs, feedPages/feedPerPage, llmUrl, llmModel) to fit your role and usage limits.
  3. Paste your resume/tools/skills as free text in “Your Skills” so the workflow can mark skills as covered vs gaps.
  4. Activate the workflow, copy the webhook Production URL, open it in a browser, and use ?refresh=1 when you want to bypass the cache.

Additional info

🎛️ Good to know

  • Refreshes are stable — the page only recomputes when you edit the keywords or skills, when the daily cache expires, or when you add ?refresh=1 to the URL.
  • Job-neutral — keywords that literally appear in postings (engineer, python, sales, nurse) work best; very abstract terms fall back to the recent feed.
  • Cost is bounded — one LLM call per job, capped by maxJobs (default 25), and only on a cache miss.
  • Want a public, always-on page instead of on-demand? Route the rendered HTML to static hosting (GitHub Pages, etc.) after Render.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 7 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 8 - Sticky Note7

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 9 - Webhook for Radar View

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2.1

Block 10 - Trigger Manually

Type / Role
n8n-nodes-base.manualTrigger - manualTrigger
Config choices
Version 1

Block 11 - Manage Cache Stability

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 12 - Check Cache Freshness

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 13 - Fetch Recent Job Listings

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 14 - Rank Job Listings

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 15 - Build Extraction Request

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 16 - Post to LLM API

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.4

Block 17 - Analyze Extracted Skills

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 18 - Generate Radar View

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 19 - Provide HTML Response

Type / Role
n8n-nodes-base.respondToWebhook - respondToWebhook
Config choices
Version 1.5

Block 20 - Set Job Search Criteria

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 21 - Record Your Skills Data

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

3. Summary Table

Workflow Visualize job-market skill gaps from Himalayas jobs with NVIDIA NIM
Complexity advanced
Nodes 21
Categories Market Research, AI Summarization
Author Janos Gyorgy
Published 18 Jun 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/16479/16479.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Visualize job-market skill gaps from Himalayas jobs with NVIDIA NIM do?

Quick overview Turn a job search into a measured system. This workflow scrapes live job posts, uses an LLM to extract the skills each one is asking for, compares that demand against the skills you ...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Market Research, AI Summarization use case.