setup

setup is a skill for Claude Code, Codex from warpdotdev/recruiting-sourcing-agent-oss. It costs 76 tokens per session (2,423 once invoked), scanned A, original, MIT.

An interactive setup skill for Molly, a recruiting agent that sources candidates and tracks them using services such as Notion, Slack, Exa, and GEM.

In plain words
What is it for?
Use it to clone or inspect the repository, configure environment variables, create the Notion tracker when approved, verify integrations, and connect daily sourcing.
Why use it?
It checks each setup step and existing state, so deployment can be verified and safely repeated without exposing credentials.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/warpdotdev/recruiting-sourcing-agent-oss/setup
Any agent
npx skills add warpdotdev/recruiting-sourcing-agent-oss --skill setup
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 setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/warpdotdev/recruiting-sourcing-agent-oss/setup.svg)](https://agentmods.dev/skills/warpdotdev/recruiting-sourcing-agent-oss/setup)
Your own site
<a href="https://agentmods.dev/skills/warpdotdev/recruiting-sourcing-agent-oss/setup"><img src="https://agentmods.dev/badge/skills/warpdotdev/recruiting-sourcing-agent-oss/setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,423 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00076 $0.02423
Opus 5 $0.00038 $0.01211
Sonnet 5 $0.00015 $0.00485
Haiku 4.5 $0.00008 $0.00242

Measured 3d ago against content hash 194cd958edaa, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

setup 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 3d 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.

- **Never ask the user to paste secrets into chat, and never print secret values** (no `echo $MOLLY_...`, no logging curl requests with resolved tokens). The user puts secrets into `.env` themselves; you only reference t
.warp/skills/setup/SKILL.md · 178 lines

How it starts

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

Molly setup

Interactive setup that takes a user from nothing to a running Molly deployment. It is idempotent: every step checks current state first, so it's safe to re-run and safe to start from a repo that's already cloned. Work through the steps in order and confirm each verification passes before moving on.

Ground rules:

  • Never ask the user to paste secrets into chat, and never print secret values (no echo $MOLLY_..., no logging curl requests with resolved tokens). The user puts secrets into .env themselves; you only reference them as $VARS.
  • All verification calls below are read-only. The only writes are labeled: creating the tracker database (step 4), the optional Slack test message (step 5), and deployment wiring (step 6). Ask before each write.

1. Get the repo

Check whether you're already inside a clone — the repo root contains AGENTS.md and .warp/skills/molly-sourcing/SKILL.md:

git rev-parse --show-toplevel 2>/dev/null
  • If the git root has both marker files, cd to that root and skip cloning.
  • If a ./molly-agent directory already exists with those markers, cd molly-agent instead of recloning.
  • Otherwise clone and enter it:
git clone https://github.com/warpdotdev/molly-agent.git
cd molly-agent

All later steps run from the repo root.

2. Collect configuration in .env

Create the local config from the template if it doesn't exist (.env is gitignored and never committed):

test -f .env || cp .env.example .env

Then ask the user to open .env in their editor and fill it in themselves — walk them through obtaining each value, one service at a time:

  1. Notion — create an internal integration at https://www.notion.so/my-integrations and copy its token → MOLLY_NOTION_API_KEY. Create (or pick) a parent page for Molly's Profile Spec pages, share it with the integration (page → → Connections), and copy the 32-hex ID from the page URL → MOLLY_NOTION_PARENT_PAGE_ID.
  2. Slack — create a Slack app with a bot token (scopes: chat:write, app_mentions:read) → MOLLY_SLACK_BOT_TOKEN. Pick a sourcing channel, invite the bot, copy the channel ID (channel details → About) → SOURCING_SLACK_CHANNEL_ID.
  3. Exa — create an API key at https://exa.aiMOLLY_EXA_API_KEY.
  4. GEM — create an API key in GEM's admin settings → MOLLY_GEM_API_KEY.
  5. Tracker — leave MOLLY_TRACKER_DB_ID as the placeholder if the user wants step 4 to create the database for them; otherwise paste an existing database ID.

Read the full file on GitHub · 178 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. 3d ago First seen · 178 lines · 76 tokens per session scan A 194cd958edaa

Subscribe to this mod's changes

setup is a skill published in the GitHub repository warpdotdev/recruiting-sourcing-agent-oss (2 stars, last pushed 1mo ago), licensed MIT. It adds 76 tokens to every session and 2,423 once invoked, about $0.0004 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.