Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

hiring-signal-outreach招聘信号外展

Agent Skill

hiring-signal-outreach 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

198

周安装

8

GitHub Stars

630

下载量

62
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hiring-signal-outreach(招聘信号外展)
来源仓库:https://github.com/gooseworks-ai/goose-skills
仓库路径:skills/hiring-signal-outreach
安装命令:
npx skills add https://github.com/gooseworks-ai/goose-skills --skill hiring-signal-outreach
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/gooseworks-ai/goose-skills --skill hiring-signal-outreach

简介

hiring-signal-outreach 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于研究、数据整理或信息溯源等场景,可辅助 Agent 从多个来源中筛选出相关线索。
  • 通过关键词、任务场景或来源仓库进行检索,返回结构化结果供进一步分析。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Hiring Signal Outreach

Detects job postings at target companies where the role being hired for is one your product augments, replaces, or directly supports. Finds the right people to contact (not just the person being hired — the hiring manager, budget holder, and potential champions), then drafts personalized outreach using the job posting as the hook.

Why hiring signals work: When a company posts a job, they've already acknowledged the problem your product solves. They've budgeted for it (headcount is budget). They're actively evaluating how to solve it. Your email arrives at exactly the moment they're thinking about this problem — and you're offering a faster, cheaper, or complementary solution.

When to Auto-Load

Load this composite when:

  • User says "check if any of these companies are hiring for roles we replace", "job posting signals", "hiring signal outreach"
  • User has a list of companies and wants to find those hiring for relevant roles
  • An upstream workflow (TAM Pulse, company monitoring) triggers a hiring signal check

Step 0: Configuration (One-Time Setup)

On first run for a client/user, collect and store these preferences. Skip on subsequent runs.

Role Mapping (Critical — This Defines What Signals Matter)

QuestionPurposeStored As
What does your product do? (1-2 sentences)Match against job descriptionscompany_description
What job roles does your product replace?Strongest signal — they're hiring for what you automateroles_replaced
What job roles does your product augment?Good signal — your product makes this person more effectiveroles_augmented
What job roles buy your product?Contact finding — who holds the budgetbuyer_titles
What job roles champion your product?Contact finding — who feels the pain dailychampion_titles
What job roles use your product?Contact finding — who would operate ituser_titles
What keywords in a job description indicate relevance?Filters out false positivesjd_keywords

Example for an AI calling product:

roles_replaced: ["BDC Representative", "Call Center Agent", "Appointment Setter"]
roles_augmented: ["Sales Manager", "BDC Manager", "Service Advisor"]
buyer_titles: ["VP Sales", "Director of Operations", "General Manager", "COO"]
champion_titles: ["BDC Manager", "Sales Manager", "Fixed Ops Director"]
user_titles: ["BDC Rep", "Service Advisor", "Sales Consultant"]
jd_keywords: ["inbound calls", "outbound calls", "appointment setting", "customer follow-up"]

Signal Detection Config

QuestionOptionsStored As
How should we find job postings?LinkedIn Jobs / Indeed / Apollo / Google Jobs / Web searchjob_search_tool
How far back should we look?7 / 14 / 30 dayslookback_days

Contact Finding Config

QuestionOptionsStored As
How should we find contacts at these companies?Apollo / LinkedIn / Clearbit / Web searchcontact_tool

Outreach Config

QuestionOptionsStored As
Where do you want outreach sent?Smartlead / Instantly / Outreach.io / Lemlist / CSV exportoutreach_tool
Email or multi-channel?Email only / Email + LinkedInoutreach_channels

Your Company Context

QuestionPurposeStored As
What problem do you solve?Email hookpain_point
Name 2-3 proof points (customers, metrics, results)Email credibilityproof_points
What's the cost comparison vs. a full-time hire?ROI angle for outreachcost_comparison
How fast can you deploy vs. a new hire?Speed angledeployment_speed

Store config in: clients/<client-name>/config/signal-outreach.json or equivalent.


Step 1: Detect Hiring Signals

Purpose: For each company in the input list, find active job postings that match roles your product replaces or augments.

Input Contract

companies: [
  {
    name: string          # Required
    domain: string        # Required
    industry?: string     # Optional
    size?: string         # Optional
  }
]
roles_replaced: string[]          # From config
roles_augmented: string[]         # From config
jd_keywords: string[]             # From config
lookback_days: integer             # From config (default: 14)

Process

For each company (or in batches):

  1. Search for job postings using the configured job_search_tool:

- LinkedIn Jobs: Search company_name + role_title for each role in roles_replaced and roles_augmented - Indeed: Same search pattern - Apollo: Company enrichment → job postings - Google Jobs: site:linkedin.com/jobs OR site:indeed.com "{company}" "{role}" - Web search: "{company_name}" AND ("hiring" OR "job" OR "careers") AND ("{role_1}" OR "{role_2}")

  1. For each job posting found, extract:

- Job title - Location (remote/onsite/hybrid) - Posted date - Job description summary (key responsibilities) - Source URL

  1. Classify each posting:

- Replaces: The job title matches roles_replaced. Your product could eliminate or reduce the need for this hire. This is the strongest signal. - Augments: The job title matches roles_augmented. Your product makes this person more effective — they'd want it as a tool. Good signal. - Keyword match: Title doesn't match but the JD contains jd_keywords. Weaker signal — verify relevance.

  1. Filter: Drop companies with no matching job postings. Drop postings older than lookback_days.

Output Contract

companies_hiring: [
  {
    company: {
      name: string
      domain: string
      industry: string
    }
    job_postings: [
      {
        title: string
        location: string
        posted_date: string
        description_summary: string     # 2-3 sentence summary of the role
        source_url: string
        signal_type: "replaces" | "augments" | "keyword_match"
        relevance_reasoning: string     # Why this posting matters for your product
      }
    ]
    posting_count: integer
    strongest_signal: "replaces" | "augments" | "keyword_match"
  }
]

Human Checkpoint

Found hiring signals at X of Y companies:

| Company | Postings | Strongest Signal | Top Role | Posted |
|---------|----------|-----------------|----------|--------|
| Acme Corp | 3 | Replaces | BDC Representative | 3 days ago |
| Beta Inc | 1 | Augments | Sales Manager | 1 week ago |
| ...     | ...      | ...             | ...      | ...    |

Signal breakdown: X "replaces" (strongest), Y "augments", Z "keyword match"

Proceed with qualification? (Y/n)

Step 2: Qualify & Prioritize

Purpose: Rank companies by outreach priority based on signal strength, relevance, and timing. Pure LLM reasoning — inherently tool-agnostic.

Input Contract

companies_hiring: [...]           # From Step 1 output
your_company: {
  description: string
  pain_point: string
  proof_points: string[]
  cost_comparison: string
  deployment_speed: string
}

Process

For each company, evaluate:

CriterionWeightHow to Assess
Signal typeHighest"Replaces" > "Augments" > "Keyword match"
Posting volumeHighMultiple relevant postings = scaling that function = bigger need
RecencyHighPosted <7 days ago = actively evaluating. 14+ days = may have candidates already
Role seniorityMediumHiring a VP of the function you sell into = strategic buy. Hiring an individual contributor = operational buy. Both are good, different approach.
Industry fitMediumIs their industry one where your product has proven results?

Scoring

  • Tier 1 (Act Today): "Replaces" signal + posted within 7 days. They're literally budgeting for what you sell.
  • Tier 2 (Act This Week): "Replaces" signal 7-14 days old, OR "Augments" signal <7 days with multiple postings.
  • Tier 3 (Queue): "Augments" or "keyword match" signals. Worth reaching out but lower urgency.
  • Drop: Keyword match only with weak relevance after reviewing the JD.

For each qualified company, generate:

  • Relevance reasoning: Why this hiring pattern matters for your product
  • Outreach angle: The specific connection between their job posting and your product

- "Replaces" → "Before you fill that role, consider what [product] does instead" - "Augments" → "Your new [role] will need tools like [product] to hit the ground running"

  • Recommended framing: Replace (you don't need to hire for this), Complement (your new hire will be 3x more effective with this), or Scale (you need 5 of these people — or 1 person + our product)

Output Contract

qualified_companies: [
  {
    ...company_hiring_fields,
    priority_tier: "tier_1" | "tier_2" | "tier_3"
    relevance_reasoning: string
    outreach_angle: string
    recommended_framing: "replace" | "complement" | "scale"
  }
]
dropped_companies: [
  { name: string, drop_reason: string }
]

Human Checkpoint

## Qualification Results

### Tier 1 — Act Today (X companies)
| Company | Signal | Top Role | Framing | Angle |
|---------|--------|----------|---------|-------|
| Acme Corp | Replaces | BDC Rep (x3) | Replace | Before you hire 3 BDC reps... |

### Tier 2 — Act This Week (X companies)
| ... |

### Tier 3 — Queue (X companies)
| ... |

### Dropped (X companies)
| Company | Reason |
|---------|--------|
| ...     | ...    |

Approve this list before we find contacts?

Step 3: Find Relevant People

Purpose: For each qualified company, find the right people to contact. Unlike the funding composite, here we also identify who posted the job (the hiring manager) — they're often the best first contact.

Input Contract

qualified_companies: [...]        # From Step 2 output
buyer_titles: string[]            # From config
champion_titles: string[]         # From config
user_titles: string[]             # From config
max_contacts_per_company: integer  # Default: 3-5

Process

For each qualified company, use the configured contact_tool:

  1. First: Identify the hiring manager. The person who posted or owns the job posting is the most relevant contact.

- Check the job posting source for the hiring manager's name - If not listed, search for people at the company with titles one level above the posted role - The hiring manager is often the strongest contact because they own the problem your product solves

  1. Second: Find buyer-level contacts. People with buyer_titles at this company — they control budget.
  2. Third: Find champions. People with champion_titles — they feel the pain daily and can advocate internally.
  3. Classify each contact:

- Hiring manager — Posted the role. Directly owns the problem. Best for "replace" framing. - Buyer — Controls budget. Best for ROI/cost-comparison framing. - Champion — Lives the pain. Best for "complement" or "make your life easier" framing. - User — Would operate the product. Best for bottom-up adoption.

  1. Cap at max_contacts_per_company. Prioritize: hiring manager > buyer > champion > user.

Output Contract

contacts: [
  {
    person: {
      full_name: string
      first_name: string
      last_name: string
      title: string
      email: string | null
      linkedin_url: string | null
      role_type: "hiring_manager" | "buyer" | "champion" | "user"
    }
    company: {
      name: string
      domain: string
      priority_tier: string
      outreach_angle: string
      recommended_framing: string
    }
    job_context: {
      relevant_posting_title: string        # The job posting that triggered this signal
      signal_type: string                    # "replaces" or "augments"
      posting_url: string
      description_summary: string
    }
  }
]

Human Checkpoint

## Contacts Found

### Acme Corp (Tier 1 — Hiring 3x BDC Reps, "Replace" framing)
| Name | Title | Role Type | Email | LinkedIn |
|------|-------|-----------|-------|----------|
| Sarah Chen | VP Sales | Hiring Manager | sarah@acme.com | ... |
| Mike Johnson | COO | Buyer | mike@acme.com | ... |
| Lisa Park | BDC Manager | Champion | lisa@acme.com | ... |

Relevant posting: "BDC Representative" (posted 3 days ago)

### Beta Inc (Tier 2 — Hiring Sales Manager, "Complement" framing)
| ... |

Total: X contacts across Y companies

Approve before we draft emails?

Step 4: Draft Personalized Emails

Purpose: For each contact, draft a personalized email sequence using three layers of personalization: the job posting context, your company's value, and the prospect's company context. Pure LLM reasoning — inherently tool-agnostic.

Input Contract

contacts: [...]                   # From Step 3 output (includes job_context per contact)
your_company: {
  description: string
  pain_point: string
  proof_points: string[]
  cost_comparison: string         # e.g. "4x cheaper than a full-time hire"
  deployment_speed: string        # e.g. "Live in 2 weeks vs. 3-month hiring cycle"
}
sequence_config: {
  touches: integer                # Default: 3
  timing: integer[]               # Default: [1, 5, 12]
  personalization_tier: 1 | 2 | 3
  tone: string
  cta: string
}

Process

  1. Select framework based on framing:

- "Replace" framing → Signal-Proof-Ask (reference the job posting, show what your product does instead, soft ask) - "Complement" framing → BAB (before: your new hire struggles with X / after: with our tool they're 3x faster / bridge: here's how) - "Scale" framing → PAS (problem: you need 5 people for this / agitate: that's $500K/year in salary / solve: or 1 person + our product)

  1. Build three layers of personalization per contact: Layer Source Used In Job posting context Step 1 — the specific role, responsibilities, what the JD says Subject line + hook Your company context Config — what you do, proof points, cost comparison Body — proof + offer Prospect company context Step 2 — industry, what they do, why they're hiring Body — relevance framing
  2. Adapt email angle by role_type: Role Type Email Angle Example Hook Hiring manager "Before you fill that role" "I saw you're hiring a BDC Rep — before you finalize that, worth seeing what [product] does instead." Buyer Cost/ROI comparison "You're budgeting for 3 BDC reps ($180K/year). [Product] handles the same workload for a fraction of that." Champion "This will make your life easier" "When your new BDC rep starts, they'll need tools to be effective from day one. That's what [product] does." User "You'll want this on your desk" "If you're scaling the BDC function at [company], [product] handles [task] so you can focus on [higher-value work]."
  3. Follow email-drafting skill rules:

- Touch 1: 50-90 words. Hook with job posting signal. - Touch 2: 30-50 words. Different proof point or cost/speed comparison. - Touch 3: 20-40 words. Social proof or breakup. - All hard rules apply.

Output Contract

email_sequences: [
  {
    contact: { full_name, email, title, role_type, company_name }
    job_context: { posting_title, signal_type }
    sequence: [
      {
        touch_number: integer
        send_day: integer
        subject: string
        body: string
        framework: string
        personalization_layers: {
          job_posting: string      # What from the JD was referenced
          company_context: string  # What proof/value was used
          prospect_context: string # What about their company was referenced
        }
        word_count: integer
      }
    ]
  }
]

Human Checkpoint

Present 3-5 sample sequences showing each role_type and framing:

## Sample Emails for Review

### Hiring Manager: Sarah Chen, VP Sales @ Acme Corp
Signal: Hiring 3x BDC Representatives | Framing: Replace

**Touch 1 — Day 1**
Subject: Before you fill those BDC roles
> Hi Sarah — I noticed Acme is hiring three BDC reps. Before you go through
> a 3-month hiring cycle, worth seeing what companies like [peer] are doing
> instead...
> [full email]

### Buyer: Mike Johnson, COO @ Acme Corp
Signal: Same | Framing: ROI

**Touch 1 — Day 1**
Subject: $180K/year in BDC hires — or this
> Hi Mike — Acme's hiring 3 BDC reps. At ~$60K each fully loaded, that's
> $180K/year. [Product] handles the same call volume for...
> [full email]

---

Approve these samples? I'll generate the rest in the same style.

Step 5: Handoff to Outreach

Identical to funding-signal-outreach Step 5. Package contacts + email sequences for the configured outreach tool. See that composite for the full handoff process.

Output Contract

campaign_package: {
  tool: string
  file_path: string
  contact_count: integer
  sequence_touches: integer
  estimated_send_days: integer
  next_action: string
}

Human Checkpoint

## Campaign Ready

Tool: [configured tool]
Signal type: Hiring signal
Contacts: X people across Y companies
Sequence: 3 touches over 12 days

Ready to launch?

Execution Summary

StepTool DependencyHuman CheckpointTypical Time
0. ConfigNoneFirst run only5 min (once)
1. DetectConfigurable (LinkedIn Jobs, Indeed, web search)Review companies with postings2-5 min
2. QualifyNone (LLM reasoning)Approve tier rankings2-3 min
3. Find PeopleConfigurable (Apollo, LinkedIn, etc.)Approve contact list2-3 min
4. Draft EmailsNone (LLM reasoning)Review samples, iterate5-10 min
5. HandoffConfigurable (Smartlead, CSV, etc.)Final launch approval1 min

Total human review time: ~15-20 minutes


Tips

  • "Replaces" signals are gold. If they're hiring for what your product does, you have the strongest possible outreach angle. Prioritize these.
  • Time the outreach to the posting age. Day 1-7: "Before you start interviewing." Day 7-14: "While you're evaluating candidates." Day 14+: "Before you extend an offer."
  • Don't say "you don't need to hire." Instead frame it as "your team gets this capability faster" or "complement your new hire with this." Less threatening to the hiring manager who already committed to the req.
  • Multiple postings for the same role = scaling signal. If they're hiring 3x BDC reps, the pain is 3x bigger and the cost comparison is 3x more compelling.
  • The hiring manager is your best first contact because they own the problem. But cc'ing or separately reaching the buyer (their boss) with an ROI angle creates a pincer effect.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.67%
按下载量换算25

Claude

27.6%
按下载量换算17

Cursor

18.68%
按下载量换算12

Gemini CLI

10.47%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills