molly-sourcing

molly-sourcing is a skill for Claude Code, Codex from warpdotdev/recruiting-sourcing-agent-oss. It costs 44 tokens per session (4,967 once invoked), scanned A, original, MIT.

An automated recruiting workflow for sourcing candidates for approved job roles. It uses recruiter feedback from earlier candidates, searches for fresh LinkedIn candidates, adds them to GEM, and sends a daily summary.

In plain words
What is it for?
Use it for daily candidate sourcing, updating the role profile from feedback, submitting candidates to GEM, and notifying the recruiting team.
Why use it?
It carries forward the team's candidate preferences and avoids adding the same LinkedIn candidate twice when sourcing runs again.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit Use it for daily candidate sourcing, updating the role profile from feedback, submitting candidates to GEM, and notifying the recruiting team.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/warpdotdev/recruiting-sourcing-agent-oss/molly-sourcing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add warpdotdev/recruiting-sourcing-agent-oss --skill molly-sourcing
Clone the repo
git clone --depth 1 https://github.com/warpdotdev/recruiting-sourcing-agent-oss

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for molly-sourcing

README.md
[![agentmods](https://agentmods.dev/badge/skills/warpdotdev/recruiting-sourcing-agent-oss/molly-sourcing/github.svg)](https://agentmods.dev/skills/warpdotdev/recruiting-sourcing-agent-oss/molly-sourcing)
Your own site
<a href="https://agentmods.dev/skills/warpdotdev/recruiting-sourcing-agent-oss/molly-sourcing"><img src="https://agentmods.dev/badge/skills/warpdotdev/recruiting-sourcing-agent-oss/molly-sourcing/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for molly-sourcing

Your own site · 80×15
<a href="https://agentmods.dev/skills/warpdotdev/recruiting-sourcing-agent-oss/molly-sourcing"><img src="https://agentmods.dev/badge/skills/warpdotdev/recruiting-sourcing-agent-oss/molly-sourcing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,967 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00044 $0.04967
Opus 5 $0.00022 $0.02483
Sonnet 5 $0.00009 $0.00993
Haiku 4.5 $0.00004 $0.00497

Measured 10d ago against content hash 08ae16647e1c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

molly-sourcing scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X POST "https://api.notion.com/v1/databases/$MOLLY_TRACKER_DB_ID/query" \
.warp/skills/molly-sourcing/SKILL.md · 217 lines

How it starts

The opening of the file, as written. The whole thing — 217 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Sourcing

Triggered by the daily scheduled (cron) run once a role reaches Sourcing status (or when a recruiter asks Molly to run sourcing). For every role in Sourcing, Molly first folds in the talent team's feedback from the previous cycle — left as notes on yesterday's GEM candidates — updates the Profile Spec accordingly, then sources fresh LinkedIn candidates via Exa (MOLLY_DAILY_SOURCING_TARGET, default 25), submits each into that role's GEM project, and posts one daily digest to the sourcing channel.

The notes feedback loop is what makes sourcing sharpen day over day — it's the lightweight, ongoing analog of calibration. The team drops quick notes on the candidates they liked or didn't (right in GEM, where they're already reviewing), and the next run honors that signal. The digest closes the loop by reminding the team to leave feedback within the feedback window (MOLLY_FEEDBACK_WINDOW_HOURS, default 24h), before the next run.

GEM dedupes on LinkedIn handle, so re-running daily is safe — candidates already in GEM are matched, not duplicated.

Inputs

  • Env: MOLLY_NOTION_API_KEY, MOLLY_EXA_API_KEY, MOLLY_GEM_API_KEY, MOLLY_SLACK_BOT_TOKEN, SOURCING_SLACK_CHANNEL_ID, MOLLY_TRACKER_DB_ID
  • Molly Tracker database: $MOLLY_TRACKER_DB_ID
  • Each Sourcing role row must have a GEM Project ID (the GEM project candidates are filed into). Skip and flag any role missing it.

Steps

1. Find roles in Sourcing

Query the Molly Tracker, filtering on the Molly Status status property:

curl -s -X POST "https://api.notion.com/v1/databases/$MOLLY_TRACKER_DB_ID/query" \
  -H "Authorization: Bearer $MOLLY_NOTION_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Notion-Version: 2022-06-28" \
  -d '{"filter": {"property": "Molly Status", "status": {"equals": "Sourcing"}}}'

For each returned row, read: Role name (title), JD Link (url), Profile Spec Link (url), GEM Project ID (rich text). The JD/Spec page IDs are the last 32 hex characters of each URL.

Read the full file on GitHub · 217 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 217 lines · 44 tokens per session scan A 08ae16647e1c

Subscribe to this mod's changes

molly-sourcing is a skill published in the GitHub repository warpdotdev/recruiting-sourcing-agent-oss (2 stars, last pushed 1mo ago), licensed MIT. It adds 44 tokens to every session and 4,967 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.