New to Claude Skills? Learn how to install them →

gooseworks-ai on GitHub

Job Posting Intent Detection

Free

Identify qualified leads from job postings.

Get this skill

Free · Opens the source repo

What Job Posting Intent Detection does

Job Posting Intent Detection is a skill designed to help businesses identify companies that are actively hiring for roles related to the problems they solve. By leveraging job postings as indicators of budget allocation and problem acknowledgment, this skill automates the process of finding potential leads. When a company posts a job, it signifies that they are investing resources into addressing a specific challenge, making it an opportune moment for businesses to engage with them.

The skill operates by searching LinkedIn Jobs for specified job titles and locations. It groups the results by company, deduplicates entries, and assesses the signal strength based on the number of relevant postings and their seniority. Additionally, it extracts valuable context from job descriptions, including the tech stack and potential pain points, which can be crucial for tailoring outreach efforts. The results are then exported to a Google Sheet, providing a structured overview of the qualified leads along with suggested decision-maker titles and outreach angles.

This skill is particularly useful for sales and marketing professionals looking to generate leads based on hiring trends. By using this tool, users can efficiently identify companies that are likely to be interested in their products or services, thus optimizing their lead generation efforts. The integration with Google Sheets allows for easy tracking and management of potential leads, making it a practical addition to any outreach strategy.

Overall, Job Posting Intent Detection streamlines the process of lead qualification by providing actionable insights derived from job postings, helping users focus their outreach on companies that are already signaling a need for solutions in their domain.

When to use it

Use this skill when you want to identify potential leads based on current job postings relevant to your offerings.

When not to use it

This skill is not suitable for direct outreach; it only provides qualified leads without facilitating communication with them.

What you can build with it

Generating Sales Leads

Use this skill to find companies hiring for roles that align with your product, indicating a potential need.

Market Research

Identify trends in hiring within your industry to inform product development and marketing strategies.

Personalized Outreach Preparation

Gather insights from job postings to tailor your outreach messages based on specific company needs.

How to install Job Posting Intent Detection

View source

1. Install with the skills CLI

npx skills add gooseworks-ai/goose-skills/job-posting-intent --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by gooseworks-ai

Job Posting Intent Detection

Find companies that are hiring for roles related to the problem you solve. A job posting is a budget signal — the company has allocated money to solve a problem your product addresses.

Results are automatically exported to a Google Sheet with signal strength, decision-maker suggestions, outreach angles, and personalization context.

Why This Works

When a company posts a job, they've:

  • Allocated budget (headcount is expensive)
  • Acknowledged the problem exists
  • Started actively solving it

If your product helps solve that problem faster, cheaper, or better than a hire alone, the timing is perfect.

Cost

Apify Actor: harvestapi/linkedin-job-search (pay-per-event)

ComponentCost
Actor start (per run)$0.001
Per job result$0.001
Apify platform fee+20%

Typical run costs:

ScenarioTitlesJobs/titleRunsEst. Cost
Quick scan3253~$0.09
Standard5255~$0.16
Deep search51005~$0.60
Multi-location5×32515~$0.47

Google Sheet creation is free (uses Rube/Composio integration).

Always run --estimate-only first to see the Apify cost before executing.

Track usage: https://console.apify.com/billing

Setup

1. Apify API Token

# Get your token at https://console.apify.com/account/integrations
export APIFY_API_TOKEN="apify_api_YOUR_TOKEN_HERE"

2. Install dependencies

pip3 install requests

3. Rube/Composio (for Google Sheets)

Google Sheet creation uses Rube MCP with Composio. The token is preconfigured. If it stops working, update the RUBE_TOKEN env var or the default in search_jobs.py.

Usage

Step 1: Define your ICP and target titles

Think about it this way: "If a company is hiring for [role], it means they're investing in [problem area you solve]."

Examples:

  • GTM agency: "Growth Marketing Manager", "SDR Manager", "RevOps Engineer", "GTM Engineer"
  • AI dev tools: "AI Engineer", "ML Ops Engineer", "Prompt Engineer", "LLM Engineer"
  • Sales automation: "SDR", "BDR Manager", "Sales Ops", "Revenue Operations"

Step 2: Estimate cost

python3 scripts/search_jobs.py \
  --titles "GTM Engineer,SDR Manager,Head of Demand Gen" \
  --locations "United States" \
  --max-per-title 25 \
  --estimate-only

Step 3: Run the search

The script searches LinkedIn Jobs, groups results by company, qualifies leads, and creates a Google Sheet automatically.

# Standard search (creates Google Sheet)
python3 scripts/search_jobs.py \
  --titles "GTM Engineer,SDR Manager,RevOps Engineer" \
  --locations "United States" \
  --max-per-title 25

# Deep search with custom sheet name
python3 scripts/search_jobs.py \
  --titles "AI Engineer,ML Ops Engineer,Prompt Engineer" \
  --locations "United States" \
  --max-per-title 50 \
  --sheet-name "AI Hiring Signals - Feb 2026"

# Filter results to only relevant titles (LinkedIn search is fuzzy)
python3 scripts/search_jobs.py \
  --titles "GTM Engineer,Growth Marketing Manager,SDR Manager" \
  --locations "United States" \
  --relevance-keywords "gtm,growth,sdr,marketing,demand gen,revops"

# Also save raw JSON alongside the sheet
python3 scripts/search_jobs.py \
  --titles "GTM Engineer,SDR Manager" \
  --locations "United States" \
  --output results.json

# Skip Google Sheet, console + JSON only
python3 scripts/search_jobs.py \
  --titles "GTM Engineer" \
  --no-sheet --json

What the Script Does

  1. Searches LinkedIn Jobs for each title/location combination via Apify
  2. Groups results by company (deduplicates)
  3. Computes signal strength based on number of relevant postings + seniority
  4. Extracts personalization context from job descriptions (tech stack, growth signals, pain points)
  5. Suggests decision-maker title (one level above the hired role)
  6. Suggests outreach angle (accelerate / replace / multiply the hire)
  7. Creates a Google Sheet with all qualified leads
  8. Prints a console summary of all companies found

Options Reference

Required:
  --titles              Comma-separated job titles to search

Optional:
  --locations           Comma-separated locations (default: no filter)
  --max-per-title       Max jobs per title per location (default: 25)
  --posted-limit        Recency: 1h, 24h, week, month (default: week)
  --output, -o          Also save raw JSON to this file path
  --json                Print JSON output to console
  --estimate-only       Show cost estimate without running
  --no-sheet            Skip Google Sheet creation
  --sheet-name          Custom Google Sheet title (default: "Job Posting Intent Signals - {date}")
  --relevance-keywords  Comma-separated keywords to filter truly relevant postings

Google Sheet Columns

ColumnDescription
SignalHIGH / MEDIUM / LOW based on # postings + seniority
CompanyCompany name
EmployeesEmployee count
IndustryCompany industry
WebsiteCompany website
LinkedInCompany LinkedIn URL
# PostingsNumber of relevant job postings found
Job TitlesThe actual job titles posted
Job URLLink to the primary job posting
LocationJob location(s)
Decision MakerSuggested title of person to contact
Outreach AngleAccelerate / Replace / Multiply the hire
Tech StackTechnologies mentioned in job descriptions
Growth SignalsGrowth indicators (first hire, scaling, series stage)
Pain PointsPain indicators (automate, optimize, manual processes)
DescriptionCompany description snippet

AI Agent Integration

When using this skill as an agent, the typical flow is:

  1. User describes their product and the types of roles that signal intent
  2. Agent runs --estimate-only and confirms cost with user
  3. Agent runs the search (Google Sheet is created automatically)
  4. Agent shares the Google Sheet link with the user
  5. Agent provides a brief summary of top leads and why they're qualified

Example prompt:

"Find companies hiring growth marketers and SDRs in the US this week. These are signals they need GTM help. We sell AI-powered GTM systems to Series A-C B2B SaaS companies with 20-200 employees."

The agent should NOT:

  • Do any outreach
  • Send any emails or messages
  • Contact anyone

The agent SHOULD:

  • Present cost estimate before running
  • Run the search (sheet is created automatically)
  • Share the Google Sheet link
  • Provide a brief summary of the top leads with reasoning

Outreach Angle Templates

The script auto-assigns an angle based on job posting context:

"Accelerate while you hire" — Best when: posting is recent, role is junior/mid

They're looking for someone to do X. Your product can deliver X outcomes while they ramp the hire.

"Replace the hire" — Best when: small company, "first hire" signals, building from scratch

They want the output of a [role] but may not need a full-time person if they use your product.

"Multiply the hire" — Best when: company is clearly scaling, multiple related roles

When their new hire starts, your product makes them 10x more effective from day one.

Troubleshooting

"No jobs found"

  • Try broader titles (e.g., "marketing" instead of "demand generation specialist")
  • Extend the time window: --posted-limit month
  • Remove location filter to search globally

"Too many irrelevant results"

  • Use --relevance-keywords to filter by title keywords
  • LinkedIn's search is fuzzy — the grouping and qualification step helps filter

"Google Sheet creation failed"

  • Check that Rube MCP is accessible (the token may have expired)
  • Use --no-sheet --json --output results.json to save results without a sheet
  • You can create the sheet later with scripts/create_sheet_mcp.py

High cost estimate

  • Reduce --max-per-title (25 is usually enough)
  • Search fewer titles
  • Use --posted-limit 24h for a quick daily scan

Links

Frequently asked questions about Job Posting Intent Detection

Similar skills